Week 24 of 2025

Development log of Esc Collective website

23 items
  1. Update the readme
  2. Link to git-rebase from the readme
  3. Added solutions Proton Mail and Tuta Mail, and finalized solution Mailfence
  4. Implement single feature pages
  5. Use a component (aka macro) for features bullets
  6. DRY on the solution card component
  7. add microsoft 365 mail as an email provider
  8. Add solution Transip Email
  9. Do not push alternatives to supported solutions
  10. Do not print a heading when no alternatives
  11. Add OpenMoji icos, a stylesheet and a script to generate it
  12. Use icons for features
  13. Implement the /features/ index page
  14. Write a few feature descriptions with some icons
  15. Improve the features index page
  16. Make feature cards links to feature pages
  17. Make solution cards links
  18. Add solution gmail
  19. Display list of features on every solution's page
  20. Extended description for some features.
  21. Update existing and added new features. Realigned features in the email category.
  22. Added feature just-email, realigned some of the other features and added icons.
  23. Added solutions Odoo Community and Odoo

Update the readme

On by Tad Lispy

Separate development setup (simpler) from publishing (more complex).

Describe git rebase operation.

Describe the publish script.

Describe branch previews.

index 25a36fd..dc2028e 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,42 @@
-This repository contains sources to build escco.eu website: content, templates, assets. Use Zola to generate a website from it and push it to 
+This repository is one of the two involved in escco.eu website. It contains sources to build escco.eu website: content, templates, assets. Use Zola to generate a website from it and push the generated files (from the `public/` directory) to https://codeberg.org/escco/pages/.
=
=
=# Development
=
-Start by cloning this repository. Then from within clone the pages  using the following command:
+To install and keep track of all dependencies automatically you need [Nix package manager](https://nixos.org/) and [direnv](https://direnv.net/).
+
+Start by cloning this repository.
+
+You should be able to run `zola serve` and get a working website at <http//localhost:1111/>.
+
+Changing content should be automatically reflected in the website (hot reloading).
+  
+# Collaboration
+
+If you are working on a feature, create a branch. For example:
+
+``` shell
+git switch --create awesome-services-list
+```
+
+If you are a member of the collective, share your work with the rest of us (see publishing) and discuss it in the Club. You don't need to create a PR. If you are an outside contributor, please create a pull request.
+
+It's advised to work together with another person (peer programming). If both of you are contributting to the same branch, you may run into conflicts. We deal with them by using a git feature called "rebasing". The easiest way is to invoke the following command:
+
+``` shell
+git pull --rebase
+```
+
+This command will fetch the latest contributions from your colleagues and if needed rewrite your local contributions as if they were written after. Do it every time you start working after a break (e.g. in the morning). This way your local repository will only contain changes additional to what others did (a linear, non-diverging histories). Follow it with `git push` and your version will be on top. Occasionally you may need to manually resolve conflicting changes. It's not difficult, but if you are new to this kind of thing, as a colleague to walk you through it.
+
+  
+# Publishing
+
+Pushing your contributions to this repository will not automatically update the website (not yet, eventually we will setup a continuous delivery system for that). For now, you need to take some manual steps to deploy a new version.
+
+## Setup
+
+Within _this_ repository clone the _other_ one (pages)  using the following command:
=
=``` shell
=git --work-tree public clone ssh://git@codeberg.org/escco/pages.git pages.git
@@ -15,39 +48,40 @@ This should create two sub-directories:
=  - `pages.git` containing git history and configuration
=  
=
-> Why? Because Zola will wipe out everything in public/, including .git/ if it were there. So we need to keep git directory outside of public.
+> Why not clone directly to the `public/` directory? Because Zola will wipe out everything in `public/`, including `.git/` if it were there. So we need to keep `.git/` directory outside of `public/`.
=
=This is the directory structure you should have now:
=
=``` shellsession
=escco.eu/
-  ./config.toml
+  ./config.toml  <-- global configuration of the website
=  ./content      <-- markdown files
-  ./flake.lock
-  ./flake.nix
+  ./flake.lock   <-- pins down versions of dependencies (like Zola; do not edit by hand)
+  ./flake.nix    <-- declaration of development environment
=  ./pages.git    <-- git history of public
=  ./public       <-- generated web content to be published
-  ./README.md
+  ./README.md    <-- this document
=  ./sass         <-- stylesheets
-  ./static
+  ./static       <-- content like images, scripts, 3rd party CSS or JS
=  ./templates    <-- reusable html templates
=```
=
-`
+## The publish script
=
-Use `zola serve` command to preview the website on your local machine.
+There is a script called `./publish.nu` that automates the publishing process. Once you are happy with your changes, call in like that:
=
-Use `zola build` to write production ready files to `public/`.
+``` shell
+nu publish.nu
+```
=
-Change directory to `pages.git/`, commit and push to publish the website.
+It should:
+
+  1. Make sure you don't have any uncommitted changes
+  2. Build the site with production optimizations
+  3. Present you with a list of changes (commits since last time site was published)
+  4. Publish the site to the branch preview matching your branch (see below)
+  
=
-Inside `pages.git` you can use branches and other features of Git. Just remember that `pages.git/` and `public/` are a separate repository from this one. If it feels too complicated, talk to Tad - he will explain or try find a way to make it simpler.
+## Branch preview
=
-> NOTE: The `zola serve` command, when stopped, will remove `public/`. If you are getting weird errors from git, like
-> 
-> ``` shellsession
-> $ git status
-> fatal: this operation must be run in a work tree
-> ```
-> 
-> inside pages repository, check if it exists. If not, just run `zola build` again to re-create it.
+If you are publishing the `main` branch, the changes will be applied to the website at <https://escco.eu/>. Other branches will be published at `https://escco.eu/@branch` where `branch` is the name of your branch. This allows us to experiment with different ideas and present them to the collective for discussion. Don't be affraid to take initiative and show us what you have in mind. It's often more efficient than having long discussions about ideas, that might not be feasible. The only risk is that your work will not be approved, but most likely it will lead to some learning.

On by Tad Lispy

index dc2028e..2f24b63 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ git switch --create awesome-services-list
=
=If you are a member of the collective, share your work with the rest of us (see publishing) and discuss it in the Club. You don't need to create a PR. If you are an outside contributor, please create a pull request.
=
-It's advised to work together with another person (peer programming). If both of you are contributting to the same branch, you may run into conflicts. We deal with them by using a git feature called "rebasing". The easiest way is to invoke the following command:
+It's advised to work together with another person (peer programming). If both of you are contributting to the same branch, you may run into conflicts. We deal with them by using [a git feature called "rebasing"](https://git-scm.com/docs/git-rebase). The easiest way is to invoke the following command:
=
=``` shell
=git pull --rebase

Added solutions Proton Mail and Tuta Mail, and finalized solution Mailfence

On by jnuytten

index ca766b4..4598b8d 100644
--- a/content/solutions/mailfence/index.md
+++ b/content/solutions/mailfence/index.md
@@ -5,18 +5,23 @@ taxonomies:
=  solution_providers: [ "ContactOffice Group sa" ]
=  solution_categories: [ "email provider" ]
=  features: 
-    - "rich text formatting"
-    - "scripting"
-    - "libre"
-    - "local"
-  esc_support: [ "training", "consulting", "integration" ]
+    - "open standards: imap, smtp"
+    - "encryption with OpenPGP"
+    - "calendar"
+    - "free plan"
+  esc_support: [ "consulting", "integration" ]
=---
=
-Mailfence is a solution for email, including calendar
+Mailfence is a secure and private email solution providing calendar, chat, documents and advanced user management.
=
=<!-- more -->
=
-Esc Collective offers commercial support for business switching to Mailfence in form of consulting, training and integration. We can help set up the Mailfence environment, take care of DNS settings including DKIM and DMARC, and help migrate existing email from your current provider.
-We believe Mailfence is a viable solution because it -- customer base, age, mature product 
+Esc Collective offers commercial support for business switching to Mailfence in form of consulting and integration. We can help set up the Mailfence environment, take care of DNS settings including DKIM and DMARC, and help migrate existing email from your current provider. But maybe most important of all, Esc Collective can help you find the email provider which meets your functional and business requirements.
+
+What makes Mailfence great is that it supports open standards for email synchronisation such as IMAP and SMTP which gives you the freedom to choose your own email client (e.g. Thunderbird). Nevertheless Mailfence does have a great browser app as well as apps for Android and iOS.
+
+Based in Belgium they are fully compliant with GDPR, and the focus of Mailfence has always been on privacy and security. There is no tracking, and even their browser client fully supports email encryption, digital signatures with OpenPGP.
+
+Functionalities include everything a small and medium sized business needs including user management, shared mailboxes, group calendars and so on. However, they have a free plan and Mailfence would still be great for small teams, families and individual users.
=
=Home page: <https://mailfence.com/>
new file mode 100644
index 0000000..1f7844e
--- /dev/null
+++ b/content/solutions/proton-mail/index.md
@@ -0,0 +1,28 @@
+---
+title: Proton Mail
+  
+taxonomies:
+  solution_providers: [ "Proton AG" ]
+  solution_categories: [ "email provider" ]
+  features: 
+    - "encryption"
+    - "calendar"
+    - "free plan"
+  esc_support: [ "consulting", "integration" ]
+---
+
+Proton Mail is an email solution focused on privacy and freedom. Their email solution includes calendar, and Proton also has solutions for documents, VPN and password management.
+
+<!-- more -->
+
+Esc Collective offers commercial support for business switching to Proton Mail in form of consulting and integration. We can help set up the Proton Mail environment, take care of DNS settings including DKIM and DMARC, and help migrate existing email from your current provider. But maybe most important of all, Esc Collective can help you find the email provider which meets your functional and business requirements.
+
+Based in Switzerland Proton Mail is governed by strict privacy regulations. They have a history of contesting court orders to disclose user information, and share information about this on [their website](https://proton.me/legal/transparency). Note that under Swiss law Proton can outright reject any such requests from foreign authorities, and more recently stated clearly that pending changes to Swiss law [will make them leave the country](https://www.tomsguide.com/computing/vpns/proton-vpn-boss-compares-switzerland-to-russia-and-claims-it-could-leave-the-country-over-proposed-law).
+
+What makes Proton Mail great is the company's focus on privacy and freedom. Their email service is developed to use encryption by default. Zero knowledge cloud storage ensures that even if Proton is ever obliged to disclose user data this is only limited to metadata.
+
+Proton requires the installation of their Mail Bridge to allow synchronization with other mail clients on a computer, this is not supported on mobile devices. Most users will therefore choose to use the browser app or the Proton email clients, which are available on Android, iOS, MS Windows and macOS. There is a Proton Mail client for Linux but it is still in beta.
+
+Proton Mail will work for most businesses. Having to rely on the Mail Bridge when not using Proton's email clients is a drawback, and some functionalities are missing such as shared mailboxes. But aside of that it is a great privacy and security focused email provider, with a large customer base and a proven history of reliability.
+
+Home page: <https://proton.me/>
new file mode 100644
index 0000000..4dba12c
--- /dev/null
+++ b/content/solutions/tuta-mail/index.md
@@ -0,0 +1,28 @@
+---
+title: Tuta Mail
+  
+taxonomies:
+  solution_providers: [ "Tutao HmbH" ]
+  solution_categories: [ "email provider" ]
+  features: 
+    - "encryption"
+    - "calendar"
+    - "free plan"
+  esc_support: [ "consulting", "integration" ]
+---
+
+Tuta Mail is an email solution focused on security through quantum-safe encryption. Their service includes a calendar and many business grade functionalities.
+
+<!-- more -->
+
+Esc Collective offers commercial support for business switching to Tuta Mail in form of consulting and integration. We can help set up the Tuta Mail environment, take care of DNS settings including DKIM and DMARC, and help migrate existing email from your current provider. But maybe most important of all, Esc Collective can help you find the email provider which meets your functional and business requirements.
+
+Tuta is based in Germany, and therefore ensures full GDPR compliance for both their private and business customers. They do not support IMAP, POP or other open email retrieval protocols so you cannot use email clients such as Thunderbird or Outlook. Tuta offers their own mail clients in the browser or installed on Android, iOS, Linux, Windows and MacOS.
+
+What makes Tuta Mail great is the company's focus on security through encryption, in a simple to use interface. Their email service is developed to use end-to-end encryption by default (with a limitation, see below). This ensures that even if Tuta is ever obliged to disclose user data this is only limited to metadata.
+
+Tuta goes very far in encrypting data stored on their servers and for emails sent in between mailboxes hosted on Tuta Mail - everything is encrypted except for email addresses and dates. However, because encryption is not performed with an open standard such as OpenPGP, any email traffic outside of the Tuta Mail network is only encrypted when it arrives in the network and not during transfer.
+
+Tuta Mail will work for most businesses. They offer multi-user support, as well as specific functionalities such as shared mailboxes. 
+
+Home page: <https://tuta.com/>

Implement single feature pages

On by Tad Lispy

Now features link to pages at /features/xyz. Those pages contain a list of solutions with a given feature, and optionally custom text. The text comes from special documents at content/solutions/features. Currently there is only one as a sample - free plan. Those feature documents are not rendered (they don't produce pages themselves), and only serve as extra data for the taxonomy pages. This is based on a tip from the Zola forum:

https://zola.discourse.group/t/can-we-add-extra-data-to-taxonomyterm/770/2?u=tad-lispy

In the future I want to use those documents to provide more data, e.g. an icons for each feature.

new file mode 100644
index 0000000..7f2bf71
--- /dev/null
+++ b/content/solutions/features/_index.md
@@ -0,0 +1,8 @@
+---
+title: Features definitions
+page_template: page.html
+render: false
+---
+
+These are features of digital solutions we review.
+
new file mode 100644
index 0000000..834b612
--- /dev/null
+++ b/content/solutions/features/free-plan.md
@@ -0,0 +1,7 @@
+---
+render: false
+---
+
+A free plan means that you can use a service in your business (usually in a limited capability) without any financial obligations.
+
+We only mark services with this feature if the free plan is unlimited in time (so not only a time trial) and actually useful for businesses.
new file mode 100644
index 0000000..b37b27f
--- /dev/null
+++ b/templates/features/single.html
@@ -0,0 +1,53 @@
+{# This is a template for a single feature #}
+
+{% extends "base.html" %}
+
+{% block main_content %}
+
+{% set feature_slug = term.name | slugify %}
+{% set feature_path = "solutions/features/" ~ feature_slug ~ ".md" %}
+{# TODO: Consider if a feature page should be required
+
+    As it is now, they can be skipped. But maybe we want to
+    ensure that every feature is defined? At the very least it
+    would prevent typos.
+#}
+{% set feature_data = load_data (path=feature_path, required=false) %}
+{% if feature_data %}
+  {% set feature_page = get_page(path=feature_path) %}
+  {{ feature_page.content | safe }}
+{% endif %}
+
+<p>Solutions with the <em>{{ term.name }}</em> feature:</p>
+
+{% set categories = get_taxonomy(kind="solution_categories") %}
+{% for category in categories.items %}
+  {% set_global solutions = [] %}
+  {% for solution in category.pages %}
+    {% if solution.taxonomies.features is containing (term.name) %}
+      {% set_global solutions = solutions | concat (with=solution) %}
+    {% endif %}
+  {% endfor %}
+  {% if solutions %}
+    <h2>{{ category.name | title }}</h2>
+    <section class="card-grid">
+      {% for solution in solutions %}
+      {# TODO: Dry with solution.html - a macro? #}
+        <article>
+            <h3>{{ solution.title }}</h3>
+            <p>{{ solution.summary | safe | striptags }}</p>
+            <ul>
+              {% for feature in solution.taxonomies.features %}
+              {% set feature_slug = feature | slugify %}
+              <li>
+                  <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
+              </li>
+              {% endfor %}
+            </ul>
+            <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>
+        </article>
+      {% endfor %}
+    </section>
+  {% endif %}
+{% endfor %}
+{% endblock main_content %}
index c0c552c..6482e75 100644
--- a/templates/solution.html
+++ b/templates/solution.html
@@ -11,7 +11,7 @@ Solution
=
=Do you use {{ page.title }} in your business? We can help you switch to one of the viable alternatives.
=
-
+{# TODO: Do not print the heading if there are no alternatives. Print something else. #}
={% for category in page.taxonomies.solution_categories %}
=  <h2>Alternatives in the {{ category }} category:</h2>
=
@@ -32,7 +32,10 @@ Do you use {{ page.title }} in your business? We can help you switch to one of t
=          <p>{{ alternative.summary | safe | striptags }}</p>
=          <ul>
=              {% for feature in alternative.taxonomies.features %}
-              <li>{{ feature }}</li>
+              {% set feature_slug = feature | slugify %}
+              <li>
+                  <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
+              </li>
=              {% endfor %}
=          </ul>
=          <p style="margin-top: auto"><a href="{{ get_url(path=alternative.path) }}">Learn more</a></p>
index 3994c55..1f6a8c8 100644
--- a/templates/solutions.html
+++ b/templates/solutions.html
@@ -1,7 +1,5 @@
={% extends "base.html" %}
=
-Solution
-
={% block main_content %}
=  {{ section.content | safe }}
=
@@ -16,9 +14,12 @@ Solution
=            <h3>{{ solution.title }}</h3>
=            <p>{{ solution.summary | safe | striptags }}</p>
=            <ul>
-                {% for feature in solution.taxonomies.features %}
-                <li>{{ feature }}</li>
-                {% endfor %}
+              {% for feature in solution.taxonomies.features %}
+              {% set feature_slug = feature | slugify %}
+              <li>
+                  <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
+              </li>
+              {% endfor %}
=            </ul>
=            <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>
=        </article>

Use a component (aka macro) for features bullets

On by Tad Lispy

The bullets are rendered in three templates as of now:

There will be more in the future, and the bullets will evolve (icons, tooltips, who knows what else). The bullets themselves are part of bigger blocks: solution card within a solutions card grid. Those two also should be re-implemented as components.

new file mode 100644
index 0000000..e34a337
--- /dev/null
+++ b/templates/components.html
@@ -0,0 +1,8 @@
+{# These are reusable components (macros) #}
+
+{% macro feature_bullet(feature) %}
+{% set feature_slug = feature | slugify %}
+<li>
+    <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
+</li>
+{% endmacro feature_bullet %}
index b37b27f..731b828 100644
--- a/templates/features/single.html
+++ b/templates/features/single.html
@@ -2,6 +2,8 @@
=
={% extends "base.html" %}
=
+{% import "components.html" as components %}
+
={% block main_content %}
=
={% set feature_slug = term.name | slugify %}
@@ -38,10 +40,7 @@
=            <p>{{ solution.summary | safe | striptags }}</p>
=            <ul>
=              {% for feature in solution.taxonomies.features %}
-              {% set feature_slug = feature | slugify %}
-              <li>
-                  <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
-              </li>
+              {{ components::feature_bullet(feature=feature) }}
=              {% endfor %}
=            </ul>
=            <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>
index 6482e75..c164f1d 100644
--- a/templates/solution.html
+++ b/templates/solution.html
@@ -1,6 +1,8 @@
+{# This is a template for a single solution page #}
+
={% extends "base.html" %}
=
-Solution
+{% import "components.html" as components %}
=
={% block main_content %}
={{ page.content | safe }}
@@ -32,10 +34,7 @@ Do you use {{ page.title }} in your business? We can help you switch to one of t
=          <p>{{ alternative.summary | safe | striptags }}</p>
=          <ul>
=              {% for feature in alternative.taxonomies.features %}
-              {% set feature_slug = feature | slugify %}
-              <li>
-                  <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
-              </li>
+              {{ components::feature_bullet(feature=feature) }}
=              {% endfor %}
=          </ul>
=          <p style="margin-top: auto"><a href="{{ get_url(path=alternative.path) }}">Learn more</a></p>
index 1f6a8c8..ed2d441 100644
--- a/templates/solutions.html
+++ b/templates/solutions.html
@@ -1,5 +1,9 @@
+{# This is a template for the /solutions/ index page #}
+
={% extends "base.html" %}
=
+{% import "components.html" as components %}
+
={% block main_content %}
=  {{ section.content | safe }}
=
@@ -15,10 +19,7 @@
=            <p>{{ solution.summary | safe | striptags }}</p>
=            <ul>
=              {% for feature in solution.taxonomies.features %}
-              {% set feature_slug = feature | slugify %}
-              <li>
-                  <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
-              </li>
+              {{ components::feature_bullet(feature=feature) }}
=              {% endfor %}
=            </ul>
=            <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>

DRY on the solution card component

On by Tad Lispy

Don't Repeat Yourself.

index e34a337..3bc698d 100644
--- a/templates/components.html
+++ b/templates/components.html
@@ -2,7 +2,20 @@
=
={% macro feature_bullet(feature) %}
={% set feature_slug = feature | slugify %}
-<li>
+  <li>
=    <a href="{{ get_url(path="/features/" ~ feature_slug) }}">{{ feature }}</a>
-</li>
+  </li>
={% endmacro feature_bullet %}
+
+{% macro solution_card(solution) %}
+  <article>
+      <h3>{{ solution.title }}</h3>
+      <p>{{ solution.summary | safe | striptags }}</p>
+      <ul>
+          {% for feature in solution.taxonomies.features %}
+          {{ self::feature_bullet(feature=feature) }}
+          {% endfor %}
+      </ul>
+      <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>
+  </article>
+{% endmacro solution_card %}
index 731b828..3cd5390 100644
--- a/templates/features/single.html
+++ b/templates/features/single.html
@@ -34,17 +34,7 @@
=    <h2>{{ category.name | title }}</h2>
=    <section class="card-grid">
=      {% for solution in solutions %}
-      {# TODO: Dry with solution.html - a macro? #}
-        <article>
-            <h3>{{ solution.title }}</h3>
-            <p>{{ solution.summary | safe | striptags }}</p>
-            <ul>
-              {% for feature in solution.taxonomies.features %}
-              {{ components::feature_bullet(feature=feature) }}
-              {% endfor %}
-            </ul>
-            <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>
-        </article>
+        {{ components::solution_card(solution=solution) }}
=      {% endfor %}
=    </section>
=  {% endif %}
index c164f1d..5042efe 100644
--- a/templates/solution.html
+++ b/templates/solution.html
@@ -29,16 +29,7 @@ Do you use {{ page.title }} in your business? We can help you switch to one of t
=
=  <section class="card-grid">
=      {% for alternative in alternatives %}
-      <article>
-          <h3>{{ alternative.title }}</h3>
-          <p>{{ alternative.summary | safe | striptags }}</p>
-          <ul>
-              {% for feature in alternative.taxonomies.features %}
-              {{ components::feature_bullet(feature=feature) }}
-              {% endfor %}
-          </ul>
-          <p style="margin-top: auto"><a href="{{ get_url(path=alternative.path) }}">Learn more</a></p>
-      </article>
+        {{ components::solution_card(solution=alternative) }}
=      {% endfor %}
=  </section>
=  {% endfor %}
index ed2d441..1deb8ac 100644
--- a/templates/solutions.html
+++ b/templates/solutions.html
@@ -14,16 +14,7 @@
=    <section class="card-grid">
=      {% for solution in category.pages %}
=      {# TODO: Dry with solution.html - a macro? #}
-        <article>
-            <h3>{{ solution.title }}</h3>
-            <p>{{ solution.summary | safe | striptags }}</p>
-            <ul>
-              {% for feature in solution.taxonomies.features %}
-              {{ components::feature_bullet(feature=feature) }}
-              {% endfor %}
-            </ul>
-            <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>
-        </article>
+        {{ components::solution_card(solution=solution) }}
=      {% endfor %}
=    </section>
=  {% endfor %}

add microsoft 365 mail as an email provider

On by jnuytten

new file mode 100644
index 0000000..6dd0278
--- /dev/null
+++ b/content/solutions/m365-mail/index.md
@@ -0,0 +1,25 @@
+---
+title: M365 Mail
+  
+taxonomies:
+  solution_providers: [ "Microsoft" ]
+  solution_categories: [ "email provider" ]
+  features: 
+    - "part of M365 Office suite"
+    - "enterprise focus"
+    - "US jurisdiction"
+---
+
+Microsoft offers email for business as part of its Microsoft 365 line of services.
+
+<!-- more -->
+
+Esc Collective recommends against using Microsoft 365 for email in your business, for multiple reasons:
+- Microsoft is based in the US, and is obliged to follow any court orders or presidential executive orders. Also if that involves violating international law, exposing your personal data or company secrets, or stopping business critical services without prior notice. This was painfully demonstrated when [Microsoft cut its email services to a staff member of the International Criminal Court](https://apnews.com/article/icc-trump-sanctions-karim-khan-court-a4b4c02751ab84c09718b1b95cbd5db3) after the US president sanctioned the ICC due to an ongoing procedure against Israeli politicians.
+- Big tech companies such as Microsoft do not respect EU regulations such as those for privacy - the General Data Protection Regulation (GDPR). While European politicians still pretend the [EU-US data privacy framework (DPF)](https://ec.europa.eu/commission/presscorner/detail/en/qanda_23_3752) is in place, anyone reading the news about US politics concludes the DPF is defunct. This means any services provided by US companies, even when hosted in Europe, are no longer compliant with GDPR.
+- Microsoft has built its business on vendor lock-in, and does not hesitate to use its monopolist position to raise prices or discontinue functionalities critical for some businesses.
+- Microsoft has [strong ties to the increasingly hostile regime of Donald Trump](https://www.cnbc.com/2025/01/09/microsoft-contributes-1-million-to-trumps-inauguration-fund.html)
+
+While Microsoft 365 offers a very complete set of services and sports "enterprise grade security", properly managing a M365 tenant and keeping it secure is a hard task for small and medium sized companies. Microsoft products are built with enterprises in mind, their architecture and administrative tools are not made for companies with limited IT staff and budgets. Also the listed threats on privacy, business continuity and business ethics far outweigh the advantages the Microsoft solutions might offer.
+
+Home page: <https://www.office.com/>

Add solution Transip Email

On by jnuytten

new file mode 100644
index 0000000..3e7bc0c
--- /dev/null
+++ b/content/solutions/transip-mail/index.md
@@ -0,0 +1,25 @@
+---
+title: Transip E-mail
+  
+taxonomies:
+  solution_providers: [ "Transip" ]
+  solution_categories: [ "email provider" ]
+  features: 
+    - "open standards: imap, smtp"
+    - "just email"
+  esc_support: [ "consulting", "integration" ]
+---
+
+Transip E-mail is a great solution for those businesses that only want to send email and don't need all the extra's.
+
+<!-- more -->
+
+Esc Collective offers commercial support for business switching to Transip E-mail in form of consulting and integration. We can take care of DNS settings including DKIM and DMARC, and help migrate existing email from your current provider. But maybe most important of all, Esc Collective can help you find the email provider which meets your functional and business requirements.
+
+Transip E-mail might be just what your business needs: a simple mailbox on your own custom domain. You can use the service from their webclient or using IMAP / SMTP from any client on your own device, for example Thunderbird. Their product does not include an encryption functionality but OpenPGP can be implemented locally in a client software to provide end-to-end encryption.
+
+This solution for email is not expensive. It should be prefered if your business requirement is limited to email and you don't need other functions such as calendar and shared mailboxes.
+
+Transip is a company from the Netherlands, data is stored in their datacenters in the Netherlands. They have an excellent reputation, respecting data privacy and ensuring security. We also have positive experience with their support.
+
+Home page: <https://www.transip.nl/email-hosting/>

Do not push alternatives to supported solutions

On by Tad Lispy

Use different text for supported vs not supported solutions.

index 3bc698d..c4ba2c3 100644
--- a/templates/components.html
+++ b/templates/components.html
@@ -19,3 +19,11 @@
=      <p style="margin-top: auto"><a href="{{ get_url(path=solution.path) }}">Learn more</a></p>
=  </article>
={% endmacro solution_card %}
+
+{% macro natural_list (items) %}
+{# Produce a natural sounding list, like "foo, bar and baz" #}
+  {%- for item in items -%}
+    {%- if loop.first %} {% elif loop.last %} and {% else %}, {% endif %}
+    {{ item | safe }}
+  {%- endfor -%}
+{% endmacro natural_list %}
index 5042efe..6c9c832 100644
--- a/templates/solution.html
+++ b/templates/solution.html
@@ -11,11 +11,19 @@
=  set alternatives = []
=%}
=
-Do you use {{ page.title }} in your business? We can help you switch to one of the viable alternatives.
+<p>
+  Do you use {{ page.title }} in your business?
+  {% if page.taxonomies.esc_support %}
+  Esc Collective offers support in form of {{ components::natural_list (items=page.taxonomies.esc_support) }}. 
+  {% else %}
+  We can help you switch to one of the viable alternatives.
+  {% endif %}
+</p>
+
=
={# TODO: Do not print the heading if there are no alternatives. Print something else. #}
={% for category in page.taxonomies.solution_categories %}
-  <h2>Alternatives in the {{ category }} category:</h2>
+  <h2>Alternatives to {{ page.title }} in the {{ category }} category:</h2>
=
=  {% set term = get_taxonomy_term(kind="solution_categories", term=category) %}
=  {% set_global alternatives = [] %}

Do not print a heading when no alternatives

On by Tad Lispy

index 6c9c832..9913136 100644
--- a/templates/solution.html
+++ b/templates/solution.html
@@ -23,8 +23,6 @@
=
={# TODO: Do not print the heading if there are no alternatives. Print something else. #}
={% for category in page.taxonomies.solution_categories %}
-  <h2>Alternatives to {{ page.title }} in the {{ category }} category:</h2>
-
=  {% set term = get_taxonomy_term(kind="solution_categories", term=category) %}
=  {% set_global alternatives = [] %}
=  {% for solution in term.pages %}
@@ -34,6 +32,8 @@
=    {% endif %}
=  {% endfor %}
=
+  {% if not alternatives %}{% continue %}{% endif %}
+  <h2>Alternatives to {{ page.title }} in the {{ category }} category:</h2>
=
=  <section class="card-grid">
=      {% for alternative in alternatives %}

Add OpenMoji icos, a stylesheet and a script to generate it

On by Tad Lispy

new file mode 100644
index 0000000..d5c9154
--- /dev/null
+++ b/openmoji.csv
@@ -0,0 +1,4293 @@
+emoji,hexcode,group,subgroups,annotation,tags,openmoji_tags,openmoji_author,openmoji_date,skintone,skintone_combination,skintone_base_emoji,skintone_base_hexcode,unicode,order
+😀,1F600,smileys-emotion,face-smiling,grinning face,"cheerful, cheery, face, grin, grinning, happy, laugh, nice, smile, smiling, teeth",,Emily Jäger,2018-04-18,,,,,1,1
+😃,1F603,smileys-emotion,face-smiling,grinning face with big eyes,"awesome, big, eyes, face, grin, grinning, happy, mouth, open, smile, smiling, teeth, yay",,Emily Jäger,2018-04-18,,,,,0.6,2
+😄,1F604,smileys-emotion,face-smiling,grinning face with smiling eyes,"eye, eyes, face, grin, grinning, happy, laugh, lol, mouth, open, smile, smiling",,Emily Jäger,2018-04-18,,,,,0.6,3
+😁,1F601,smileys-emotion,face-smiling,beaming face with smiling eyes,"beaming, eye, eyes, face, grin, grinning, happy, nice, smile, smiling, teeth",,Emily Jäger,2018-04-18,,,,,0.6,4
+😆,1F606,smileys-emotion,face-smiling,grinning squinting face,"closed, eyes, face, grinning, haha, hahaha, happy, laugh, lol, mouth, open, rofl, smile, smiling, squinting",,Emily Jäger,2018-04-18,,,,,0.6,5
+😅,1F605,smileys-emotion,face-smiling,grinning face with sweat,"cold, dejected, excited, face, grinning, mouth, nervous, open, smile, smiling, stress, stressed, sweat",,Emily Jäger,2018-04-18,,,,,0.6,6
+🤣,1F923,smileys-emotion,face-smiling,rolling on the floor laughing,"crying, face, floor, funny, haha, happy, hehe, hilarious, joy, laugh, lmao, lol, rofl, roflmao, rolling, tear",,Emily Jäger,2018-04-18,,,,,3,7
+😂,1F602,smileys-emotion,face-smiling,face with tears of joy,"crying, face, feels, funny, haha, happy, hehe, hilarious, joy, laugh, lmao, lol, rofl, roflmao, tear",,Emily Jäger,2018-04-18,,,,,0.6,8
+🙂,1F642,smileys-emotion,face-smiling,slightly smiling face,"face, happy, slightly, smile, smiling",,Emily Jäger,2018-04-18,,,,,1,9
+🙃,1F643,smileys-emotion,face-smiling,upside-down face,"face, hehe, smile, upside-down",,Emily Jäger,2018-04-18,,,,,1,10
+🫠,1FAE0,smileys-emotion,face-smiling,melting face,"disappear, dissolve, embarrassed, face, haha, heat, hot, liquid, lol, melt, melting, sarcasm, sarcastic",,Liz Bravo,2022-02-10,,,,,14,11
+😉,1F609,smileys-emotion,face-smiling,winking face,"face, flirt, heartbreaker, sexy, slide, tease, wink, winking, winks",,Emily Jäger,2018-04-18,,,,,0.6,12
+😊,1F60A,smileys-emotion,face-smiling,smiling face with smiling eyes,"blush, eye, eyes, face, glad, satisfied, smile, smiling",,Emily Jäger,2018-04-18,,,,,0.6,13
+😇,1F607,smileys-emotion,face-smiling,smiling face with halo,"angel, angelic, angels, blessed, face, fairy, fairytale, fantasy, halo, happy, innocent, peaceful, smile, smiling, spirit, tale",,Emily Jäger,2018-04-18,,,,,1,14
+🥰,1F970,smileys-emotion,face-affection,smiling face with hearts,"3, adore, crush, face, heart, hearts, ily, love, romance, smile, smiling, you",,Antonia Wagner,2019-05-03,,,,,11,15
+😍,1F60D,smileys-emotion,face-affection,smiling face with heart-eyes,"143, bae, eye, face, feels, heart-eyes, hearts, ily, kisses, love, romance, romantic, smile, xoxo",,Emily Jäger,2018-04-18,,,,,0.6,16
+🤩,1F929,smileys-emotion,face-affection,star-struck,"excited, eyes, face, grinning, smile, star, starry-eyed, wow",,Emily Jäger,2018-04-18,,,,,5,17
+😘,1F618,smileys-emotion,face-affection,face blowing a kiss,"adorbs, bae, blowing, face, flirt, heart, ily, kiss, love, lover, miss, muah, romantic, smooch, xoxo, you",,Emily Jäger,2018-04-18,,,,,0.6,18
+😗,1F617,smileys-emotion,face-affection,kissing face,"143, date, dating, face, flirt, ily, kiss, love, smooch, smooches, xoxo, you",,Emily Jäger,2018-04-18,,,,,1,19
+☺️,263A,smileys-emotion,face-affection,smiling face,"face, happy, outlined, relaxed, smile, smiling",,Emily Jäger,2018-04-18,,,,,0.6,21
+😚,1F61A,smileys-emotion,face-affection,kissing face with closed eyes,"143, bae, blush, closed, date, dating, eye, eyes, face, flirt, ily, kisses, kissing, smooches, xoxo",,Emily Jäger,2018-04-18,,,,,0.6,22
+😙,1F619,smileys-emotion,face-affection,kissing face with smiling eyes,"143, closed, date, dating, eye, eyes, face, flirt, ily, kiss, kisses, kissing, love, night, smile, smiling",,Emily Jäger,2018-04-18,,,,,1,23
+🥲,1F972,smileys-emotion,face-affection,smiling face with tear,"face, glad, grateful, happy, joy, pain, proud, relieved, smile, smiley, smiling, tear, touched",,Liz Bravo,2020-03-07,,,,,13,24
+😋,1F60B,smileys-emotion,face-tongue,face savoring food,"delicious, eat, face, food, full, hungry, savor, smile, smiling, tasty, um, yum, yummy",,Emily Jäger,2018-04-18,,,,,0.6,25
+😛,1F61B,smileys-emotion,face-tongue,face with tongue,"awesome, cool, face, nice, party, stuck-out, sweet, tongue",,Mariella Steeb,2018-04-18,,,,,1,26
+😜,1F61C,smileys-emotion,face-tongue,winking face with tongue,"crazy, epic, eye, face, funny, joke, loopy, nutty, party, stuck-out, tongue, wacky, weirdo, wink, winking, yolo",,Mariella Steeb,2018-04-18,,,,,0.6,27
+🤪,1F92A,smileys-emotion,face-tongue,zany face,"crazy, eye, eyes, face, goofy, large, small, zany",,Mariella Steeb,2018-04-18,,,,,5,28
+😝,1F61D,smileys-emotion,face-tongue,squinting face with tongue,"closed, eye, eyes, face, gross, horrible, omg, squinting, stuck-out, taste, tongue, whatever, yolo",,Mariella Steeb,2018-04-18,,,,,0.6,29
+🤑,1F911,smileys-emotion,face-tongue,money-mouth face,"face, money, money-mouth, mouth, paid",,Emily Jäger,2018-04-18,,,,,1,30
+🤗,1F917,smileys-emotion,face-hand,smiling face with open hands,"face, hands, hug, hugging, open, smiling",,Emily Jäger,2018-04-18,,,,,1,31
+🤭,1F92D,smileys-emotion,face-hand,face with hand over mouth,"face, giggle, giggling, hand, mouth, oops, realization, secret, shock, sudden, surprise, whoops",,Liz Bravo,2020-12-21,,,,,5,32
+🫢,1FAE2,smileys-emotion,face-hand,face with open eyes and hand over mouth,"amazement, awe, disbelief, embarrass, eyes, face, gasp, hand, mouth, omg, open, over, quiet, scared, shock, surprise",,Liz Bravo,2022-02-10,,,,,14,33
+🫣,1FAE3,smileys-emotion,face-hand,face with peeking eye,"captivated, embarrass, eye, face, hide, hiding, peek, peeking, peep, scared, shy, stare",,Robin Bauer,2022-05-09,,,,,14,34
+🤫,1F92B,smileys-emotion,face-hand,shushing face,"face, quiet, shh, shush, shushing",,Emily Jäger,2018-04-18,,,,,5,35
+🤔,1F914,smileys-emotion,face-hand,thinking face,"chin, consider, face, hmm, ponder, pondering, thinking, wondering",,Emily Jäger,2018-04-18,,,,,1,36
+🫡,1FAE1,smileys-emotion,face-hand,saluting face,"face, good, luck, ma’am, ok, respect, salute, saluting, sir, troops, yes",,Alan Seng,2022-05-09,,,,,14,37
+🤐,1F910,smileys-emotion,face-neutral-skeptical,zipper-mouth face,"face, keep, mouth, quiet, secret, shut, zip, zipper, zipper-mouth",,Emily Jäger,2018-04-18,,,,,1,38
+🤨,1F928,smileys-emotion,face-neutral-skeptical,face with raised eyebrow,"disapproval, disbelief, distrust, emoji, eyebrow, face, hmm, mild, raised, skeptic, skeptical, skepticism, surprise, what",,Emily Jäger,2018-04-18,,,,,5,39
+😐️,1F610,smileys-emotion,face-neutral-skeptical,neutral face,"awkward, blank, deadpan, expressionless, face, fine, jealous, meh, neutral, oh, shade, straight, unamused, unhappy, unimpressed, whatever",,Mariella Steeb,2018-04-18,,,,,0.7,40
+😑,1F611,smileys-emotion,face-neutral-skeptical,expressionless face,"awkward, dead, expressionless, face, fine, inexpressive, jealous, meh, not, oh, omg, straight, uh, unhappy, unimpressed, whatever",,Mariella Steeb,2018-04-18,,,,,1,41
+😶,1F636,smileys-emotion,face-neutral-skeptical,face without mouth,"awkward, blank, expressionless, face, mouth, mouthless, mute, quiet, secret, silence, silent, speechless",,Emily Jäger,2018-04-18,,,,,1,42
+🫥,1FAE5,smileys-emotion,face-neutral-skeptical,dotted line face,"depressed, disappear, dotted, face, hidden, hide, introvert, invisible, line, meh, whatever, wtv",,Liz Bravo,2022-02-10,,,,,14,43
+😶‍🌫️,1F636-200D-1F32B-FE0F,smileys-emotion,face-neutral-skeptical,face in clouds,"absentminded, clouds, face, fog, head",,Nelly Nieter,2021-04-23,,,,,13.1,44
+😏,1F60F,smileys-emotion,face-neutral-skeptical,smirking face,"boss, dapper, face, flirt, homie, kidding, leer, shade, slick, sly, smirk, smug, snicker, suave, suspicious, swag",,Mariella Steeb,2018-04-18,,,,,0.6,46
+😒,1F612,smileys-emotion,face-neutral-skeptical,unamused face,"..., bored, face, fine, jealous, jel, jelly, pissed, smh, ugh, uhh, unamused, unhappy, weird, whatever",,Mariella Steeb,2018-04-18,,,,,0.6,47
+🙄,1F644,smileys-emotion,face-neutral-skeptical,face with rolling eyes,"eyeroll, eyes, face, rolling, shade, ugh, whatever",,Emily Jäger,2018-04-18,,,,,1,48
+😬,1F62C,smileys-emotion,face-neutral-skeptical,grimacing face,"awk, awkward, dentist, face, grimace, grimacing, grinning, smile, smiling",,Daniel Utz,2019-11-11,,,,,1,49
+😮‍💨,1F62E-200D-1F4A8,smileys-emotion,face-neutral-skeptical,face exhaling,"blow, blowing, exhale, exhaling, exhausted, face, gasp, groan, relief, sigh, smiley, smoke, whisper, whistle",,Nelly Nieter,2021-04-23,,,,,13.1,50
+🤥,1F925,smileys-emotion,face-neutral-skeptical,lying face,"face, liar, lie, lying, pinocchio",,Emily Jäger,2018-04-18,,,,,3,51
+🫨,1FAE8,smileys-emotion,face-neutral-skeptical,shaking face,"crazy, daze, earthquake, face, omg, panic, shaking, shock, surprise, vibrate, whoa, wow",,Linda Hartmann,2023-10-25,,,,,15,52
+🙂‍↔️,1F642-200D-2194-FE0F,smileys-emotion,face-neutral-skeptical,head shaking horizontally,"head, horizontally, no, shake, shaking",,Vanessa Stoessinger,2024-10-03,,,,,15.1,53
+🙂‍↕️,1F642-200D-2195-FE0F,smileys-emotion,face-neutral-skeptical,head shaking vertically,"head, nod, shaking, vertically, yes",,Annika Raue,2024-10-03,,,,,15.1,55
+😌,1F60C,smileys-emotion,face-sleepy,relieved face,"calm, face, peace, relief, relieved, zen",,Mariella Steeb,2018-04-18,,,,,0.6,57
+😔,1F614,smileys-emotion,face-sleepy,pensive face,"awful, bored, dejected, died, disappointed, face, losing, lost, pensive, sad, sucks",,Mariella Steeb,2018-04-18,,,,,0.6,58
+😪,1F62A,smileys-emotion,face-sleepy,sleepy face,"crying, face, good, night, sad, sleep, sleeping, sleepy, tired",,Mariella Steeb,2018-04-18,,,,,0.6,59
+🤤,1F924,smileys-emotion,face-sleepy,drooling face,"drooling, face",,Emily Jäger,2018-04-18,,,,,3,60
+😴,1F634,smileys-emotion,face-sleepy,sleeping face,"bed, bedtime, face, good, goodnight, nap, night, sleep, sleeping, tired, whatever, yawn, zzz",,Emily Jäger,2018-04-18,,,,,1,61
+🫩,1FAE9,smileys-emotion,face-sleepy,face with bags under eyes,"bags, bored, exhausted, eyes, face, fatigued, late, sleepy, tired, weary",,Daniel Utz,2025-02-18,,,,,16,62
+😷,1F637,smileys-emotion,face-unwell,face with medical mask,"cold, dentist, dermatologist, doctor, dr, face, germs, mask, medical, medicine, sick",,Emily Jäger,2018-04-18,,,,,0.6,63
+🤒,1F912,smileys-emotion,face-unwell,face with thermometer,"face, ill, sick, thermometer",,Emily Jäger,2018-04-18,,,,,1,64
+🤕,1F915,smileys-emotion,face-unwell,face with head-bandage,"bandage, face, head-bandage, hurt, injury, ouch",,Emily Jäger,2018-04-18,,,,,1,65
+🤢,1F922,smileys-emotion,face-unwell,nauseated face,"face, gross, nasty, nauseated, sick, vomit",,Emily Jäger,2018-04-18,,,,,3,66
+🤮,1F92E,smileys-emotion,face-unwell,face vomiting,"barf, ew, face, gross, puke, sick, spew, throw, up, vomit, vomiting",,Emily Jäger,2018-04-18,,,,,5,67
+🤧,1F927,smileys-emotion,face-unwell,sneezing face,"face, fever, flu, gesundheit, sick, sneeze, sneezing",,Emily Jäger,2018-04-18,,,,,3,68
+🥵,1F975,smileys-emotion,face-unwell,hot face,"dying, face, feverish, heat, hot, panting, red-faced, stroke, sweating, tongue",,Antonia Wagner,2019-05-03,,,,,11,69
+🥶,1F976,smileys-emotion,face-unwell,cold face,"blue, blue-faced, cold, face, freezing, frostbite, icicles, subzero, teeth",,Antonia Wagner,2019-05-03,,,,,11,70
+🥴,1F974,smileys-emotion,face-unwell,woozy face,"dizzy, drunk, eyes, face, intoxicated, mouth, tipsy, uneven, wavy, woozy",,Antonia Wagner,2019-05-03,,,,,11,71
+😵,1F635,smileys-emotion,face-unwell,face with crossed-out eyes,"crossed-out, dead, dizzy, eyes, face, feels, knocked, out, sick, tired",,Mariella Steeb,2018-04-18,,,,,0.6,72
+😵‍💫,1F635-200D-1F4AB,smileys-emotion,face-unwell,face with spiral eyes,"confused, dizzy, eyes, face, hypnotized, omg, smiley, spiral, trouble, whoa, woah, woozy",,Nelly Nieter,2021-04-23,,,,,13.1,73
+🤯,1F92F,smileys-emotion,face-unwell,exploding head,"blown, explode, exploding, head, mind, mindblown, no, shocked, way",,Tara Lynn Connelly,2020-04-13,,,,,5,74
+🤠,1F920,smileys-emotion,face-hat,cowboy hat face,"cowboy, cowgirl, face, hat",,Emily Jäger,2018-04-18,,,,,3,75
+🥳,1F973,smileys-emotion,face-hat,partying face,"bday, birthday, celebrate, celebration, excited, face, happy, hat, hooray, horn, party, partying",,Antonia Wagner,2019-05-03,,,,,11,76
+🥸,1F978,smileys-emotion,face-hat,disguised face,"disguise, eyebrow, face, glasses, incognito, moustache, mustache, nose, person, spy, tache, tash",,Liz Bravo,2020-03-07,,,,,13,77
+😎,1F60E,smileys-emotion,face-glasses,smiling face with sunglasses,"awesome, beach, bright, bro, chilling, cool, face, rad, relaxed, shades, slay, smile, style, sunglasses, swag, win",,Emily Jäger,2018-04-18,,,,,1,78
+🤓,1F913,smileys-emotion,face-glasses,nerd face,"brainy, clever, expert, face, geek, gifted, glasses, intelligent, nerd, smart",,Emily Jäger,2018-04-18,,,,,1,79
+🧐,1F9D0,smileys-emotion,face-glasses,face with monocle,"classy, face, fancy, monocle, rich, stuffy, wealthy",,Emily Jäger,2018-04-18,,,,,5,80
+😕,1F615,smileys-emotion,face-concerned,confused face,"befuddled, confused, confusing, dunno, face, frown, hm, meh, not, sad, sorry, sure",,Mariella Steeb,2018-04-18,,,,,1,81
+🫤,1FAE4,smileys-emotion,face-concerned,face with diagonal mouth,"confused, confusion, diagonal, disappointed, doubt, doubtful, face, frustrated, frustration, meh, mouth, skeptical, unsure, whatever, wtv",,Liz Bravo,2022-02-10,,,,,14,82
+😟,1F61F,smileys-emotion,face-concerned,worried face,"anxious, butterflies, face, nerves, nervous, sad, stress, stressed, surprised, worried, worry",,Mariella Steeb,2018-04-18,,,,,1,83
+🙁,1F641,smileys-emotion,face-concerned,slightly frowning face,"face, frown, frowning, sad, slightly",,Mariella Steeb,2018-04-18,,,,,1,84
+☹️,2639,smileys-emotion,face-concerned,frowning face,"face, frown, frowning, sad",,Mariella Steeb,2018-04-18,,,,,0.7,86
+😮,1F62E,smileys-emotion,face-concerned,face with open mouth,"believe, face, forgot, mouth, omg, open, shocked, surprised, sympathy, unbelievable, unreal, whoa, wow, you",,Mariella Steeb,2018-04-18,,,,,1,87
+😯,1F62F,smileys-emotion,face-concerned,hushed face,"epic, face, hushed, omg, stunned, surprised, whoa, woah",,Mariella Steeb,2018-04-18,,,,,1,88
+😲,1F632,smileys-emotion,face-concerned,astonished face,"astonished, cost, face, no, omg, shocked, totally, way",,Emily Jäger,2018-04-18,,,,,0.6,89
+😳,1F633,smileys-emotion,face-concerned,flushed face,"amazed, awkward, crazy, dazed, dead, disbelief, embarrassed, face, flushed, geez, heat, hot, impressed, jeez, what, wow",,Mariella Steeb,2018-04-18,,,,,0.6,90
+🥺,1F97A,smileys-emotion,face-concerned,pleading face,"begging, big, eyes, face, mercy, not, pleading, please, pretty, puppy, sad, why",,Antonia Wagner,2019-05-03,,,,,11,91
+🥹,1F979,smileys-emotion,face-concerned,face holding back tears,"admiration, aww, back, cry, embarrassed, face, feelings, grateful, gratitude, holding, joy, please, proud, resist, sad, tears",,Liz Bravo,2022-02-10,,,,,14,92
+😦,1F626,smileys-emotion,face-concerned,frowning face with open mouth,"caught, face, frown, frowning, guard, mouth, open, scared, scary, surprise, what, wow",,Mariella Steeb,2018-04-18,,,,,1,93
+😧,1F627,smileys-emotion,face-concerned,anguished face,"anguished, face, forgot, scared, scary, stressed, surprise, unhappy, what, wow",,Mariella Steeb,2018-04-18,,,,,1,94
+😨,1F628,smileys-emotion,face-concerned,fearful face,"afraid, anxious, blame, face, fear, fearful, scared, worried",,Liz Bravo,2020-12-27,,,,,0.6,95
+😰,1F630,smileys-emotion,face-concerned,anxious face with sweat,"anxious, blue, cold, eek, face, mouth, nervous, open, rushed, scared, sweat, yikes",,Mariella Steeb,2018-04-18,,,,,0.6,96
+😥,1F625,smileys-emotion,face-concerned,sad but relieved face,"anxious, call, close, complicated, disappointed, face, not, relieved, sad, sweat, time, whew",,Liz Bravo,2020-12-27,,,,,0.6,97
+😢,1F622,smileys-emotion,face-concerned,crying face,"awful, cry, crying, face, feels, miss, sad, tear, triste, unhappy",,Mariella Steeb,2018-04-18,,,,,0.6,98
+😭,1F62D,smileys-emotion,face-concerned,loudly crying face,"bawling, cry, crying, face, loudly, sad, sob, tear, tears, unhappy",,Carlin MacKenzie,2020-05-11,,,,,0.6,99
+😱,1F631,smileys-emotion,face-concerned,face screaming in fear,"epic, face, fear, fearful, munch, scared, scream, screamer, screaming, shocked, surprised, woah",,Mariella Steeb,2018-04-18,,,,,0.6,100
+😖,1F616,smileys-emotion,face-concerned,confounded face,"annoyed, confounded, confused, cringe, distraught, face, feels, frustrated, mad, sad",,Mariella Steeb,2018-04-18,,,,,0.6,101
+😣,1F623,smileys-emotion,face-concerned,persevering face,"concentrate, concentration, face, focus, headache, persevere, persevering",,Mariella Steeb,2018-04-18,,,,,0.6,102
+😞,1F61E,smileys-emotion,face-concerned,disappointed face,"awful, blame, dejected, disappointed, face, fail, losing, sad, unhappy",,Mariella Steeb,2018-04-18,,,,,0.6,103
+😓,1F613,smileys-emotion,face-concerned,downcast face with sweat,"close, cold, downcast, face, feels, headache, nervous, sad, scared, sweat, yikes",,Mariella Steeb,2018-04-18,,,,,0.6,104
+😩,1F629,smileys-emotion,face-concerned,weary face,"crying, face, fail, feels, hungry, mad, nooo, sad, sleepy, tired, unhappy, weary",,Mariella Steeb,2018-04-18,,,,,0.6,105
+😫,1F62B,smileys-emotion,face-concerned,tired face,"cost, face, feels, nap, sad, sneeze, tired",,Mariella Steeb,2018-04-18,,,,,0.6,106
+🥱,1F971,smileys-emotion,face-concerned,yawning face,"bedtime, bored, face, goodnight, nap, night, sleep, sleepy, tired, whatever, yawn, yawning, zzz",,Liz Bravo,2020-12-27,,,,,12,107
+😤,1F624,smileys-emotion,face-negative,face with steam from nose,"anger, angry, face, feels, fume, fuming, furious, fury, mad, nose, steam, triumph, unhappy, won",,Mariella Steeb,2018-04-18,,,,,0.6,108
+😡,1F621,smileys-emotion,face-negative,enraged face,"anger, angry, enraged, face, feels, mad, maddening, pouting, rage, red, shade, unhappy, upset",,Mariella Steeb,2018-04-18,,,,,0.6,109
+😠,1F620,smileys-emotion,face-negative,angry face,"anger, angry, blame, face, feels, frustrated, mad, maddening, rage, shade, unhappy, upset",,Mariella Steeb,2018-04-18,,,,,0.6,110
+🤬,1F92C,smileys-emotion,face-negative,face with symbols on mouth,"censor, cursing, cussing, face, mad, mouth, pissed, swearing, symbols",,Liz Bravo,2020-12-27,,,,,5,111
+😈,1F608,smileys-emotion,face-negative,smiling face with horns,"demon, devil, evil, face, fairy, fairytale, fantasy, horns, purple, shade, smile, smiling, tale",,Mariella Steeb,2018-04-18,,,,,1,112
+👿,1F47F,smileys-emotion,face-negative,angry face with horns,"angry, demon, devil, evil, face, fairy, fairytale, fantasy, horns, imp, mischievous, purple, shade, tale",,Mariella Steeb,2018-04-18,,,,,0.6,113
+💀,1F480,smileys-emotion,face-negative,skull,"body, dead, death, face, fairy, fairytale, i’m, lmao, monster, tale, yolo",,Mariella Steeb,2018-04-18,,,,,0.6,114
+☠️,2620,smileys-emotion,face-negative,skull and crossbones,"bone, crossbones, dead, death, face, monster, skull",,Mariella Steeb,2018-04-18,,,,,1,116
+💩,1F4A9,smileys-emotion,face-costume,pile of poo,"bs, comic, doo, dung, face, fml, monster, pile, poo, poop, smelly, smh, stink, stinks, stinky, turd",,Mariella Steeb,2018-04-18,,,,,0.6,117
+🤡,1F921,smileys-emotion,face-costume,clown face,"clown, face",,Emily Jäger,2018-04-18,,,,,3,118
+👹,1F479,smileys-emotion,face-costume,ogre,"creature, devil, face, fairy, fairytale, fantasy, mask, monster, scary, tale",,Anne Frauendorf,2018-11-16,,,,,0.6,119
+👺,1F47A,smileys-emotion,face-costume,goblin,"angry, creature, face, fairy, fairytale, fantasy, mask, mean, monster, tale",,Antonia Wagner,2019-05-03,,,,,0.6,120
+👻,1F47B,smileys-emotion,face-costume,ghost,"boo, creature, excited, face, fairy, fairytale, fantasy, halloween, haunting, monster, scary, silly, tale",,Mariella Steeb,2018-04-18,,,,,0.6,121
+👽️,1F47D,smileys-emotion,face-costume,alien,"creature, extraterrestrial, face, fairy, fairytale, fantasy, monster, space, tale, ufo",,Mariella Steeb,2018-04-18,,,,,0.6,122
+👾,1F47E,smileys-emotion,face-costume,alien monster,"alien, creature, extraterrestrial, face, fairy, fairytale, fantasy, game, gamer, games, monster, pixelated, space, tale, ufo",,Antonia Wagner,2019-05-03,,,,,0.6,123
+🤖,1F916,smileys-emotion,face-costume,robot,"face, monster",,Mariella Steeb,2018-04-18,,,,,1,124
+😺,1F63A,smileys-emotion,cat-face,grinning cat,"animal, cat, face, grinning, mouth, open, smile, smiling",,Emily Jäger,2018-04-18,,,,,0.6,125
+😸,1F638,smileys-emotion,cat-face,grinning cat with smiling eyes,"animal, cat, eye, eyes, face, grin, grinning, smile, smiling",,Emily Jäger,2018-04-18,,,,,0.6,126
+😹,1F639,smileys-emotion,cat-face,cat with tears of joy,"animal, cat, face, joy, laugh, laughing, lol, tear, tears",,Emily Jäger,2018-04-18,,,,,0.6,127
+😻,1F63B,smileys-emotion,cat-face,smiling cat with heart-eyes,"animal, cat, eye, face, heart, heart-eyes, love, smile, smiling",,Emily Jäger,2018-04-18,,,,,0.6,128
+😼,1F63C,smileys-emotion,cat-face,cat with wry smile,"animal, cat, face, ironic, smile, wry",,Emily Jäger,2018-04-18,,,,,0.6,129
+😽,1F63D,smileys-emotion,cat-face,kissing cat,"animal, cat, closed, eye, eyes, face, kiss, kissing",,Emily Jäger,2018-04-18,,,,,0.6,130
+🙀,1F640,smileys-emotion,cat-face,weary cat,"animal, cat, face, oh, surprised, weary",,Emily Jäger,2018-04-18,,,,,0.6,131
+😿,1F63F,smileys-emotion,cat-face,crying cat,"animal, cat, cry, crying, face, sad, tear",,Emily Jäger,2018-04-18,,,,,0.6,132
+😾,1F63E,smileys-emotion,cat-face,pouting cat,"animal, cat, face, pouting",,Emily Jäger,2018-04-18,,,,,0.6,133
+🙈,1F648,smileys-emotion,monkey-face,see-no-evil monkey,"embarrassed, evil, face, forbidden, forgot, gesture, hide, monkey, no, omg, prohibited, scared, secret, smh, watch",,Mariella Steeb,2018-04-18,,,,,0.6,134
+🙉,1F649,smileys-emotion,monkey-face,hear-no-evil monkey,"animal, ears, evil, face, forbidden, gesture, hear, listen, monkey, no, not, prohibited, secret, shh, tmi",,Mariella Steeb,2018-04-18,,,,,0.6,135
+🙊,1F64A,smileys-emotion,monkey-face,speak-no-evil monkey,"animal, evil, face, forbidden, gesture, monkey, no, not, oops, prohibited, quiet, secret, speak, stealth",,Mariella Steeb,2018-04-18,,,,,0.6,136
+💌,1F48C,smileys-emotion,heart,love letter,"heart, letter, love, mail, romance, valentine",,Laura Humpfer,2018-04-18,,,,,0.6,137
+💘,1F498,smileys-emotion,heart,heart with arrow,"143, adorbs, arrow, cupid, date, emotion, heart, ily, love, romance, valentine",,Laura Humpfer,2018-04-18,,,,,0.6,138
+💝,1F49D,smileys-emotion,heart,heart with ribbon,"143, anniversary, emotion, heart, ily, kisses, ribbon, valentine, xoxo",,Laura Humpfer,2018-04-18,,,,,0.6,139
+💖,1F496,smileys-emotion,heart,sparkling heart,"143, emotion, excited, good, heart, ily, kisses, morning, night, sparkle, sparkling, xoxo",,Laura Humpfer,2018-04-18,,,,,0.6,140
+💗,1F497,smileys-emotion,heart,growing heart,"143, emotion, excited, growing, heart, heartpulse, ily, kisses, muah, nervous, pulse, xoxo",,Laura Humpfer,2018-04-18,,,,,0.6,141
+💓,1F493,smileys-emotion,heart,beating heart,"143, beating, cardio, emotion, heart, heartbeat, ily, love, pulsating, pulse",,Laura Humpfer,2018-04-18,,,,,0.6,142
+💞,1F49E,smileys-emotion,heart,revolving hearts,"143, adorbs, anniversary, emotion, heart, hearts, revolving",,Laura Humpfer,2018-04-18,,,,,0.6,143
+💕,1F495,smileys-emotion,heart,two hearts,"143, anniversary, date, dating, emotion, heart, hearts, ily, kisses, love, loving, two, xoxo",,Laura Humpfer,2018-04-18,,,,,0.6,144
+💟,1F49F,smileys-emotion,heart,heart decoration,"143, decoration, emotion, heart, hearth, purple, white",,Laura Humpfer,2018-04-18,,,,,0.6,145
+❣️,2763,smileys-emotion,heart,heart exclamation,"exclamation, heart, heavy, mark, punctuation",,Laura Humpfer,2018-04-18,,,,,1,147
+💔,1F494,smileys-emotion,heart,broken heart,"break, broken, crushed, emotion, heart, heartbroken, lonely, sad",,Laura Humpfer,2018-04-18,,,,,0.6,148
+❤️‍🔥,2764-FE0F-200D-1F525,smileys-emotion,heart,heart on fire,"burn, fire, heart, love, lust, sacred",,Nelly Nieter,2021-04-23,,,,,13.1,149
+❤️‍🩹,2764-FE0F-200D-1FA79,smileys-emotion,heart,mending heart,"healthier, heart, improving, mending, recovering, recuperating, well",,Nelly Nieter,2021-04-23,,,,,13.1,151
+❤️,2764,smileys-emotion,heart,red heart,"emotion, heart, love, red",,Laura Humpfer,2018-04-18,,,,,0.6,154
+🩷,1FA77,smileys-emotion,heart,pink heart,"143, adorable, cute, emotion, heart, ily, like, love, pink, special, sweet",,Jasmin Fassler,2023-10-25,,,,,15,155
+🧡,1F9E1,smileys-emotion,heart,orange heart,"143, heart, orange",,Laura Schießer,2019-05-06,,,,,5,156
+💛,1F49B,smileys-emotion,heart,yellow heart,"143, cardiac, emotion, heart, ily, love, yellow",,Laura Humpfer,2018-04-18,,,,,0.6,157
+💚,1F49A,smileys-emotion,heart,green heart,"143, emotion, green, heart, ily, love, romantic",,Laura Humpfer,2018-04-18,,,,,0.6,158
+💙,1F499,smileys-emotion,heart,blue heart,"143, blue, emotion, heart, ily, love, romance",,Laura Humpfer,2018-04-18,,,,,0.6,159
+🩵,1FA75,smileys-emotion,heart,light blue heart,"143, blue, cute, cyan, emotion, heart, ily, light, like, love, sky, special, teal",,Kira Lehmann,2023-10-25,,,,,15,160
+💜,1F49C,smileys-emotion,heart,purple heart,"143, bestest, emotion, heart, ily, love, purple",,Laura Humpfer,2018-04-18,,,,,0.6,161
+🤎,1F90E,smileys-emotion,heart,brown heart,"143, brown, heart",,Laura Dworatschek,2019-05-06,,,,,12,162
+🖤,1F5A4,smileys-emotion,heart,black heart,"black, evil, heart, wicked",,Laura Humpfer,2018-04-18,,,,,3,163
+🩶,1FA76,smileys-emotion,heart,grey heart,"143, emotion, gray, grey, heart, ily, love, silver, slate, special",,Jasmin Fassler,2023-10-25,,,,,15,164
+🤍,1F90D,smileys-emotion,heart,white heart,"143, heart, white",,Laura Dworatschek,2019-05-06,,,,,12,165
+💋,1F48B,smileys-emotion,emotion,kiss mark,"dating, emotion, heart, kiss, kissing, lips, mark, romance, sexy",,Laura Humpfer,2018-04-18,,,,,0.6,166
+💯,1F4AF,smileys-emotion,emotion,hundred points,"100, a+, agree, clearly, definitely, faithful, fleek, full, hundred, keep, perfect, point, score, true, truth, yup",,Jose Avila,2018-04-18,,,,,0.6,167
+💢,1F4A2,smileys-emotion,emotion,anger symbol,"anger, angry, comic, mad, symbol, upset",,Anne Frauendorf,2018-11-16,,,,,0.6,168
+💥,1F4A5,smileys-emotion,emotion,collision,"bomb, boom, collide, comic, explode",,Laura Humpfer,2018-04-18,,,,,0.6,169
+💫,1F4AB,smileys-emotion,emotion,dizzy,"comic, shining, shooting, star, stars",,Laura Humpfer,2018-04-18,,,,,0.6,170
+💦,1F4A6,smileys-emotion,emotion,sweat droplets,"comic, drip, droplet, droplets, drops, splashing, squirt, sweat, water, wet, work, workout",,Laura Humpfer,2018-04-18,,,,,0.6,171
+💨,1F4A8,smileys-emotion,emotion,dashing away,"away, cloud, comic, dash, dashing, fart, fast, go, gone, gotta, running, smoke",,Laura Humpfer,2018-04-18,,,,,0.6,172
+🕳️,1F573,smileys-emotion,emotion,hole,hole,,Laura Humpfer,2018-04-18,,,,,0.7,174
+💬,1F4AC,smileys-emotion,emotion,speech balloon,"balloon, bubble, comic, dialog, message, sms, speech, talk, text, typing",,Laura Humpfer,2018-04-18,,,,,0.6,175
+👁️‍🗨️,1F441-FE0F-200D-1F5E8-FE0F,smileys-emotion,emotion,eye in speech bubble,"balloon, bubble, eye, speech, witness",,Julian Grüneberg,2018-04-18,,,,,2,176
+🗨️,1F5E8,smileys-emotion,emotion,left speech bubble,"balloon, bubble, dialog, left, speech",,Laura Humpfer,2018-04-18,,,,,2,181
+🗯️,1F5EF,smileys-emotion,emotion,right anger bubble,"anger, angry, balloon, bubble, mad, right",,Laura Humpfer,2018-04-18,,,,,0.7,183
+💭,1F4AD,smileys-emotion,emotion,thought balloon,"balloon, bubble, cartoon, cloud, comic, daydream, decisions, dream, idea, invent, invention, realize, think, thoughts, wonder",,Laura Humpfer,2018-04-18,,,,,1,184
+💤,1F4A4,smileys-emotion,emotion,ZZZ,"comic, good, goodnight, night, sleep, sleeping, sleepy, tired, zzz",,Laura Humpfer,2018-04-18,,,,,0.6,185
+👋,1F44B,people-body,hand-fingers-open,waving hand,"bye, cya, g2g, greetings, gtg, hand, hello, hey, hi, later, outtie, ttfn, ttyl, wave, yo, you",,Julian Grüneberg,2018-04-18,,single,👋,1F44B,0.6,186
+👋🏻,1F44B-1F3FB,people-body,hand-fingers-open,waving hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👋,1F44B,1,187
+👋🏼,1F44B-1F3FC,people-body,hand-fingers-open,waving hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👋,1F44B,1,188
+👋🏽,1F44B-1F3FD,people-body,hand-fingers-open,waving hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👋,1F44B,1,189
+👋🏾,1F44B-1F3FE,people-body,hand-fingers-open,waving hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👋,1F44B,1,190
+👋🏿,1F44B-1F3FF,people-body,hand-fingers-open,waving hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👋,1F44B,1,191
+🤚,1F91A,people-body,hand-fingers-open,raised back of hand,"back, backhand, hand, raised",,Julian Grüneberg,2018-04-18,,single,🤚,1F91A,3,192
+🤚🏻,1F91A-1F3FB,people-body,hand-fingers-open,raised back of hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤚,1F91A,3,193
+🤚🏼,1F91A-1F3FC,people-body,hand-fingers-open,raised back of hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤚,1F91A,3,194
+🤚🏽,1F91A-1F3FD,people-body,hand-fingers-open,raised back of hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤚,1F91A,3,195
+🤚🏾,1F91A-1F3FE,people-body,hand-fingers-open,raised back of hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤚,1F91A,3,196
+🤚🏿,1F91A-1F3FF,people-body,hand-fingers-open,raised back of hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤚,1F91A,3,197
+🖐️,1F590,people-body,hand-fingers-open,hand with fingers splayed,"finger, fingers, hand, raised, splayed, stop",,Aileen Gedrat,2022-07-01,,single,🖐️,1F590,0.7,199
+🖐🏻,1F590-1F3FB,people-body,hand-fingers-open,hand with fingers splayed: light skin tone,,,Aileen Gedrat,2022-07-01,1,single,🖐️,1F590,1,200
+🖐🏼,1F590-1F3FC,people-body,hand-fingers-open,hand with fingers splayed: medium-light skin tone,,,Aileen Gedrat,2022-07-01,2,single,🖐️,1F590,1,201
+🖐🏽,1F590-1F3FD,people-body,hand-fingers-open,hand with fingers splayed: medium skin tone,,,Aileen Gedrat,2022-07-01,3,single,🖐️,1F590,1,202
+🖐🏾,1F590-1F3FE,people-body,hand-fingers-open,hand with fingers splayed: medium-dark skin tone,,,Aileen Gedrat,2022-07-01,4,single,🖐️,1F590,1,203
+🖐🏿,1F590-1F3FF,people-body,hand-fingers-open,hand with fingers splayed: dark skin tone,,,Aileen Gedrat,2022-07-01,5,single,🖐️,1F590,1,204
+✋️,270B,people-body,hand-fingers-open,raised hand,"5, five, hand, high, raised, stop",,Julian Grüneberg,2018-04-18,,single,✋️,270B,0.6,205
+✋🏻,270B-1F3FB,people-body,hand-fingers-open,raised hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✋️,270B,1,206
+✋🏼,270B-1F3FC,people-body,hand-fingers-open,raised hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✋️,270B,1,207
+✋🏽,270B-1F3FD,people-body,hand-fingers-open,raised hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✋️,270B,1,208
+✋🏾,270B-1F3FE,people-body,hand-fingers-open,raised hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✋️,270B,1,209
+✋🏿,270B-1F3FF,people-body,hand-fingers-open,raised hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✋️,270B,1,210
+🖖,1F596,people-body,hand-fingers-open,vulcan salute,"finger, hand, hands, salute, vulcan",,Julian Grüneberg,2018-04-18,,single,🖖,1F596,1,211
+🖖🏻,1F596-1F3FB,people-body,hand-fingers-open,vulcan salute: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🖖,1F596,1,212
+🖖🏼,1F596-1F3FC,people-body,hand-fingers-open,vulcan salute: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🖖,1F596,1,213
+🖖🏽,1F596-1F3FD,people-body,hand-fingers-open,vulcan salute: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🖖,1F596,1,214
+🖖🏾,1F596-1F3FE,people-body,hand-fingers-open,vulcan salute: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🖖,1F596,1,215
+🖖🏿,1F596-1F3FF,people-body,hand-fingers-open,vulcan salute: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🖖,1F596,1,216
+🫱,1FAF1,people-body,hand-fingers-open,rightwards hand,"hand, handshake, hold, reach, right, rightward, rightwards, shake",,Pia Stockhaus,2022-05-09,,single,🫱,1FAF1,14,217
+🫱🏻,1FAF1-1F3FB,people-body,hand-fingers-open,rightwards hand: light skin tone,,,Pia Stockhaus,2022-05-09,1,single,🫱,1FAF1,14,218
+🫱🏼,1FAF1-1F3FC,people-body,hand-fingers-open,rightwards hand: medium-light skin tone,,,Pia Stockhaus,2022-05-09,2,single,🫱,1FAF1,14,219
+🫱🏽,1FAF1-1F3FD,people-body,hand-fingers-open,rightwards hand: medium skin tone,,,Pia Stockhaus,2022-05-09,3,single,🫱,1FAF1,14,220
+🫱🏾,1FAF1-1F3FE,people-body,hand-fingers-open,rightwards hand: medium-dark skin tone,,,Pia Stockhaus,2022-05-09,4,single,🫱,1FAF1,14,221
+🫱🏿,1FAF1-1F3FF,people-body,hand-fingers-open,rightwards hand: dark skin tone,,,Pia Stockhaus,2022-05-09,5,single,🫱,1FAF1,14,222
+🫲,1FAF2,people-body,hand-fingers-open,leftwards hand,"hand, handshake, hold, left, leftward, leftwards, reach, shake",,Pia Stockhaus,2022-05-09,,single,🫲,1FAF2,14,223
+🫲🏻,1FAF2-1F3FB,people-body,hand-fingers-open,leftwards hand: light skin tone,,,Pia Stockhaus,2022-05-09,1,single,🫲,1FAF2,14,224
+🫲🏼,1FAF2-1F3FC,people-body,hand-fingers-open,leftwards hand: medium-light skin tone,,,Pia Stockhaus,2022-05-09,2,single,🫲,1FAF2,14,225
+🫲🏽,1FAF2-1F3FD,people-body,hand-fingers-open,leftwards hand: medium skin tone,,,Pia Stockhaus,2022-05-09,3,single,🫲,1FAF2,14,226
+🫲🏾,1FAF2-1F3FE,people-body,hand-fingers-open,leftwards hand: medium-dark skin tone,,,Pia Stockhaus,2022-05-09,4,single,🫲,1FAF2,14,227
+🫲🏿,1FAF2-1F3FF,people-body,hand-fingers-open,leftwards hand: dark skin tone,,,Pia Stockhaus,2022-05-09,5,single,🫲,1FAF2,14,228
+🫳,1FAF3,people-body,hand-fingers-open,palm down hand,"dismiss, down, drop, dropped, hand, palm, pick, shoo, up",,Pia Stockhaus,2022-05-09,,single,🫳,1FAF3,14,229
+🫳🏻,1FAF3-1F3FB,people-body,hand-fingers-open,palm down hand: light skin tone,,,Pia Stockhaus,2022-05-09,1,single,🫳,1FAF3,14,230
+🫳🏼,1FAF3-1F3FC,people-body,hand-fingers-open,palm down hand: medium-light skin tone,,,Pia Stockhaus,2022-05-09,2,single,🫳,1FAF3,14,231
+🫳🏽,1FAF3-1F3FD,people-body,hand-fingers-open,palm down hand: medium skin tone,,,Pia Stockhaus,2022-05-09,3,single,🫳,1FAF3,14,232
+🫳🏾,1FAF3-1F3FE,people-body,hand-fingers-open,palm down hand: medium-dark skin tone,,,Pia Stockhaus,2022-05-09,4,single,🫳,1FAF3,14,233
+🫳🏿,1FAF3-1F3FF,people-body,hand-fingers-open,palm down hand: dark skin tone,,,Pia Stockhaus,2022-05-09,5,single,🫳,1FAF3,14,234
+🫴,1FAF4,people-body,hand-fingers-open,palm up hand,"beckon, catch, come, hand, hold, know, lift, me, offer, palm, tell",,Pia Stockhaus,2022-05-09,,single,🫴,1FAF4,14,235
+🫴🏻,1FAF4-1F3FB,people-body,hand-fingers-open,palm up hand: light skin tone,,,Pia Stockhaus,2022-05-09,1,single,🫴,1FAF4,14,236
+🫴🏼,1FAF4-1F3FC,people-body,hand-fingers-open,palm up hand: medium-light skin tone,,,Pia Stockhaus,2022-05-09,2,single,🫴,1FAF4,14,237
+🫴🏽,1FAF4-1F3FD,people-body,hand-fingers-open,palm up hand: medium skin tone,,,Pia Stockhaus,2022-05-09,3,single,🫴,1FAF4,14,238
+🫴🏾,1FAF4-1F3FE,people-body,hand-fingers-open,palm up hand: medium-dark skin tone,,,Pia Stockhaus,2022-05-09,4,single,🫴,1FAF4,14,239
+🫴🏿,1FAF4-1F3FF,people-body,hand-fingers-open,palm up hand: dark skin tone,,,Pia Stockhaus,2022-05-09,5,single,🫴,1FAF4,14,240
+🫷,1FAF7,people-body,hand-fingers-open,leftwards pushing hand,"block, five, halt, hand, high, hold, leftward, leftwards, pause, push, pushing, refuse, slap, stop, wait",,Jasmin Fassler,2023-10-25,,single,🫷,1FAF7,15,241
+🫷🏻,1FAF7-1F3FB,people-body,hand-fingers-open,leftwards pushing hand: light skin tone,,,Jasmin Fassler,2023-10-25,1,single,🫷,1FAF7,15,242
+🫷🏼,1FAF7-1F3FC,people-body,hand-fingers-open,leftwards pushing hand: medium-light skin tone,,,Jasmin Fassler,2023-10-25,2,single,🫷,1FAF7,15,243
+🫷🏽,1FAF7-1F3FD,people-body,hand-fingers-open,leftwards pushing hand: medium skin tone,,,Jasmin Fassler,2023-10-25,3,single,🫷,1FAF7,15,244
+🫷🏾,1FAF7-1F3FE,people-body,hand-fingers-open,leftwards pushing hand: medium-dark skin tone,,,Jasmin Fassler,2023-10-25,4,single,🫷,1FAF7,15,245
+🫷🏿,1FAF7-1F3FF,people-body,hand-fingers-open,leftwards pushing hand: dark skin tone,,,Jasmin Fassler,2023-10-25,5,single,🫷,1FAF7,15,246
+🫸,1FAF8,people-body,hand-fingers-open,rightwards pushing hand,"block, five, halt, hand, high, hold, pause, push, pushing, refuse, rightward, rightwards, slap, stop, wait",,Paul Mang,2023-10-25,,single,🫸,1FAF8,15,247
+🫸🏻,1FAF8-1F3FB,people-body,hand-fingers-open,rightwards pushing hand: light skin tone,,,Paul Mang,2023-10-25,1,single,🫸,1FAF8,15,248
+🫸🏼,1FAF8-1F3FC,people-body,hand-fingers-open,rightwards pushing hand: medium-light skin tone,,,Paul Mang,2023-10-25,2,single,🫸,1FAF8,15,249
+🫸🏽,1FAF8-1F3FD,people-body,hand-fingers-open,rightwards pushing hand: medium skin tone,,,Paul Mang,2023-10-25,3,single,🫸,1FAF8,15,250
+🫸🏾,1FAF8-1F3FE,people-body,hand-fingers-open,rightwards pushing hand: medium-dark skin tone,,,Paul Mang,2023-10-25,4,single,🫸,1FAF8,15,251
+🫸🏿,1FAF8-1F3FF,people-body,hand-fingers-open,rightwards pushing hand: dark skin tone,,,Paul Mang,2023-10-25,5,single,🫸,1FAF8,15,252
+👌,1F44C,people-body,hand-fingers-partial,OK hand,"awesome, bet, dope, fleek, fosho, got, gotcha, hand, legit, ok, okay, pinch, rad, sure, sweet, three",,Julian Grüneberg,2018-04-18,,single,👌,1F44C,0.6,253
+👌🏻,1F44C-1F3FB,people-body,hand-fingers-partial,OK hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👌,1F44C,1,254
+👌🏼,1F44C-1F3FC,people-body,hand-fingers-partial,OK hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👌,1F44C,1,255
+👌🏽,1F44C-1F3FD,people-body,hand-fingers-partial,OK hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👌,1F44C,1,256
+👌🏾,1F44C-1F3FE,people-body,hand-fingers-partial,OK hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👌,1F44C,1,257
+👌🏿,1F44C-1F3FF,people-body,hand-fingers-partial,OK hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👌,1F44C,1,258
+🤌,1F90C,people-body,hand-fingers-partial,pinched fingers,"fingers, gesture, hand, hold, huh, interrogation, patience, pinched, relax, sarcastic, ugh, what, zip",,Liz Bravo,2020-09-26,,single,🤌,1F90C,13,259
+🤌🏻,1F90C-1F3FB,people-body,hand-fingers-partial,pinched fingers: light skin tone,,,Liz Bravo,2020-09-26,1,single,🤌,1F90C,13,260
+🤌🏼,1F90C-1F3FC,people-body,hand-fingers-partial,pinched fingers: medium-light skin tone,,,Liz Bravo,2020-09-26,2,single,🤌,1F90C,13,261
+🤌🏽,1F90C-1F3FD,people-body,hand-fingers-partial,pinched fingers: medium skin tone,,,Liz Bravo,2020-09-26,3,single,🤌,1F90C,13,262
+🤌🏾,1F90C-1F3FE,people-body,hand-fingers-partial,pinched fingers: medium-dark skin tone,,,Liz Bravo,2020-09-26,4,single,🤌,1F90C,13,263
+🤌🏿,1F90C-1F3FF,people-body,hand-fingers-partial,pinched fingers: dark skin tone,,,Liz Bravo,2020-09-26,5,single,🤌,1F90C,13,264
+🤏,1F90F,people-body,hand-fingers-partial,pinching hand,"amount, bit, fingers, hand, little, pinching, small, sort",,Laura Dworatschek,2019-05-06,,single,🤏,1F90F,12,265
+🤏🏻,1F90F-1F3FB,people-body,hand-fingers-partial,pinching hand: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🤏,1F90F,12,266
+🤏🏼,1F90F-1F3FC,people-body,hand-fingers-partial,pinching hand: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🤏,1F90F,12,267
+🤏🏽,1F90F-1F3FD,people-body,hand-fingers-partial,pinching hand: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🤏,1F90F,12,268
+🤏🏾,1F90F-1F3FE,people-body,hand-fingers-partial,pinching hand: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🤏,1F90F,12,269
+🤏🏿,1F90F-1F3FF,people-body,hand-fingers-partial,pinching hand: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🤏,1F90F,12,270
+✌️,270C,people-body,hand-fingers-partial,victory hand,"hand, peace, v, victory",,Julian Grüneberg,2018-04-18,,single,✌️,270C,0.6,272
+✌🏻,270C-1F3FB,people-body,hand-fingers-partial,victory hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✌️,270C,1,273
+✌🏼,270C-1F3FC,people-body,hand-fingers-partial,victory hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✌️,270C,1,274
+✌🏽,270C-1F3FD,people-body,hand-fingers-partial,victory hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✌️,270C,1,275
+✌🏾,270C-1F3FE,people-body,hand-fingers-partial,victory hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✌️,270C,1,276
+✌🏿,270C-1F3FF,people-body,hand-fingers-partial,victory hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✌️,270C,1,277
+🤞,1F91E,people-body,hand-fingers-partial,crossed fingers,"cross, crossed, finger, fingers, hand, luck",,Julian Grüneberg,2018-04-18,,single,🤞,1F91E,3,278
+🤞🏻,1F91E-1F3FB,people-body,hand-fingers-partial,crossed fingers: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤞,1F91E,3,279
+🤞🏼,1F91E-1F3FC,people-body,hand-fingers-partial,crossed fingers: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤞,1F91E,3,280
+🤞🏽,1F91E-1F3FD,people-body,hand-fingers-partial,crossed fingers: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤞,1F91E,3,281
+🤞🏾,1F91E-1F3FE,people-body,hand-fingers-partial,crossed fingers: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤞,1F91E,3,282
+🤞🏿,1F91E-1F3FF,people-body,hand-fingers-partial,crossed fingers: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤞,1F91E,3,283
+🫰,1FAF0,people-body,hand-fingers-partial,hand with index finger and thumb crossed,"<3, crossed, expensive, finger, hand, heart, index, love, money, snap, thumb",,Niklas Kuntz,2022-05-09,,single,🫰,1FAF0,14,284
+🫰🏻,1FAF0-1F3FB,people-body,hand-fingers-partial,hand with index finger and thumb crossed: light skin tone,,,Niklas Kuntz,2022-05-09,1,single,🫰,1FAF0,14,285
+🫰🏼,1FAF0-1F3FC,people-body,hand-fingers-partial,hand with index finger and thumb crossed: medium-light skin tone,,,Niklas Kuntz,2022-05-09,2,single,🫰,1FAF0,14,286
+🫰🏽,1FAF0-1F3FD,people-body,hand-fingers-partial,hand with index finger and thumb crossed: medium skin tone,,,Niklas Kuntz,2022-05-09,3,single,🫰,1FAF0,14,287
+🫰🏾,1FAF0-1F3FE,people-body,hand-fingers-partial,hand with index finger and thumb crossed: medium-dark skin tone,,,Niklas Kuntz,2022-05-09,4,single,🫰,1FAF0,14,288
+🫰🏿,1FAF0-1F3FF,people-body,hand-fingers-partial,hand with index finger and thumb crossed: dark skin tone,,,Niklas Kuntz,2022-05-09,5,single,🫰,1FAF0,14,289
+🤟,1F91F,people-body,hand-fingers-partial,love-you gesture,"fingers, gesture, hand, ily, love, love-you, three, you",,Julian Grüneberg,2018-04-18,,single,🤟,1F91F,5,290
+🤟🏻,1F91F-1F3FB,people-body,hand-fingers-partial,love-you gesture: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤟,1F91F,5,291
+🤟🏼,1F91F-1F3FC,people-body,hand-fingers-partial,love-you gesture: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤟,1F91F,5,292
+🤟🏽,1F91F-1F3FD,people-body,hand-fingers-partial,love-you gesture: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤟,1F91F,5,293
+🤟🏾,1F91F-1F3FE,people-body,hand-fingers-partial,love-you gesture: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤟,1F91F,5,294
+🤟🏿,1F91F-1F3FF,people-body,hand-fingers-partial,love-you gesture: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤟,1F91F,5,295
+🤘,1F918,people-body,hand-fingers-partial,sign of the horns,"finger, hand, horns, rock-on, sign",,Julian Grüneberg,2018-04-18,,single,🤘,1F918,1,296
+🤘🏻,1F918-1F3FB,people-body,hand-fingers-partial,sign of the horns: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤘,1F918,1,297
+🤘🏼,1F918-1F3FC,people-body,hand-fingers-partial,sign of the horns: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤘,1F918,1,298
+🤘🏽,1F918-1F3FD,people-body,hand-fingers-partial,sign of the horns: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤘,1F918,1,299
+🤘🏾,1F918-1F3FE,people-body,hand-fingers-partial,sign of the horns: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤘,1F918,1,300
+🤘🏿,1F918-1F3FF,people-body,hand-fingers-partial,sign of the horns: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤘,1F918,1,301
+🤙,1F919,people-body,hand-fingers-partial,call me hand,"call, hand, hang, loose, me, shaka",,Julian Grüneberg,2018-04-18,,single,🤙,1F919,3,302
+🤙🏻,1F919-1F3FB,people-body,hand-fingers-partial,call me hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤙,1F919,3,303
+🤙🏼,1F919-1F3FC,people-body,hand-fingers-partial,call me hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤙,1F919,3,304
+🤙🏽,1F919-1F3FD,people-body,hand-fingers-partial,call me hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤙,1F919,3,305
+🤙🏾,1F919-1F3FE,people-body,hand-fingers-partial,call me hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤙,1F919,3,306
+🤙🏿,1F919-1F3FF,people-body,hand-fingers-partial,call me hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤙,1F919,3,307
+👈️,1F448,people-body,hand-single-finger,backhand index pointing left,"backhand, finger, hand, index, left, point, pointing",,Julian Grüneberg,2018-04-18,,single,👈️,1F448,0.6,308
+👈🏻,1F448-1F3FB,people-body,hand-single-finger,backhand index pointing left: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👈️,1F448,1,309
+👈🏼,1F448-1F3FC,people-body,hand-single-finger,backhand index pointing left: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👈️,1F448,1,310
+👈🏽,1F448-1F3FD,people-body,hand-single-finger,backhand index pointing left: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👈️,1F448,1,311
+👈🏾,1F448-1F3FE,people-body,hand-single-finger,backhand index pointing left: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👈️,1F448,1,312
+👈🏿,1F448-1F3FF,people-body,hand-single-finger,backhand index pointing left: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👈️,1F448,1,313
+👉️,1F449,people-body,hand-single-finger,backhand index pointing right,"backhand, finger, hand, index, point, pointing, right",,Julian Grüneberg,2018-04-18,,single,👉️,1F449,0.6,314
+👉🏻,1F449-1F3FB,people-body,hand-single-finger,backhand index pointing right: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👉️,1F449,1,315
+👉🏼,1F449-1F3FC,people-body,hand-single-finger,backhand index pointing right: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👉️,1F449,1,316
+👉🏽,1F449-1F3FD,people-body,hand-single-finger,backhand index pointing right: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👉️,1F449,1,317
+👉🏾,1F449-1F3FE,people-body,hand-single-finger,backhand index pointing right: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👉️,1F449,1,318
+👉🏿,1F449-1F3FF,people-body,hand-single-finger,backhand index pointing right: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👉️,1F449,1,319
+👆️,1F446,people-body,hand-single-finger,backhand index pointing up,"backhand, finger, hand, index, point, pointing, up",,Julian Grüneberg,2018-04-18,,single,👆️,1F446,0.6,320
+👆🏻,1F446-1F3FB,people-body,hand-single-finger,backhand index pointing up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👆️,1F446,1,321
+👆🏼,1F446-1F3FC,people-body,hand-single-finger,backhand index pointing up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👆️,1F446,1,322
+👆🏽,1F446-1F3FD,people-body,hand-single-finger,backhand index pointing up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👆️,1F446,1,323
+👆🏾,1F446-1F3FE,people-body,hand-single-finger,backhand index pointing up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👆️,1F446,1,324
+👆🏿,1F446-1F3FF,people-body,hand-single-finger,backhand index pointing up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👆️,1F446,1,325
+🖕,1F595,people-body,hand-single-finger,middle finger,"finger, hand, middle",,Julian Grüneberg,2018-04-18,,single,🖕,1F595,1,326
+🖕🏻,1F595-1F3FB,people-body,hand-single-finger,middle finger: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🖕,1F595,1,327
+🖕🏼,1F595-1F3FC,people-body,hand-single-finger,middle finger: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🖕,1F595,1,328
+🖕🏽,1F595-1F3FD,people-body,hand-single-finger,middle finger: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🖕,1F595,1,329
+🖕🏾,1F595-1F3FE,people-body,hand-single-finger,middle finger: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🖕,1F595,1,330
+🖕🏿,1F595-1F3FF,people-body,hand-single-finger,middle finger: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🖕,1F595,1,331
+👇️,1F447,people-body,hand-single-finger,backhand index pointing down,"backhand, down, finger, hand, index, point, pointing",,Julian Grüneberg,2018-04-18,,single,👇️,1F447,0.6,332
+👇🏻,1F447-1F3FB,people-body,hand-single-finger,backhand index pointing down: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👇️,1F447,1,333
+👇🏼,1F447-1F3FC,people-body,hand-single-finger,backhand index pointing down: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👇️,1F447,1,334
+👇🏽,1F447-1F3FD,people-body,hand-single-finger,backhand index pointing down: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👇️,1F447,1,335
+👇🏾,1F447-1F3FE,people-body,hand-single-finger,backhand index pointing down: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👇️,1F447,1,336
+👇🏿,1F447-1F3FF,people-body,hand-single-finger,backhand index pointing down: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👇️,1F447,1,337
+☝️,261D,people-body,hand-single-finger,index pointing up,"finger, hand, index, point, pointing, this, up",,Julian Grüneberg,2018-04-18,,single,☝️,261D,0.6,339
+☝🏻,261D-1F3FB,people-body,hand-single-finger,index pointing up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,☝️,261D,1,340
+☝🏼,261D-1F3FC,people-body,hand-single-finger,index pointing up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,☝️,261D,1,341
+☝🏽,261D-1F3FD,people-body,hand-single-finger,index pointing up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,☝️,261D,1,342
+☝🏾,261D-1F3FE,people-body,hand-single-finger,index pointing up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,☝️,261D,1,343
+☝🏿,261D-1F3FF,people-body,hand-single-finger,index pointing up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,☝️,261D,1,344
+🫵,1FAF5,people-body,hand-single-finger,index pointing at the viewer,"at, finger, hand, index, pointing, poke, viewer, you",,Aileen Gedrat,2022-05-09,,single,🫵,1FAF5,14,345
+🫵🏻,1FAF5-1F3FB,people-body,hand-single-finger,index pointing at the viewer: light skin tone,,,Aileen Gedrat,2022-05-09,1,single,🫵,1FAF5,14,346
+🫵🏼,1FAF5-1F3FC,people-body,hand-single-finger,index pointing at the viewer: medium-light skin tone,,,Aileen Gedrat,2022-05-09,2,single,🫵,1FAF5,14,347
+🫵🏽,1FAF5-1F3FD,people-body,hand-single-finger,index pointing at the viewer: medium skin tone,,,Aileen Gedrat,2022-05-09,3,single,🫵,1FAF5,14,348
+🫵🏾,1FAF5-1F3FE,people-body,hand-single-finger,index pointing at the viewer: medium-dark skin tone,,,Aileen Gedrat,2022-05-09,4,single,🫵,1FAF5,14,349
+🫵🏿,1FAF5-1F3FF,people-body,hand-single-finger,index pointing at the viewer: dark skin tone,,,Aileen Gedrat,2022-05-09,5,single,🫵,1FAF5,14,350
+👍️,1F44D,people-body,hand-fingers-closed,thumbs up,"+1, good, hand, like, thumb, up, yes",,Julian Grüneberg,2018-04-18,,single,👍️,1F44D,0.6,351
+👍🏻,1F44D-1F3FB,people-body,hand-fingers-closed,thumbs up: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👍️,1F44D,1,352
+👍🏼,1F44D-1F3FC,people-body,hand-fingers-closed,thumbs up: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👍️,1F44D,1,353
+👍🏽,1F44D-1F3FD,people-body,hand-fingers-closed,thumbs up: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👍️,1F44D,1,354
+👍🏾,1F44D-1F3FE,people-body,hand-fingers-closed,thumbs up: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👍️,1F44D,1,355
+👍🏿,1F44D-1F3FF,people-body,hand-fingers-closed,thumbs up: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👍️,1F44D,1,356
+👎️,1F44E,people-body,hand-fingers-closed,thumbs down,"-1, bad, dislike, down, good, hand, no, nope, thumb, thumbs",,Julian Grüneberg,2018-04-18,,single,👎️,1F44E,0.6,357
+👎🏻,1F44E-1F3FB,people-body,hand-fingers-closed,thumbs down: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👎️,1F44E,1,358
+👎🏼,1F44E-1F3FC,people-body,hand-fingers-closed,thumbs down: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👎️,1F44E,1,359
+👎🏽,1F44E-1F3FD,people-body,hand-fingers-closed,thumbs down: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👎️,1F44E,1,360
+👎🏾,1F44E-1F3FE,people-body,hand-fingers-closed,thumbs down: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👎️,1F44E,1,361
+👎🏿,1F44E-1F3FF,people-body,hand-fingers-closed,thumbs down: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👎️,1F44E,1,362
+✊️,270A,people-body,hand-fingers-closed,raised fist,"clenched, fist, hand, punch, raised, solidarity",,Julian Grüneberg,2018-04-18,,single,✊️,270A,0.6,363
+✊🏻,270A-1F3FB,people-body,hand-fingers-closed,raised fist: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✊️,270A,1,364
+✊🏼,270A-1F3FC,people-body,hand-fingers-closed,raised fist: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✊️,270A,1,365
+✊🏽,270A-1F3FD,people-body,hand-fingers-closed,raised fist: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✊️,270A,1,366
+✊🏾,270A-1F3FE,people-body,hand-fingers-closed,raised fist: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✊️,270A,1,367
+✊🏿,270A-1F3FF,people-body,hand-fingers-closed,raised fist: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✊️,270A,1,368
+👊,1F44A,people-body,hand-fingers-closed,oncoming fist,"absolutely, agree, boom, bro, bruh, bump, clenched, correct, fist, hand, knuckle, oncoming, pound, punch, rock, ttyl",,Julian Grüneberg,2018-04-18,,single,👊,1F44A,0.6,369
+👊🏻,1F44A-1F3FB,people-body,hand-fingers-closed,oncoming fist: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👊,1F44A,1,370
+👊🏼,1F44A-1F3FC,people-body,hand-fingers-closed,oncoming fist: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👊,1F44A,1,371
+👊🏽,1F44A-1F3FD,people-body,hand-fingers-closed,oncoming fist: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👊,1F44A,1,372
+👊🏾,1F44A-1F3FE,people-body,hand-fingers-closed,oncoming fist: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👊,1F44A,1,373
+👊🏿,1F44A-1F3FF,people-body,hand-fingers-closed,oncoming fist: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👊,1F44A,1,374
+🤛,1F91B,people-body,hand-fingers-closed,left-facing fist,"fist, left-facing, leftwards",,Julian Grüneberg,2018-04-18,,single,🤛,1F91B,3,375
+🤛🏻,1F91B-1F3FB,people-body,hand-fingers-closed,left-facing fist: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤛,1F91B,3,376
+🤛🏼,1F91B-1F3FC,people-body,hand-fingers-closed,left-facing fist: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤛,1F91B,3,377
+🤛🏽,1F91B-1F3FD,people-body,hand-fingers-closed,left-facing fist: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤛,1F91B,3,378
+🤛🏾,1F91B-1F3FE,people-body,hand-fingers-closed,left-facing fist: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤛,1F91B,3,379
+🤛🏿,1F91B-1F3FF,people-body,hand-fingers-closed,left-facing fist: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤛,1F91B,3,380
+🤜,1F91C,people-body,hand-fingers-closed,right-facing fist,"fist, right-facing, rightwards",,Julian Grüneberg,2018-04-18,,single,🤜,1F91C,3,381
+🤜🏻,1F91C-1F3FB,people-body,hand-fingers-closed,right-facing fist: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤜,1F91C,3,382
+🤜🏼,1F91C-1F3FC,people-body,hand-fingers-closed,right-facing fist: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤜,1F91C,3,383
+🤜🏽,1F91C-1F3FD,people-body,hand-fingers-closed,right-facing fist: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤜,1F91C,3,384
+🤜🏾,1F91C-1F3FE,people-body,hand-fingers-closed,right-facing fist: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤜,1F91C,3,385
+🤜🏿,1F91C-1F3FF,people-body,hand-fingers-closed,right-facing fist: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤜,1F91C,3,386
+👏,1F44F,people-body,hands,clapping hands,"applause, approval, awesome, clap, congrats, congratulations, excited, good, great, hand, homie, job, nice, prayed, well, yay",,Julian Grüneberg,2018-04-18,,single,👏,1F44F,0.6,387
+👏🏻,1F44F-1F3FB,people-body,hands,clapping hands: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👏,1F44F,1,388
+👏🏼,1F44F-1F3FC,people-body,hands,clapping hands: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👏,1F44F,1,389
+👏🏽,1F44F-1F3FD,people-body,hands,clapping hands: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👏,1F44F,1,390
+👏🏾,1F44F-1F3FE,people-body,hands,clapping hands: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👏,1F44F,1,391
+👏🏿,1F44F-1F3FF,people-body,hands,clapping hands: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👏,1F44F,1,392
+🙌,1F64C,people-body,hands,raising hands,"celebration, gesture, hand, hands, hooray, praise, raised, raising",,Julian Grüneberg,2018-04-18,,single,🙌,1F64C,0.6,393
+🙌🏻,1F64C-1F3FB,people-body,hands,raising hands: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🙌,1F64C,1,394
+🙌🏼,1F64C-1F3FC,people-body,hands,raising hands: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🙌,1F64C,1,395
+🙌🏽,1F64C-1F3FD,people-body,hands,raising hands: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🙌,1F64C,1,396
+🙌🏾,1F64C-1F3FE,people-body,hands,raising hands: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🙌,1F64C,1,397
+🙌🏿,1F64C-1F3FF,people-body,hands,raising hands: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🙌,1F64C,1,398
+🫶,1FAF6,people-body,hands,heart hands,"<3, hands, heart, love, you",,Alan Seng,2022-05-09,,single,🫶,1FAF6,14,399
+🫶🏻,1FAF6-1F3FB,people-body,hands,heart hands: light skin tone,,,Alan Seng,2022-05-09,1,single,🫶,1FAF6,14,400
+🫶🏼,1FAF6-1F3FC,people-body,hands,heart hands: medium-light skin tone,,,Alan Seng,2022-05-09,2,single,🫶,1FAF6,14,401
+🫶🏽,1FAF6-1F3FD,people-body,hands,heart hands: medium skin tone,,,Alan Seng,2022-05-09,3,single,🫶,1FAF6,14,402
+🫶🏾,1FAF6-1F3FE,people-body,hands,heart hands: medium-dark skin tone,,,Alan Seng,2022-05-09,4,single,🫶,1FAF6,14,403
+🫶🏿,1FAF6-1F3FF,people-body,hands,heart hands: dark skin tone,,,Alan Seng,2022-05-09,5,single,🫶,1FAF6,14,404
+👐,1F450,people-body,hands,open hands,"hand, hands, hug, jazz, open, swerve",,Julian Grüneberg,2018-04-18,,single,👐,1F450,0.6,405
+👐🏻,1F450-1F3FB,people-body,hands,open hands: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👐,1F450,1,406
+👐🏼,1F450-1F3FC,people-body,hands,open hands: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👐,1F450,1,407
+👐🏽,1F450-1F3FD,people-body,hands,open hands: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👐,1F450,1,408
+👐🏾,1F450-1F3FE,people-body,hands,open hands: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👐,1F450,1,409
+👐🏿,1F450-1F3FF,people-body,hands,open hands: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👐,1F450,1,410
+🤲,1F932,people-body,hands,palms up together,"cupped, dua, hands, palms, pray, prayer, together, up, wish",,Julian Grüneberg,2018-04-18,,single,🤲,1F932,5,411
+🤲🏻,1F932-1F3FB,people-body,hands,palms up together: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤲,1F932,5,412
+🤲🏼,1F932-1F3FC,people-body,hands,palms up together: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤲,1F932,5,413
+🤲🏽,1F932-1F3FD,people-body,hands,palms up together: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤲,1F932,5,414
+🤲🏾,1F932-1F3FE,people-body,hands,palms up together: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤲,1F932,5,415
+🤲🏿,1F932-1F3FF,people-body,hands,palms up together: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤲,1F932,5,416
+🤝,1F91D,people-body,hands,handshake,"agreement, deal, hand, meeting, shake",,Julian Grüneberg,2018-04-18,,single,🤝,1F91D,3,417
+🤝🏻,1F91D-1F3FB,people-body,hands,handshake: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤝,1F91D,14,418
+🤝🏼,1F91D-1F3FC,people-body,hands,handshake: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤝,1F91D,14,419
+🤝🏽,1F91D-1F3FD,people-body,hands,handshake: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤝,1F91D,14,420
+🤝🏾,1F91D-1F3FE,people-body,hands,handshake: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤝,1F91D,14,421
+🤝🏿,1F91D-1F3FF,people-body,hands,handshake: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤝,1F91D,14,422
+🫱🏻‍🫲🏼,1FAF1-1F3FB-200D-1FAF2-1F3FC,people-body,hands,"handshake: light skin tone, medium-light skin tone",,,Julian Grüneberg,2018-04-18,"1,2",multiple,🤝,1F91D,14,423
+🫱🏻‍🫲🏽,1FAF1-1F3FB-200D-1FAF2-1F3FD,people-body,hands,"handshake: light skin tone, medium skin tone",,,Julian Grüneberg,2018-04-18,"1,3",multiple,🤝,1F91D,14,424
+🫱🏻‍🫲🏾,1FAF1-1F3FB-200D-1FAF2-1F3FE,people-body,hands,"handshake: light skin tone, medium-dark skin tone",,,Julian Grüneberg,2018-04-18,"1,4",multiple,🤝,1F91D,14,425
+🫱🏻‍🫲🏿,1FAF1-1F3FB-200D-1FAF2-1F3FF,people-body,hands,"handshake: light skin tone, dark skin tone",,,Julian Grüneberg,2018-04-18,"1,5",multiple,🤝,1F91D,14,426
+🫱🏼‍🫲🏻,1FAF1-1F3FC-200D-1FAF2-1F3FB,people-body,hands,"handshake: medium-light skin tone, light skin tone",,,Julian Grüneberg,2018-04-18,"2,1",multiple,🤝,1F91D,14,427
+🫱🏼‍🫲🏽,1FAF1-1F3FC-200D-1FAF2-1F3FD,people-body,hands,"handshake: medium-light skin tone, medium skin tone",,,Julian Grüneberg,2018-04-18,"2,3",multiple,🤝,1F91D,14,428
+🫱🏼‍🫲🏾,1FAF1-1F3FC-200D-1FAF2-1F3FE,people-body,hands,"handshake: medium-light skin tone, medium-dark skin tone",,,Julian Grüneberg,2018-04-18,"2,4",multiple,🤝,1F91D,14,429
+🫱🏼‍🫲🏿,1FAF1-1F3FC-200D-1FAF2-1F3FF,people-body,hands,"handshake: medium-light skin tone, dark skin tone",,,Julian Grüneberg,2018-04-18,"2,5",multiple,🤝,1F91D,14,430
+🫱🏽‍🫲🏻,1FAF1-1F3FD-200D-1FAF2-1F3FB,people-body,hands,"handshake: medium skin tone, light skin tone",,,Julian Grüneberg,2018-04-18,"3,1",multiple,🤝,1F91D,14,431
+🫱🏽‍🫲🏼,1FAF1-1F3FD-200D-1FAF2-1F3FC,people-body,hands,"handshake: medium skin tone, medium-light skin tone",,,Julian Grüneberg,2018-04-18,"3,2",multiple,🤝,1F91D,14,432
+🫱🏽‍🫲🏾,1FAF1-1F3FD-200D-1FAF2-1F3FE,people-body,hands,"handshake: medium skin tone, medium-dark skin tone",,,Julian Grüneberg,2018-04-18,"3,4",multiple,🤝,1F91D,14,433
+🫱🏽‍🫲🏿,1FAF1-1F3FD-200D-1FAF2-1F3FF,people-body,hands,"handshake: medium skin tone, dark skin tone",,,Julian Grüneberg,2018-04-18,"3,5",multiple,🤝,1F91D,14,434
+🫱🏾‍🫲🏻,1FAF1-1F3FE-200D-1FAF2-1F3FB,people-body,hands,"handshake: medium-dark skin tone, light skin tone",,,Julian Grüneberg,2018-04-18,"4,1",multiple,🤝,1F91D,14,435
+🫱🏾‍🫲🏼,1FAF1-1F3FE-200D-1FAF2-1F3FC,people-body,hands,"handshake: medium-dark skin tone, medium-light skin tone",,,Julian Grüneberg,2018-04-18,"4,2",multiple,🤝,1F91D,14,436
+🫱🏾‍🫲🏽,1FAF1-1F3FE-200D-1FAF2-1F3FD,people-body,hands,"handshake: medium-dark skin tone, medium skin tone",,,Julian Grüneberg,2018-04-18,"4,3",multiple,🤝,1F91D,14,437
+🫱🏾‍🫲🏿,1FAF1-1F3FE-200D-1FAF2-1F3FF,people-body,hands,"handshake: medium-dark skin tone, dark skin tone",,,Julian Grüneberg,2018-04-18,"4,5",multiple,🤝,1F91D,14,438
+🫱🏿‍🫲🏻,1FAF1-1F3FF-200D-1FAF2-1F3FB,people-body,hands,"handshake: dark skin tone, light skin tone",,,Julian Grüneberg,2018-04-18,"5,1",multiple,🤝,1F91D,14,439
+🫱🏿‍🫲🏼,1FAF1-1F3FF-200D-1FAF2-1F3FC,people-body,hands,"handshake: dark skin tone, medium-light skin tone",,,Julian Grüneberg,2018-04-18,"5,2",multiple,🤝,1F91D,14,440
+🫱🏿‍🫲🏽,1FAF1-1F3FF-200D-1FAF2-1F3FD,people-body,hands,"handshake: dark skin tone, medium skin tone",,,Julian Grüneberg,2018-04-18,"5,3",multiple,🤝,1F91D,14,441
+🫱🏿‍🫲🏾,1FAF1-1F3FF-200D-1FAF2-1F3FE,people-body,hands,"handshake: dark skin tone, medium-dark skin tone",,,Julian Grüneberg,2018-04-18,"5,4",multiple,🤝,1F91D,14,442
+🙏,1F64F,people-body,hands,folded hands,"appreciate, ask, beg, blessed, bow, cmon, five, folded, gesture, hand, high, please, pray, thanks, thx",,Julian Grüneberg,2018-04-18,,single,🙏,1F64F,0.6,443
+🙏🏻,1F64F-1F3FB,people-body,hands,folded hands: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🙏,1F64F,1,444
+🙏🏼,1F64F-1F3FC,people-body,hands,folded hands: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🙏,1F64F,1,445
+🙏🏽,1F64F-1F3FD,people-body,hands,folded hands: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🙏,1F64F,1,446
+🙏🏾,1F64F-1F3FE,people-body,hands,folded hands: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🙏,1F64F,1,447
+🙏🏿,1F64F-1F3FF,people-body,hands,folded hands: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🙏,1F64F,1,448
+✍️,270D,people-body,hand-prop,writing hand,"hand, write, writing",,Julian Grüneberg,2018-04-18,,single,✍️,270D,0.7,450
+✍🏻,270D-1F3FB,people-body,hand-prop,writing hand: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,✍️,270D,1,451
+✍🏼,270D-1F3FC,people-body,hand-prop,writing hand: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,✍️,270D,1,452
+✍🏽,270D-1F3FD,people-body,hand-prop,writing hand: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,✍️,270D,1,453
+✍🏾,270D-1F3FE,people-body,hand-prop,writing hand: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,✍️,270D,1,454
+✍🏿,270D-1F3FF,people-body,hand-prop,writing hand: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,✍️,270D,1,455
+💅,1F485,people-body,hand-prop,nail polish,"bored, care, cosmetics, done, makeup, manicure, nail, polish, whatever",,Laura Schießer,2019-05-06,,single,💅,1F485,0.6,456
+💅🏻,1F485-1F3FB,people-body,hand-prop,nail polish: light skin tone,,,Laura Schießer,2019-05-06,1,single,💅,1F485,1,457
+💅🏼,1F485-1F3FC,people-body,hand-prop,nail polish: medium-light skin tone,,,Laura Schießer,2019-05-06,2,single,💅,1F485,1,458
+💅🏽,1F485-1F3FD,people-body,hand-prop,nail polish: medium skin tone,,,Laura Schießer,2019-05-06,3,single,💅,1F485,1,459
+💅🏾,1F485-1F3FE,people-body,hand-prop,nail polish: medium-dark skin tone,,,Laura Schießer,2019-05-06,4,single,💅,1F485,1,460
+💅🏿,1F485-1F3FF,people-body,hand-prop,nail polish: dark skin tone,,,Laura Schießer,2019-05-06,5,single,💅,1F485,1,461
+🤳,1F933,people-body,hand-prop,selfie,"camera, phone",,Julian Grüneberg,2018-04-18,,single,🤳,1F933,3,462
+🤳🏻,1F933-1F3FB,people-body,hand-prop,selfie: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,🤳,1F933,3,463
+🤳🏼,1F933-1F3FC,people-body,hand-prop,selfie: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,🤳,1F933,3,464
+🤳🏽,1F933-1F3FD,people-body,hand-prop,selfie: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,🤳,1F933,3,465
+🤳🏾,1F933-1F3FE,people-body,hand-prop,selfie: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,🤳,1F933,3,466
+🤳🏿,1F933-1F3FF,people-body,hand-prop,selfie: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,🤳,1F933,3,467
+💪,1F4AA,people-body,body-parts,flexed biceps,"arm, beast, bench, biceps, bodybuilder, bro, curls, flex, gains, gym, jacked, muscle, press, ripped, strong, weightlift",,Julian Grüneberg,2018-04-18,,single,💪,1F4AA,0.6,468
+💪🏻,1F4AA-1F3FB,people-body,body-parts,flexed biceps: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,💪,1F4AA,1,469
+💪🏼,1F4AA-1F3FC,people-body,body-parts,flexed biceps: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,💪,1F4AA,1,470
+💪🏽,1F4AA-1F3FD,people-body,body-parts,flexed biceps: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,💪,1F4AA,1,471
+💪🏾,1F4AA-1F3FE,people-body,body-parts,flexed biceps: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,💪,1F4AA,1,472
+💪🏿,1F4AA-1F3FF,people-body,body-parts,flexed biceps: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,💪,1F4AA,1,473
+🦾,1F9BE,people-body,body-parts,mechanical arm,"accessibility, arm, mechanical, prosthetic",,Laura Dworatschek,2019-05-06,,,,,12,474
+🦿,1F9BF,people-body,body-parts,mechanical leg,"accessibility, leg, mechanical, prosthetic",,Laura Dworatschek,2019-05-06,,,,,12,475
+🦵,1F9B5,people-body,body-parts,leg,"bent, foot, kick, knee, limb",,Laura Schießer,2019-05-06,,single,🦵,1F9B5,11,476
+🦵🏻,1F9B5-1F3FB,people-body,body-parts,leg: light skin tone,,,Laura Schießer,2019-05-06,1,single,🦵,1F9B5,11,477
+🦵🏼,1F9B5-1F3FC,people-body,body-parts,leg: medium-light skin tone,,,Laura Schießer,2019-05-06,2,single,🦵,1F9B5,11,478
+🦵🏽,1F9B5-1F3FD,people-body,body-parts,leg: medium skin tone,,,Laura Schießer,2019-05-06,3,single,🦵,1F9B5,11,479
+🦵🏾,1F9B5-1F3FE,people-body,body-parts,leg: medium-dark skin tone,,,Laura Schießer,2019-05-06,4,single,🦵,1F9B5,11,480
+🦵🏿,1F9B5-1F3FF,people-body,body-parts,leg: dark skin tone,,,Laura Schießer,2019-05-06,5,single,🦵,1F9B5,11,481
+🦶,1F9B6,people-body,body-parts,foot,"ankle, feet, kick, stomp",,Daniel Utz,2020-03-11,,single,🦶,1F9B6,11,482
+🦶🏻,1F9B6-1F3FB,people-body,body-parts,foot: light skin tone,,,Daniel Utz,2020-03-11,1,single,🦶,1F9B6,11,483
+🦶🏼,1F9B6-1F3FC,people-body,body-parts,foot: medium-light skin tone,,,Daniel Utz,2020-03-11,2,single,🦶,1F9B6,11,484
+🦶🏽,1F9B6-1F3FD,people-body,body-parts,foot: medium skin tone,,,Daniel Utz,2020-03-11,3,single,🦶,1F9B6,11,485
+🦶🏾,1F9B6-1F3FE,people-body,body-parts,foot: medium-dark skin tone,,,Daniel Utz,2020-03-11,4,single,🦶,1F9B6,11,486
+🦶🏿,1F9B6-1F3FF,people-body,body-parts,foot: dark skin tone,,,Daniel Utz,2020-03-11,5,single,🦶,1F9B6,11,487
+👂️,1F442,people-body,body-parts,ear,"body, ears, hear, hearing, listen, listening, sound",,Julian Grüneberg,2018-04-18,,single,👂️,1F442,0.6,488
+👂🏻,1F442-1F3FB,people-body,body-parts,ear: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👂️,1F442,1,489
+👂🏼,1F442-1F3FC,people-body,body-parts,ear: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👂️,1F442,1,490
+👂🏽,1F442-1F3FD,people-body,body-parts,ear: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👂️,1F442,1,491
+👂🏾,1F442-1F3FE,people-body,body-parts,ear: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👂️,1F442,1,492
+👂🏿,1F442-1F3FF,people-body,body-parts,ear: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👂️,1F442,1,493
+🦻,1F9BB,people-body,body-parts,ear with hearing aid,"accessibility, aid, ear, hard, hearing",,Laura Dworatschek,2019-05-06,,single,🦻,1F9BB,12,494
+🦻🏻,1F9BB-1F3FB,people-body,body-parts,ear with hearing aid: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🦻,1F9BB,12,495
+🦻🏼,1F9BB-1F3FC,people-body,body-parts,ear with hearing aid: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🦻,1F9BB,12,496
+🦻🏽,1F9BB-1F3FD,people-body,body-parts,ear with hearing aid: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🦻,1F9BB,12,497
+🦻🏾,1F9BB-1F3FE,people-body,body-parts,ear with hearing aid: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🦻,1F9BB,12,498
+🦻🏿,1F9BB-1F3FF,people-body,body-parts,ear with hearing aid: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🦻,1F9BB,12,499
+👃,1F443,people-body,body-parts,nose,"body, noses, nosey, odor, smell, smells",,Julian Grüneberg,2018-04-18,,single,👃,1F443,0.6,500
+👃🏻,1F443-1F3FB,people-body,body-parts,nose: light skin tone,,,Julian Grüneberg,2018-04-18,1,single,👃,1F443,1,501
+👃🏼,1F443-1F3FC,people-body,body-parts,nose: medium-light skin tone,,,Julian Grüneberg,2018-04-18,2,single,👃,1F443,1,502
+👃🏽,1F443-1F3FD,people-body,body-parts,nose: medium skin tone,,,Julian Grüneberg,2018-04-18,3,single,👃,1F443,1,503
+👃🏾,1F443-1F3FE,people-body,body-parts,nose: medium-dark skin tone,,,Julian Grüneberg,2018-04-18,4,single,👃,1F443,1,504
+👃🏿,1F443-1F3FF,people-body,body-parts,nose: dark skin tone,,,Julian Grüneberg,2018-04-18,5,single,👃,1F443,1,505
+🧠,1F9E0,people-body,body-parts,brain,"intelligent, smart",,Julian Grüneberg,2018-04-18,,,,,5,506
+🫀,1FAC0,people-body,body-parts,anatomical heart,"anatomical, beat, cardiology, heart, heartbeat, organ, pulse, real, red",,Tonia Reinhardt,2010-01-31,,,,,13,507
+🫁,1FAC1,people-body,body-parts,lungs,"breath, breathe, exhalation, inhalation, lung, organ, respiration",,Fanny Jung,2010-01-31,,,,,13,508
+🦷,1F9B7,people-body,body-parts,tooth,"dentist, pearly, teeth, white",,Laura Schießer,2019-05-06,,,,,11,509
+🦴,1F9B4,people-body,body-parts,bone,"bones, dog, skeleton, wishbone",,Laura Schießer,2019-05-06,,,,,11,510
+👀,1F440,people-body,body-parts,eyes,"body, eye, face, googly, look, looking, omg, peep, see, seeing",,Julian Grüneberg,2018-04-18,,,,,0.6,511
+👁️,1F441,people-body,body-parts,eye,"1, body, one",,Julian Grüneberg,2018-04-18,,,,,0.7,513
+👅,1F445,people-body,body-parts,tongue,"body, lick, slurp",,Julian Grüneberg,2018-04-18,,,,,0.6,514
+👄,1F444,people-body,body-parts,mouth,"beauty, body, kiss, kissing, lips, lipstick",,Julian Grüneberg,2018-04-18,,,,,0.6,515
+🫦,1FAE6,people-body,body-parts,biting lip,"anxious, bite, biting, fear, flirt, flirting, kiss, lip, lipstick, nervous, sexy, uncomfortable, worried, worry",,Alexander Müller,2021-11-27,,,,,14,516
+👶,1F476,people-body,person,baby,"babies, children, goo, infant, newborn, pregnant, young",,Johanna Wellnitz,2018-04-18,,single,👶,1F476,0.6,517
+👶🏻,1F476-1F3FB,people-body,person,baby: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,👶,1F476,1,518
+👶🏼,1F476-1F3FC,people-body,person,baby: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,👶,1F476,1,519
+👶🏽,1F476-1F3FD,people-body,person,baby: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,👶,1F476,1,520
+👶🏾,1F476-1F3FE,people-body,person,baby: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,👶,1F476,1,521
+👶🏿,1F476-1F3FF,people-body,person,baby: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,👶,1F476,1,522
+🧒,1F9D2,people-body,person,child,"bright-eyed, grandchild, kid, young, younger",,Johanna Wellnitz,2018-04-18,,single,🧒,1F9D2,5,523
+🧒🏻,1F9D2-1F3FB,people-body,person,child: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🧒,1F9D2,5,524
+🧒🏼,1F9D2-1F3FC,people-body,person,child: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🧒,1F9D2,5,525
+🧒🏽,1F9D2-1F3FD,people-body,person,child: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🧒,1F9D2,5,526
+🧒🏾,1F9D2-1F3FE,people-body,person,child: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🧒,1F9D2,5,527
+🧒🏿,1F9D2-1F3FF,people-body,person,child: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🧒,1F9D2,5,528
+👦,1F466,people-body,person,boy,"bright-eyed, child, grandson, kid, son, young, younger",,Johanna Wellnitz,2018-04-18,,single,👦,1F466,0.6,529
+👦🏻,1F466-1F3FB,people-body,person,boy: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,👦,1F466,1,530
+👦🏼,1F466-1F3FC,people-body,person,boy: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,👦,1F466,1,531
+👦🏽,1F466-1F3FD,people-body,person,boy: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,👦,1F466,1,532
+👦🏾,1F466-1F3FE,people-body,person,boy: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,👦,1F466,1,533
+👦🏿,1F466-1F3FF,people-body,person,boy: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,👦,1F466,1,534
+👧,1F467,people-body,person,girl,"bright-eyed, child, daughter, granddaughter, kid, virgo, young, younger, zodiac",,Johanna Wellnitz,2018-04-18,,single,👧,1F467,0.6,535
+👧🏻,1F467-1F3FB,people-body,person,girl: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,👧,1F467,1,536
+👧🏼,1F467-1F3FC,people-body,person,girl: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,👧,1F467,1,537
+👧🏽,1F467-1F3FD,people-body,person,girl: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,👧,1F467,1,538
+👧🏾,1F467-1F3FE,people-body,person,girl: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,👧,1F467,1,539
+👧🏿,1F467-1F3FF,people-body,person,girl: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,👧,1F467,1,540
+🧑,1F9D1,people-body,person,person,adult,,Johanna Wellnitz,2018-04-18,,single,🧑,1F9D1,5,541
+🧑🏻,1F9D1-1F3FB,people-body,person,person: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🧑,1F9D1,5,542
+🧑🏼,1F9D1-1F3FC,people-body,person,person: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🧑,1F9D1,5,543
+🧑🏽,1F9D1-1F3FD,people-body,person,person: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🧑,1F9D1,5,544
+🧑🏾,1F9D1-1F3FE,people-body,person,person: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🧑,1F9D1,5,545
+🧑🏿,1F9D1-1F3FF,people-body,person,person: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🧑,1F9D1,5,546
+👱,1F471,people-body,person,person: blond hair,"blond, blond-haired, human, person",,Anne Frauendorf,2018-11-16,,single,👱,1F471,0.6,547
+👱🏻,1F471-1F3FB,people-body,person,"person: light skin tone, blond hair",,,Anne Frauendorf,2018-11-16,1,single,👱,1F471,1,548
+👱🏼,1F471-1F3FC,people-body,person,"person: medium-light skin tone, blond hair",,,Anne Frauendorf,2018-11-16,2,single,👱,1F471,1,549
+👱🏽,1F471-1F3FD,people-body,person,"person: medium skin tone, blond hair",,,Anne Frauendorf,2018-11-16,3,single,👱,1F471,1,550
+👱🏾,1F471-1F3FE,people-body,person,"person: medium-dark skin tone, blond hair",,,Anne Frauendorf,2018-11-16,4,single,👱,1F471,1,551
+👱🏿,1F471-1F3FF,people-body,person,"person: dark skin tone, blond hair",,,Anne Frauendorf,2018-11-16,5,single,👱,1F471,1,552
+👨,1F468,people-body,person,man,"adult, bro",,Johanna Wellnitz,2018-04-18,,single,👨,1F468,0.6,553
+👨🏻,1F468-1F3FB,people-body,person,man: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,👨,1F468,1,554
+👨🏼,1F468-1F3FC,people-body,person,man: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,👨,1F468,1,555
+👨🏽,1F468-1F3FD,people-body,person,man: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,👨,1F468,1,556
+👨🏾,1F468-1F3FE,people-body,person,man: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,👨,1F468,1,557
+👨🏿,1F468-1F3FF,people-body,person,man: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,👨,1F468,1,558
+🧔,1F9D4,people-body,person,person: beard,"beard, bearded, person, whiskers",,Lisa Thiel,2018-04-18,,single,🧔,1F9D4,5,559
+🧔🏻,1F9D4-1F3FB,people-body,person,"person: light skin tone, beard",,,Lisa Thiel,2018-04-18,1,single,🧔,1F9D4,5,560
+🧔🏼,1F9D4-1F3FC,people-body,person,"person: medium-light skin tone, beard",,,Lisa Thiel,2018-04-18,2,single,🧔,1F9D4,5,561
+🧔🏽,1F9D4-1F3FD,people-body,person,"person: medium skin tone, beard",,,Lisa Thiel,2018-04-18,3,single,🧔,1F9D4,5,562
+🧔🏾,1F9D4-1F3FE,people-body,person,"person: medium-dark skin tone, beard",,,Lisa Thiel,2018-04-18,4,single,🧔,1F9D4,5,563
+🧔🏿,1F9D4-1F3FF,people-body,person,"person: dark skin tone, beard",,,Lisa Thiel,2018-04-18,5,single,🧔,1F9D4,5,564
+🧔‍♂️,1F9D4-200D-2642-FE0F,people-body,person,man: beard,"beard, bearded, man, whiskers",,Nelly Nieter,2021-04-26,,single,🧔‍♂️,1F9D4-200D-2642-FE0F,13.1,565
+🧔🏻‍♂️,1F9D4-1F3FB-200D-2642-FE0F,people-body,person,"man: light skin tone, beard",,,Nelly Nieter,2021-04-26,1,single,🧔‍♂️,1F9D4-200D-2642-FE0F,13.1,567
+🧔🏼‍♂️,1F9D4-1F3FC-200D-2642-FE0F,people-body,person,"man: medium-light skin tone, beard",,,Nelly Nieter,2021-04-26,2,single,🧔‍♂️,1F9D4-200D-2642-FE0F,13.1,569
+🧔🏽‍♂️,1F9D4-1F3FD-200D-2642-FE0F,people-body,person,"man: medium skin tone, beard",,,Nelly Nieter,2021-04-26,3,single,🧔‍♂️,1F9D4-200D-2642-FE0F,13.1,571
+🧔🏾‍♂️,1F9D4-1F3FE-200D-2642-FE0F,people-body,person,"man: medium-dark skin tone, beard",,,Nelly Nieter,2021-04-26,4,single,🧔‍♂️,1F9D4-200D-2642-FE0F,13.1,573
+🧔🏿‍♂️,1F9D4-1F3FF-200D-2642-FE0F,people-body,person,"man: dark skin tone, beard",,,Nelly Nieter,2021-04-26,5,single,🧔‍♂️,1F9D4-200D-2642-FE0F,13.1,575
+🧔‍♀️,1F9D4-200D-2640-FE0F,people-body,person,woman: beard,"beard, bearded, whiskers, woman",,Nelly Nieter,2021-04-26,,single,🧔‍♀️,1F9D4-200D-2640-FE0F,13.1,577
+🧔🏻‍♀️,1F9D4-1F3FB-200D-2640-FE0F,people-body,person,"woman: light skin tone, beard",,,Nelly Nieter,2021-04-26,1,single,🧔‍♀️,1F9D4-200D-2640-FE0F,13.1,579
+🧔🏼‍♀️,1F9D4-1F3FC-200D-2640-FE0F,people-body,person,"woman: medium-light skin tone, beard",,,Nelly Nieter,2021-04-26,2,single,🧔‍♀️,1F9D4-200D-2640-FE0F,13.1,581
+🧔🏽‍♀️,1F9D4-1F3FD-200D-2640-FE0F,people-body,person,"woman: medium skin tone, beard",,,Nelly Nieter,2021-04-26,3,single,🧔‍♀️,1F9D4-200D-2640-FE0F,13.1,583
+🧔🏾‍♀️,1F9D4-1F3FE-200D-2640-FE0F,people-body,person,"woman: medium-dark skin tone, beard",,,Nelly Nieter,2021-04-26,4,single,🧔‍♀️,1F9D4-200D-2640-FE0F,13.1,585
+🧔🏿‍♀️,1F9D4-1F3FF-200D-2640-FE0F,people-body,person,"woman: dark skin tone, beard",,,Nelly Nieter,2021-04-26,5,single,🧔‍♀️,1F9D4-200D-2640-FE0F,13.1,587
+👨‍🦰,1F468-200D-1F9B0,people-body,person,man: red hair,"adult, bro, man, red hair",,Nadine Bartel,2019-05-06,,single,👨‍🦰,1F468-200D-1F9B0,11,589
+👨🏻‍🦰,1F468-1F3FB-200D-1F9B0,people-body,person,"man: light skin tone, red hair",,,Nadine Bartel,2019-05-06,1,single,👨‍🦰,1F468-200D-1F9B0,11,590
+👨🏼‍🦰,1F468-1F3FC-200D-1F9B0,people-body,person,"man: medium-light skin tone, red hair",,,Nadine Bartel,2019-05-06,2,single,👨‍🦰,1F468-200D-1F9B0,11,591
+👨🏽‍🦰,1F468-1F3FD-200D-1F9B0,people-body,person,"man: medium skin tone, red hair",,,Nadine Bartel,2019-05-06,3,single,👨‍🦰,1F468-200D-1F9B0,11,592
+👨🏾‍🦰,1F468-1F3FE-200D-1F9B0,people-body,person,"man: medium-dark skin tone, red hair",,,Nadine Bartel,2019-05-06,4,single,👨‍🦰,1F468-200D-1F9B0,11,593
+👨🏿‍🦰,1F468-1F3FF-200D-1F9B0,people-body,person,"man: dark skin tone, red hair",,,Nadine Bartel,2019-05-06,5,single,👨‍🦰,1F468-200D-1F9B0,11,594
+👨‍🦱,1F468-200D-1F9B1,people-body,person,man: curly hair,"adult, bro, curly hair, man",,Nadine Bartel,2019-05-06,,single,👨‍🦱,1F468-200D-1F9B1,11,595
+👨🏻‍🦱,1F468-1F3FB-200D-1F9B1,people-body,person,"man: light skin tone, curly hair",,,Nadine Bartel,2019-05-06,1,single,👨‍🦱,1F468-200D-1F9B1,11,596
+👨🏼‍🦱,1F468-1F3FC-200D-1F9B1,people-body,person,"man: medium-light skin tone, curly hair",,,Nadine Bartel,2019-05-06,2,single,👨‍🦱,1F468-200D-1F9B1,11,597
+👨🏽‍🦱,1F468-1F3FD-200D-1F9B1,people-body,person,"man: medium skin tone, curly hair",,,Nadine Bartel,2019-05-06,3,single,👨‍🦱,1F468-200D-1F9B1,11,598
+👨🏾‍🦱,1F468-1F3FE-200D-1F9B1,people-body,person,"man: medium-dark skin tone, curly hair",,,Nadine Bartel,2019-05-06,4,single,👨‍🦱,1F468-200D-1F9B1,11,599
+👨🏿‍🦱,1F468-1F3FF-200D-1F9B1,people-body,person,"man: dark skin tone, curly hair",,,Nadine Bartel,2019-05-06,5,single,👨‍🦱,1F468-200D-1F9B1,11,600
+👨‍🦳,1F468-200D-1F9B3,people-body,person,man: white hair,"adult, bro, man, white hair",,Nadine Bartel,2019-05-06,,single,👨‍🦳,1F468-200D-1F9B3,11,601
+👨🏻‍🦳,1F468-1F3FB-200D-1F9B3,people-body,person,"man: light skin tone, white hair",,,Nadine Bartel,2019-05-06,1,single,👨‍🦳,1F468-200D-1F9B3,11,602
+👨🏼‍🦳,1F468-1F3FC-200D-1F9B3,people-body,person,"man: medium-light skin tone, white hair",,,Nadine Bartel,2019-05-06,2,single,👨‍🦳,1F468-200D-1F9B3,11,603
+👨🏽‍🦳,1F468-1F3FD-200D-1F9B3,people-body,person,"man: medium skin tone, white hair",,,Nadine Bartel,2019-05-06,3,single,👨‍🦳,1F468-200D-1F9B3,11,604
+👨🏾‍🦳,1F468-1F3FE-200D-1F9B3,people-body,person,"man: medium-dark skin tone, white hair",,,Nadine Bartel,2019-05-06,4,single,👨‍🦳,1F468-200D-1F9B3,11,605
+👨🏿‍🦳,1F468-1F3FF-200D-1F9B3,people-body,person,"man: dark skin tone, white hair",,,Nadine Bartel,2019-05-06,5,single,👨‍🦳,1F468-200D-1F9B3,11,606
+👨‍🦲,1F468-200D-1F9B2,people-body,person,man: bald,"adult, bald, bro, man",,Nadine Bartel,2019-05-06,,single,👨‍🦲,1F468-200D-1F9B2,11,607
+👨🏻‍🦲,1F468-1F3FB-200D-1F9B2,people-body,person,"man: light skin tone, bald",,,Nadine Bartel,2019-05-06,1,single,👨‍🦲,1F468-200D-1F9B2,11,608
+👨🏼‍🦲,1F468-1F3FC-200D-1F9B2,people-body,person,"man: medium-light skin tone, bald",,,Nadine Bartel,2019-05-06,2,single,👨‍🦲,1F468-200D-1F9B2,11,609
+👨🏽‍🦲,1F468-1F3FD-200D-1F9B2,people-body,person,"man: medium skin tone, bald",,,Nadine Bartel,2019-05-06,3,single,👨‍🦲,1F468-200D-1F9B2,11,610
+👨🏾‍🦲,1F468-1F3FE-200D-1F9B2,people-body,person,"man: medium-dark skin tone, bald",,,Nadine Bartel,2019-05-06,4,single,👨‍🦲,1F468-200D-1F9B2,11,611
+👨🏿‍🦲,1F468-1F3FF-200D-1F9B2,people-body,person,"man: dark skin tone, bald",,,Nadine Bartel,2019-05-06,5,single,👨‍🦲,1F468-200D-1F9B2,11,612
+👩,1F469,people-body,person,woman,"adult, lady",,Johanna Wellnitz,2018-04-18,,single,👩,1F469,0.6,613
+👩🏻,1F469-1F3FB,people-body,person,woman: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,👩,1F469,1,614
+👩🏼,1F469-1F3FC,people-body,person,woman: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,👩,1F469,1,615
+👩🏽,1F469-1F3FD,people-body,person,woman: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,👩,1F469,1,616
+👩🏾,1F469-1F3FE,people-body,person,woman: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,👩,1F469,1,617
+👩🏿,1F469-1F3FF,people-body,person,woman: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,👩,1F469,1,618
+👩‍🦰,1F469-200D-1F9B0,people-body,person,woman: red hair,"adult, lady, red hair, woman",,Nadine Bartel,2019-05-06,,single,👩‍🦰,1F469-200D-1F9B0,11,619
+👩🏻‍🦰,1F469-1F3FB-200D-1F9B0,people-body,person,"woman: light skin tone, red hair",,,Nadine Bartel,2019-05-06,1,single,👩‍🦰,1F469-200D-1F9B0,11,620
+👩🏼‍🦰,1F469-1F3FC-200D-1F9B0,people-body,person,"woman: medium-light skin tone, red hair",,,Nadine Bartel,2019-05-06,2,single,👩‍🦰,1F469-200D-1F9B0,11,621
+👩🏽‍🦰,1F469-1F3FD-200D-1F9B0,people-body,person,"woman: medium skin tone, red hair",,,Nadine Bartel,2019-05-06,3,single,👩‍🦰,1F469-200D-1F9B0,11,622
+👩🏾‍🦰,1F469-1F3FE-200D-1F9B0,people-body,person,"woman: medium-dark skin tone, red hair",,,Nadine Bartel,2019-05-06,4,single,👩‍🦰,1F469-200D-1F9B0,11,623
+👩🏿‍🦰,1F469-1F3FF-200D-1F9B0,people-body,person,"woman: dark skin tone, red hair",,,Nadine Bartel,2019-05-06,5,single,👩‍🦰,1F469-200D-1F9B0,11,624
+🧑‍🦰,1F9D1-200D-1F9B0,people-body,person,person: red hair,"adult, person, red hair",,Benedikt Groß,2020-01-15,,single,🧑‍🦰,1F9D1-200D-1F9B0,12.1,625
+🧑🏻‍🦰,1F9D1-1F3FB-200D-1F9B0,people-body,person,"person: light skin tone, red hair",,,Benedikt Groß,2020-01-15,1,single,🧑‍🦰,1F9D1-200D-1F9B0,12.1,626
+🧑🏼‍🦰,1F9D1-1F3FC-200D-1F9B0,people-body,person,"person: medium-light skin tone, red hair",,,Benedikt Groß,2020-01-15,2,single,🧑‍🦰,1F9D1-200D-1F9B0,12.1,627
+🧑🏽‍🦰,1F9D1-1F3FD-200D-1F9B0,people-body,person,"person: medium skin tone, red hair",,,Benedikt Groß,2020-01-15,3,single,🧑‍🦰,1F9D1-200D-1F9B0,12.1,628
+🧑🏾‍🦰,1F9D1-1F3FE-200D-1F9B0,people-body,person,"person: medium-dark skin tone, red hair",,,Benedikt Groß,2020-01-15,4,single,🧑‍🦰,1F9D1-200D-1F9B0,12.1,629
+🧑🏿‍🦰,1F9D1-1F3FF-200D-1F9B0,people-body,person,"person: dark skin tone, red hair",,,Benedikt Groß,2020-01-15,5,single,🧑‍🦰,1F9D1-200D-1F9B0,12.1,630
+👩‍🦱,1F469-200D-1F9B1,people-body,person,woman: curly hair,"adult, curly hair, lady, woman",,Nadine Bartel,2019-05-06,,single,👩‍🦱,1F469-200D-1F9B1,11,631
+👩🏻‍🦱,1F469-1F3FB-200D-1F9B1,people-body,person,"woman: light skin tone, curly hair",,,Nadine Bartel,2019-05-06,1,single,👩‍🦱,1F469-200D-1F9B1,11,632
+👩🏼‍🦱,1F469-1F3FC-200D-1F9B1,people-body,person,"woman: medium-light skin tone, curly hair",,,Nadine Bartel,2019-05-06,2,single,👩‍🦱,1F469-200D-1F9B1,11,633
+👩🏽‍🦱,1F469-1F3FD-200D-1F9B1,people-body,person,"woman: medium skin tone, curly hair",,,Nadine Bartel,2019-05-06,3,single,👩‍🦱,1F469-200D-1F9B1,11,634
+👩🏾‍🦱,1F469-1F3FE-200D-1F9B1,people-body,person,"woman: medium-dark skin tone, curly hair",,,Nadine Bartel,2019-05-06,4,single,👩‍🦱,1F469-200D-1F9B1,11,635
+👩🏿‍🦱,1F469-1F3FF-200D-1F9B1,people-body,person,"woman: dark skin tone, curly hair",,,Nadine Bartel,2019-05-06,5,single,👩‍🦱,1F469-200D-1F9B1,11,636
+🧑‍🦱,1F9D1-200D-1F9B1,people-body,person,person: curly hair,"adult, curly hair, person",,Benedikt Groß,2020-01-15,,single,🧑‍🦱,1F9D1-200D-1F9B1,12.1,637
+🧑🏻‍🦱,1F9D1-1F3FB-200D-1F9B1,people-body,person,"person: light skin tone, curly hair",,,Benedikt Groß,2020-01-15,1,single,🧑‍🦱,1F9D1-200D-1F9B1,12.1,638
+🧑🏼‍🦱,1F9D1-1F3FC-200D-1F9B1,people-body,person,"person: medium-light skin tone, curly hair",,,Benedikt Groß,2020-01-15,2,single,🧑‍🦱,1F9D1-200D-1F9B1,12.1,639
+🧑🏽‍🦱,1F9D1-1F3FD-200D-1F9B1,people-body,person,"person: medium skin tone, curly hair",,,Benedikt Groß,2020-01-15,3,single,🧑‍🦱,1F9D1-200D-1F9B1,12.1,640
+🧑🏾‍🦱,1F9D1-1F3FE-200D-1F9B1,people-body,person,"person: medium-dark skin tone, curly hair",,,Benedikt Groß,2020-01-15,4,single,🧑‍🦱,1F9D1-200D-1F9B1,12.1,641
+🧑🏿‍🦱,1F9D1-1F3FF-200D-1F9B1,people-body,person,"person: dark skin tone, curly hair",,,Benedikt Groß,2020-01-15,5,single,🧑‍🦱,1F9D1-200D-1F9B1,12.1,642
+👩‍🦳,1F469-200D-1F9B3,people-body,person,woman: white hair,"adult, lady, white hair, woman",,Nadine Bartel,2019-05-06,,single,👩‍🦳,1F469-200D-1F9B3,11,643
+👩🏻‍🦳,1F469-1F3FB-200D-1F9B3,people-body,person,"woman: light skin tone, white hair",,,Nadine Bartel,2019-05-06,1,single,👩‍🦳,1F469-200D-1F9B3,11,644
+👩🏼‍🦳,1F469-1F3FC-200D-1F9B3,people-body,person,"woman: medium-light skin tone, white hair",,,Nadine Bartel,2019-05-06,2,single,👩‍🦳,1F469-200D-1F9B3,11,645
+👩🏽‍🦳,1F469-1F3FD-200D-1F9B3,people-body,person,"woman: medium skin tone, white hair",,,Nadine Bartel,2019-05-06,3,single,👩‍🦳,1F469-200D-1F9B3,11,646
+👩🏾‍🦳,1F469-1F3FE-200D-1F9B3,people-body,person,"woman: medium-dark skin tone, white hair",,,Nadine Bartel,2019-05-06,4,single,👩‍🦳,1F469-200D-1F9B3,11,647
+👩🏿‍🦳,1F469-1F3FF-200D-1F9B3,people-body,person,"woman: dark skin tone, white hair",,,Nadine Bartel,2019-05-06,5,single,👩‍🦳,1F469-200D-1F9B3,11,648
+🧑‍🦳,1F9D1-200D-1F9B3,people-body,person,person: white hair,"adult, person, white hair",,Benedikt Groß,2020-01-15,,single,🧑‍🦳,1F9D1-200D-1F9B3,12.1,649
+🧑🏻‍🦳,1F9D1-1F3FB-200D-1F9B3,people-body,person,"person: light skin tone, white hair",,,Benedikt Groß,2020-01-15,1,single,🧑‍🦳,1F9D1-200D-1F9B3,12.1,650
+🧑🏼‍🦳,1F9D1-1F3FC-200D-1F9B3,people-body,person,"person: medium-light skin tone, white hair",,,Benedikt Groß,2020-01-15,2,single,🧑‍🦳,1F9D1-200D-1F9B3,12.1,651
+🧑🏽‍🦳,1F9D1-1F3FD-200D-1F9B3,people-body,person,"person: medium skin tone, white hair",,,Benedikt Groß,2020-01-15,3,single,🧑‍🦳,1F9D1-200D-1F9B3,12.1,652
+🧑🏾‍🦳,1F9D1-1F3FE-200D-1F9B3,people-body,person,"person: medium-dark skin tone, white hair",,,Benedikt Groß,2020-01-15,4,single,🧑‍🦳,1F9D1-200D-1F9B3,12.1,653
+🧑🏿‍🦳,1F9D1-1F3FF-200D-1F9B3,people-body,person,"person: dark skin tone, white hair",,,Benedikt Groß,2020-01-15,5,single,🧑‍🦳,1F9D1-200D-1F9B3,12.1,654
+👩‍🦲,1F469-200D-1F9B2,people-body,person,woman: bald,"adult, bald, lady, woman",,Nadine Bartel,2019-05-06,,single,👩‍🦲,1F469-200D-1F9B2,11,655
+👩🏻‍🦲,1F469-1F3FB-200D-1F9B2,people-body,person,"woman: light skin tone, bald",,,Nadine Bartel,2019-05-06,1,single,👩‍🦲,1F469-200D-1F9B2,11,656
+👩🏼‍🦲,1F469-1F3FC-200D-1F9B2,people-body,person,"woman: medium-light skin tone, bald",,,Nadine Bartel,2019-05-06,2,single,👩‍🦲,1F469-200D-1F9B2,11,657
+👩🏽‍🦲,1F469-1F3FD-200D-1F9B2,people-body,person,"woman: medium skin tone, bald",,,Nadine Bartel,2019-05-06,3,single,👩‍🦲,1F469-200D-1F9B2,11,658
+👩🏾‍🦲,1F469-1F3FE-200D-1F9B2,people-body,person,"woman: medium-dark skin tone, bald",,,Nadine Bartel,2019-05-06,4,single,👩‍🦲,1F469-200D-1F9B2,11,659
+👩🏿‍🦲,1F469-1F3FF-200D-1F9B2,people-body,person,"woman: dark skin tone, bald",,,Nadine Bartel,2019-05-06,5,single,👩‍🦲,1F469-200D-1F9B2,11,660
+🧑‍🦲,1F9D1-200D-1F9B2,people-body,person,person: bald,"adult, bald, person",,Benedikt Groß,2020-01-15,,single,🧑‍🦲,1F9D1-200D-1F9B2,12.1,661
+🧑🏻‍🦲,1F9D1-1F3FB-200D-1F9B2,people-body,person,"person: light skin tone, bald",,,Benedikt Groß,2020-01-15,1,single,🧑‍🦲,1F9D1-200D-1F9B2,12.1,662
+🧑🏼‍🦲,1F9D1-1F3FC-200D-1F9B2,people-body,person,"person: medium-light skin tone, bald",,,Benedikt Groß,2020-01-15,2,single,🧑‍🦲,1F9D1-200D-1F9B2,12.1,663
+🧑🏽‍🦲,1F9D1-1F3FD-200D-1F9B2,people-body,person,"person: medium skin tone, bald",,,Benedikt Groß,2020-01-15,3,single,🧑‍🦲,1F9D1-200D-1F9B2,12.1,664
+🧑🏾‍🦲,1F9D1-1F3FE-200D-1F9B2,people-body,person,"person: medium-dark skin tone, bald",,,Benedikt Groß,2020-01-15,4,single,🧑‍🦲,1F9D1-200D-1F9B2,12.1,665
+🧑🏿‍🦲,1F9D1-1F3FF-200D-1F9B2,people-body,person,"person: dark skin tone, bald",,,Benedikt Groß,2020-01-15,5,single,🧑‍🦲,1F9D1-200D-1F9B2,12.1,666
+👱‍♀️,1F471-200D-2640-FE0F,people-body,person,woman: blond hair,"blond, blond-haired, blonde, hair, woman",,Nadine Bartel,2019-05-06,,single,👱‍♀️,1F471-200D-2640-FE0F,4,667
+👱🏻‍♀️,1F471-1F3FB-200D-2640-FE0F,people-body,person,"woman: light skin tone, blond hair",,,Nadine Bartel,2019-05-06,1,single,👱‍♀️,1F471-200D-2640-FE0F,4,669
+👱🏼‍♀️,1F471-1F3FC-200D-2640-FE0F,people-body,person,"woman: medium-light skin tone, blond hair",,,Nadine Bartel,2019-05-06,2,single,👱‍♀️,1F471-200D-2640-FE0F,4,671
+👱🏽‍♀️,1F471-1F3FD-200D-2640-FE0F,people-body,person,"woman: medium skin tone, blond hair",,,Nadine Bartel,2019-05-06,3,single,👱‍♀️,1F471-200D-2640-FE0F,4,673
+👱🏾‍♀️,1F471-1F3FE-200D-2640-FE0F,people-body,person,"woman: medium-dark skin tone, blond hair",,,Nadine Bartel,2019-05-06,4,single,👱‍♀️,1F471-200D-2640-FE0F,4,675
+👱🏿‍♀️,1F471-1F3FF-200D-2640-FE0F,people-body,person,"woman: dark skin tone, blond hair",,,Nadine Bartel,2019-05-06,5,single,👱‍♀️,1F471-200D-2640-FE0F,4,677
+👱‍♂️,1F471-200D-2642-FE0F,people-body,person,man: blond hair,"blond, blond-haired, hair, man",,Nadine Bartel,2019-05-06,,single,👱‍♂️,1F471-200D-2642-FE0F,4,679
+👱🏻‍♂️,1F471-1F3FB-200D-2642-FE0F,people-body,person,"man: light skin tone, blond hair",,,Nadine Bartel,2019-05-06,1,single,👱‍♂️,1F471-200D-2642-FE0F,4,681
+👱🏼‍♂️,1F471-1F3FC-200D-2642-FE0F,people-body,person,"man: medium-light skin tone, blond hair",,,Nadine Bartel,2019-05-06,2,single,👱‍♂️,1F471-200D-2642-FE0F,4,683
+👱🏽‍♂️,1F471-1F3FD-200D-2642-FE0F,people-body,person,"man: medium skin tone, blond hair",,,Nadine Bartel,2019-05-06,3,single,👱‍♂️,1F471-200D-2642-FE0F,4,685
+👱🏾‍♂️,1F471-1F3FE-200D-2642-FE0F,people-body,person,"man: medium-dark skin tone, blond hair",,,Nadine Bartel,2019-05-06,4,single,👱‍♂️,1F471-200D-2642-FE0F,4,687
+👱🏿‍♂️,1F471-1F3FF-200D-2642-FE0F,people-body,person,"man: dark skin tone, blond hair",,,Nadine Bartel,2019-05-06,5,single,👱‍♂️,1F471-200D-2642-FE0F,4,689
+🧓,1F9D3,people-body,person,older person,"adult, elderly, grandparent, old, person, wise",,Johanna Wellnitz,2018-04-18,,single,🧓,1F9D3,5,691
+🧓🏻,1F9D3-1F3FB,people-body,person,older person: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🧓,1F9D3,5,692
+🧓🏼,1F9D3-1F3FC,people-body,person,older person: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🧓,1F9D3,5,693
+🧓🏽,1F9D3-1F3FD,people-body,person,older person: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🧓,1F9D3,5,694
+🧓🏾,1F9D3-1F3FE,people-body,person,older person: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🧓,1F9D3,5,695
+🧓🏿,1F9D3-1F3FF,people-body,person,older person: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🧓,1F9D3,5,696
+👴,1F474,people-body,person,old man,"adult, bald, elderly, gramps, grandfather, grandpa, man, old, wise",,Liz Bravo,2020-12-22,,single,👴,1F474,0.6,697
+👴🏻,1F474-1F3FB,people-body,person,old man: light skin tone,,,Liz Bravo,2020-12-22,1,single,👴,1F474,1,698
+👴🏼,1F474-1F3FC,people-body,person,old man: medium-light skin tone,,,Liz Bravo,2020-12-22,2,single,👴,1F474,1,699
+👴🏽,1F474-1F3FD,people-body,person,old man: medium skin tone,,,Liz Bravo,2020-12-22,3,single,👴,1F474,1,700
+👴🏾,1F474-1F3FE,people-body,person,old man: medium-dark skin tone,,,Liz Bravo,2020-12-22,4,single,👴,1F474,1,701
+👴🏿,1F474-1F3FF,people-body,person,old man: dark skin tone,,,Liz Bravo,2020-12-22,5,single,👴,1F474,1,702
+👵,1F475,people-body,person,old woman,"adult, elderly, grandma, grandmother, granny, lady, old, wise, woman",,Johanna Wellnitz,2018-04-18,,single,👵,1F475,0.6,703
+👵🏻,1F475-1F3FB,people-body,person,old woman: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,👵,1F475,1,704
+👵🏼,1F475-1F3FC,people-body,person,old woman: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,👵,1F475,1,705
+👵🏽,1F475-1F3FD,people-body,person,old woman: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,👵,1F475,1,706
+👵🏾,1F475-1F3FE,people-body,person,old woman: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,👵,1F475,1,707
+👵🏿,1F475-1F3FF,people-body,person,old woman: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,👵,1F475,1,708
+🙍,1F64D,people-body,person-gesture,person frowning,"annoyed, disappointed, disgruntled, disturbed, frown, frowning, frustrated, gesture, irritated, person, upset",,Johanna Wellnitz,2018-04-18,,single,🙍,1F64D,0.6,709
+🙍🏻,1F64D-1F3FB,people-body,person-gesture,person frowning: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🙍,1F64D,1,710
+🙍🏼,1F64D-1F3FC,people-body,person-gesture,person frowning: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🙍,1F64D,1,711
+🙍🏽,1F64D-1F3FD,people-body,person-gesture,person frowning: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🙍,1F64D,1,712
+🙍🏾,1F64D-1F3FE,people-body,person-gesture,person frowning: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🙍,1F64D,1,713
+🙍🏿,1F64D-1F3FF,people-body,person-gesture,person frowning: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🙍,1F64D,1,714
+🙍‍♂️,1F64D-200D-2642-FE0F,people-body,person-gesture,man frowning,"annoyed, disappointed, disgruntled, disturbed, frown, frowning, frustrated, gesture, irritated, man, upset",,Rifat Erdogan,2019-05-06,,single,🙍‍♂️,1F64D-200D-2642-FE0F,4,715
+🙍🏻‍♂️,1F64D-1F3FB-200D-2642-FE0F,people-body,person-gesture,man frowning: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙍‍♂️,1F64D-200D-2642-FE0F,4,717
+🙍🏼‍♂️,1F64D-1F3FC-200D-2642-FE0F,people-body,person-gesture,man frowning: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙍‍♂️,1F64D-200D-2642-FE0F,4,719
+🙍🏽‍♂️,1F64D-1F3FD-200D-2642-FE0F,people-body,person-gesture,man frowning: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙍‍♂️,1F64D-200D-2642-FE0F,4,721
+🙍🏾‍♂️,1F64D-1F3FE-200D-2642-FE0F,people-body,person-gesture,man frowning: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙍‍♂️,1F64D-200D-2642-FE0F,4,723
+🙍🏿‍♂️,1F64D-1F3FF-200D-2642-FE0F,people-body,person-gesture,man frowning: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙍‍♂️,1F64D-200D-2642-FE0F,4,725
+🙍‍♀️,1F64D-200D-2640-FE0F,people-body,person-gesture,woman frowning,"annoyed, disappointed, disgruntled, disturbed, frown, frowning, frustrated, gesture, irritated, upset, woman",,Rifat Erdogan,2019-05-06,,single,🙍‍♀️,1F64D-200D-2640-FE0F,4,727
+🙍🏻‍♀️,1F64D-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman frowning: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙍‍♀️,1F64D-200D-2640-FE0F,4,729
+🙍🏼‍♀️,1F64D-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman frowning: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙍‍♀️,1F64D-200D-2640-FE0F,4,731
+🙍🏽‍♀️,1F64D-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman frowning: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙍‍♀️,1F64D-200D-2640-FE0F,4,733
+🙍🏾‍♀️,1F64D-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman frowning: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙍‍♀️,1F64D-200D-2640-FE0F,4,735
+🙍🏿‍♀️,1F64D-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman frowning: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙍‍♀️,1F64D-200D-2640-FE0F,4,737
+🙎,1F64E,people-body,person-gesture,person pouting,"disappointed, downtrodden, frown, grimace, person, pouting, scowl, sulk, upset, whine",,Johanna Wellnitz,2018-04-18,,single,🙎,1F64E,0.6,739
+🙎🏻,1F64E-1F3FB,people-body,person-gesture,person pouting: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🙎,1F64E,1,740
+🙎🏼,1F64E-1F3FC,people-body,person-gesture,person pouting: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🙎,1F64E,1,741
+🙎🏽,1F64E-1F3FD,people-body,person-gesture,person pouting: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🙎,1F64E,1,742
+🙎🏾,1F64E-1F3FE,people-body,person-gesture,person pouting: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🙎,1F64E,1,743
+🙎🏿,1F64E-1F3FF,people-body,person-gesture,person pouting: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🙎,1F64E,1,744
+🙎‍♂️,1F64E-200D-2642-FE0F,people-body,person-gesture,man pouting,"disappointed, downtrodden, frown, grimace, man, pouting, scowl, sulk, upset, whine",,Rifat Erdogan,2019-05-06,,single,🙎‍♂️,1F64E-200D-2642-FE0F,4,745
+🙎🏻‍♂️,1F64E-1F3FB-200D-2642-FE0F,people-body,person-gesture,man pouting: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙎‍♂️,1F64E-200D-2642-FE0F,4,747
+🙎🏼‍♂️,1F64E-1F3FC-200D-2642-FE0F,people-body,person-gesture,man pouting: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙎‍♂️,1F64E-200D-2642-FE0F,4,749
+🙎🏽‍♂️,1F64E-1F3FD-200D-2642-FE0F,people-body,person-gesture,man pouting: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙎‍♂️,1F64E-200D-2642-FE0F,4,751
+🙎🏾‍♂️,1F64E-1F3FE-200D-2642-FE0F,people-body,person-gesture,man pouting: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙎‍♂️,1F64E-200D-2642-FE0F,4,753
+🙎🏿‍♂️,1F64E-1F3FF-200D-2642-FE0F,people-body,person-gesture,man pouting: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙎‍♂️,1F64E-200D-2642-FE0F,4,755
+🙎‍♀️,1F64E-200D-2640-FE0F,people-body,person-gesture,woman pouting,"disappointed, downtrodden, frown, grimace, pouting, scowl, sulk, upset, whine, woman",,Rifat Erdogan,2019-05-06,,single,🙎‍♀️,1F64E-200D-2640-FE0F,4,757
+🙎🏻‍♀️,1F64E-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman pouting: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙎‍♀️,1F64E-200D-2640-FE0F,4,759
+🙎🏼‍♀️,1F64E-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman pouting: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙎‍♀️,1F64E-200D-2640-FE0F,4,761
+🙎🏽‍♀️,1F64E-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman pouting: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙎‍♀️,1F64E-200D-2640-FE0F,4,763
+🙎🏾‍♀️,1F64E-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman pouting: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙎‍♀️,1F64E-200D-2640-FE0F,4,765
+🙎🏿‍♀️,1F64E-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman pouting: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙎‍♀️,1F64E-200D-2640-FE0F,4,767
+🙅,1F645,people-body,person-gesture,person gesturing NO,"forbidden, gesture, hand, no, not, person, prohibit",,Johanna Wellnitz,2018-04-18,,single,🙅,1F645,0.6,769
+🙅🏻,1F645-1F3FB,people-body,person-gesture,person gesturing NO: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🙅,1F645,1,770
+🙅🏼,1F645-1F3FC,people-body,person-gesture,person gesturing NO: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🙅,1F645,1,771
+🙅🏽,1F645-1F3FD,people-body,person-gesture,person gesturing NO: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🙅,1F645,1,772
+🙅🏾,1F645-1F3FE,people-body,person-gesture,person gesturing NO: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🙅,1F645,1,773
+🙅🏿,1F645-1F3FF,people-body,person-gesture,person gesturing NO: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🙅,1F645,1,774
+🙅‍♂️,1F645-200D-2642-FE0F,people-body,person-gesture,man gesturing NO,"forbidden, gesture, hand, man, no, not, prohibit",,Rifat Erdogan,2019-05-06,,single,🙅‍♂️,1F645-200D-2642-FE0F,4,775
+🙅🏻‍♂️,1F645-1F3FB-200D-2642-FE0F,people-body,person-gesture,man gesturing NO: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙅‍♂️,1F645-200D-2642-FE0F,4,777
+🙅🏼‍♂️,1F645-1F3FC-200D-2642-FE0F,people-body,person-gesture,man gesturing NO: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙅‍♂️,1F645-200D-2642-FE0F,4,779
+🙅🏽‍♂️,1F645-1F3FD-200D-2642-FE0F,people-body,person-gesture,man gesturing NO: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙅‍♂️,1F645-200D-2642-FE0F,4,781
+🙅🏾‍♂️,1F645-1F3FE-200D-2642-FE0F,people-body,person-gesture,man gesturing NO: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙅‍♂️,1F645-200D-2642-FE0F,4,783
+🙅🏿‍♂️,1F645-1F3FF-200D-2642-FE0F,people-body,person-gesture,man gesturing NO: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙅‍♂️,1F645-200D-2642-FE0F,4,785
+🙅‍♀️,1F645-200D-2640-FE0F,people-body,person-gesture,woman gesturing NO,"forbidden, gesture, hand, no, not, prohibit, woman",,Rifat Erdogan,2019-05-06,,single,🙅‍♀️,1F645-200D-2640-FE0F,4,787
+🙅🏻‍♀️,1F645-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman gesturing NO: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙅‍♀️,1F645-200D-2640-FE0F,4,789
+🙅🏼‍♀️,1F645-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman gesturing NO: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙅‍♀️,1F645-200D-2640-FE0F,4,791
+🙅🏽‍♀️,1F645-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman gesturing NO: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙅‍♀️,1F645-200D-2640-FE0F,4,793
+🙅🏾‍♀️,1F645-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman gesturing NO: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙅‍♀️,1F645-200D-2640-FE0F,4,795
+🙅🏿‍♀️,1F645-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman gesturing NO: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙅‍♀️,1F645-200D-2640-FE0F,4,797
+🙆,1F646,people-body,person-gesture,person gesturing OK,"exercise, gesture, gesturing, hand, ok, omg, person",,Johanna Wellnitz,2018-04-18,,single,🙆,1F646,0.6,799
+🙆🏻,1F646-1F3FB,people-body,person-gesture,person gesturing OK: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🙆,1F646,1,800
+🙆🏼,1F646-1F3FC,people-body,person-gesture,person gesturing OK: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🙆,1F646,1,801
+🙆🏽,1F646-1F3FD,people-body,person-gesture,person gesturing OK: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🙆,1F646,1,802
+🙆🏾,1F646-1F3FE,people-body,person-gesture,person gesturing OK: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🙆,1F646,1,803
+🙆🏿,1F646-1F3FF,people-body,person-gesture,person gesturing OK: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🙆,1F646,1,804
+🙆‍♂️,1F646-200D-2642-FE0F,people-body,person-gesture,man gesturing OK,"exercise, gesture, gesturing, hand, man, ok, omg",,Rifat Erdogan,2019-05-06,,single,🙆‍♂️,1F646-200D-2642-FE0F,4,805
+🙆🏻‍♂️,1F646-1F3FB-200D-2642-FE0F,people-body,person-gesture,man gesturing OK: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙆‍♂️,1F646-200D-2642-FE0F,4,807
+🙆🏼‍♂️,1F646-1F3FC-200D-2642-FE0F,people-body,person-gesture,man gesturing OK: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙆‍♂️,1F646-200D-2642-FE0F,4,809
+🙆🏽‍♂️,1F646-1F3FD-200D-2642-FE0F,people-body,person-gesture,man gesturing OK: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙆‍♂️,1F646-200D-2642-FE0F,4,811
+🙆🏾‍♂️,1F646-1F3FE-200D-2642-FE0F,people-body,person-gesture,man gesturing OK: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙆‍♂️,1F646-200D-2642-FE0F,4,813
+🙆🏿‍♂️,1F646-1F3FF-200D-2642-FE0F,people-body,person-gesture,man gesturing OK: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙆‍♂️,1F646-200D-2642-FE0F,4,815
+🙆‍♀️,1F646-200D-2640-FE0F,people-body,person-gesture,woman gesturing OK,"exercise, gesture, gesturing, hand, ok, omg, woman",,Rifat Erdogan,2019-05-06,,single,🙆‍♀️,1F646-200D-2640-FE0F,4,817
+🙆🏻‍♀️,1F646-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman gesturing OK: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙆‍♀️,1F646-200D-2640-FE0F,4,819
+🙆🏼‍♀️,1F646-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman gesturing OK: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙆‍♀️,1F646-200D-2640-FE0F,4,821
+🙆🏽‍♀️,1F646-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman gesturing OK: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙆‍♀️,1F646-200D-2640-FE0F,4,823
+🙆🏾‍♀️,1F646-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman gesturing OK: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙆‍♀️,1F646-200D-2640-FE0F,4,825
+🙆🏿‍♀️,1F646-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman gesturing OK: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙆‍♀️,1F646-200D-2640-FE0F,4,827
+💁,1F481,people-body,person-gesture,person tipping hand,"fetch, flick, flip, gossip, hand, person, sarcasm, sarcastic, sassy, seriously, tipping, whatever",,Johanna Wellnitz,2018-04-18,,single,💁,1F481,0.6,829
+💁🏻,1F481-1F3FB,people-body,person-gesture,person tipping hand: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,💁,1F481,1,830
+💁🏼,1F481-1F3FC,people-body,person-gesture,person tipping hand: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,💁,1F481,1,831
+💁🏽,1F481-1F3FD,people-body,person-gesture,person tipping hand: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,💁,1F481,1,832
+💁🏾,1F481-1F3FE,people-body,person-gesture,person tipping hand: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,💁,1F481,1,833
+💁🏿,1F481-1F3FF,people-body,person-gesture,person tipping hand: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,💁,1F481,1,834
+💁‍♂️,1F481-200D-2642-FE0F,people-body,person-gesture,man tipping hand,"fetch, flick, flip, gossip, hand, man, sarcasm, sarcastic, sassy, seriously, tipping, whatever",,Rifat Erdogan,2019-05-06,,single,💁‍♂️,1F481-200D-2642-FE0F,4,835
+💁🏻‍♂️,1F481-1F3FB-200D-2642-FE0F,people-body,person-gesture,man tipping hand: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,💁‍♂️,1F481-200D-2642-FE0F,4,837
+💁🏼‍♂️,1F481-1F3FC-200D-2642-FE0F,people-body,person-gesture,man tipping hand: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,💁‍♂️,1F481-200D-2642-FE0F,4,839
+💁🏽‍♂️,1F481-1F3FD-200D-2642-FE0F,people-body,person-gesture,man tipping hand: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,💁‍♂️,1F481-200D-2642-FE0F,4,841
+💁🏾‍♂️,1F481-1F3FE-200D-2642-FE0F,people-body,person-gesture,man tipping hand: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,💁‍♂️,1F481-200D-2642-FE0F,4,843
+💁🏿‍♂️,1F481-1F3FF-200D-2642-FE0F,people-body,person-gesture,man tipping hand: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,💁‍♂️,1F481-200D-2642-FE0F,4,845
+💁‍♀️,1F481-200D-2640-FE0F,people-body,person-gesture,woman tipping hand,"fetch, flick, flip, gossip, hand, sarcasm, sarcastic, sassy, seriously, tipping, whatever, woman",,Rifat Erdogan,2019-05-06,,single,💁‍♀️,1F481-200D-2640-FE0F,4,847
+💁🏻‍♀️,1F481-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman tipping hand: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,💁‍♀️,1F481-200D-2640-FE0F,4,849
+💁🏼‍♀️,1F481-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman tipping hand: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,💁‍♀️,1F481-200D-2640-FE0F,4,851
+💁🏽‍♀️,1F481-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman tipping hand: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,💁‍♀️,1F481-200D-2640-FE0F,4,853
+💁🏾‍♀️,1F481-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman tipping hand: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,💁‍♀️,1F481-200D-2640-FE0F,4,855
+💁🏿‍♀️,1F481-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman tipping hand: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,💁‍♀️,1F481-200D-2640-FE0F,4,857
+🙋,1F64B,people-body,person-gesture,person raising hand,"gesture, hand, here, know, me, person, pick, question, raise, raising",,Johanna Wellnitz,2018-04-18,,single,🙋,1F64B,0.6,859
+🙋🏻,1F64B-1F3FB,people-body,person-gesture,person raising hand: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🙋,1F64B,1,860
+🙋🏼,1F64B-1F3FC,people-body,person-gesture,person raising hand: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🙋,1F64B,1,861
+🙋🏽,1F64B-1F3FD,people-body,person-gesture,person raising hand: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🙋,1F64B,1,862
+🙋🏾,1F64B-1F3FE,people-body,person-gesture,person raising hand: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🙋,1F64B,1,863
+🙋🏿,1F64B-1F3FF,people-body,person-gesture,person raising hand: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🙋,1F64B,1,864
+🙋‍♂️,1F64B-200D-2642-FE0F,people-body,person-gesture,man raising hand,"gesture, hand, here, know, man, me, pick, question, raise, raising",,Rifat Erdogan,2019-05-06,,single,🙋‍♂️,1F64B-200D-2642-FE0F,4,865
+🙋🏻‍♂️,1F64B-1F3FB-200D-2642-FE0F,people-body,person-gesture,man raising hand: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙋‍♂️,1F64B-200D-2642-FE0F,4,867
+🙋🏼‍♂️,1F64B-1F3FC-200D-2642-FE0F,people-body,person-gesture,man raising hand: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙋‍♂️,1F64B-200D-2642-FE0F,4,869
+🙋🏽‍♂️,1F64B-1F3FD-200D-2642-FE0F,people-body,person-gesture,man raising hand: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙋‍♂️,1F64B-200D-2642-FE0F,4,871
+🙋🏾‍♂️,1F64B-1F3FE-200D-2642-FE0F,people-body,person-gesture,man raising hand: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙋‍♂️,1F64B-200D-2642-FE0F,4,873
+🙋🏿‍♂️,1F64B-1F3FF-200D-2642-FE0F,people-body,person-gesture,man raising hand: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙋‍♂️,1F64B-200D-2642-FE0F,4,875
+🙋‍♀️,1F64B-200D-2640-FE0F,people-body,person-gesture,woman raising hand,"gesture, hand, here, know, me, pick, question, raise, raising, woman",,Rifat Erdogan,2019-05-06,,single,🙋‍♀️,1F64B-200D-2640-FE0F,4,877
+🙋🏻‍♀️,1F64B-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman raising hand: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙋‍♀️,1F64B-200D-2640-FE0F,4,879
+🙋🏼‍♀️,1F64B-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman raising hand: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙋‍♀️,1F64B-200D-2640-FE0F,4,881
+🙋🏽‍♀️,1F64B-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman raising hand: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙋‍♀️,1F64B-200D-2640-FE0F,4,883
+🙋🏾‍♀️,1F64B-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman raising hand: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙋‍♀️,1F64B-200D-2640-FE0F,4,885
+🙋🏿‍♀️,1F64B-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman raising hand: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙋‍♀️,1F64B-200D-2640-FE0F,4,887
+🧏,1F9CF,people-body,person-gesture,deaf person,"accessibility, deaf, ear, gesture, hear, person",,Laura Dworatschek,2019-05-06,,single,🧏,1F9CF,12,889
+🧏🏻,1F9CF-1F3FB,people-body,person-gesture,deaf person: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🧏,1F9CF,12,890
+🧏🏼,1F9CF-1F3FC,people-body,person-gesture,deaf person: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🧏,1F9CF,12,891
+🧏🏽,1F9CF-1F3FD,people-body,person-gesture,deaf person: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🧏,1F9CF,12,892
+🧏🏾,1F9CF-1F3FE,people-body,person-gesture,deaf person: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🧏,1F9CF,12,893
+🧏🏿,1F9CF-1F3FF,people-body,person-gesture,deaf person: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🧏,1F9CF,12,894
+🧏‍♂️,1F9CF-200D-2642-FE0F,people-body,person-gesture,deaf man,"accessibility, deaf, ear, gesture, hear, man",,Laura Dworatschek,2019-05-13,,single,🧏‍♂️,1F9CF-200D-2642-FE0F,12,895
+🧏🏻‍♂️,1F9CF-1F3FB-200D-2642-FE0F,people-body,person-gesture,deaf man: light skin tone,,,Laura Dworatschek,2019-05-13,1,single,🧏‍♂️,1F9CF-200D-2642-FE0F,12,897
+🧏🏼‍♂️,1F9CF-1F3FC-200D-2642-FE0F,people-body,person-gesture,deaf man: medium-light skin tone,,,Laura Dworatschek,2019-05-13,2,single,🧏‍♂️,1F9CF-200D-2642-FE0F,12,899
+🧏🏽‍♂️,1F9CF-1F3FD-200D-2642-FE0F,people-body,person-gesture,deaf man: medium skin tone,,,Laura Dworatschek,2019-05-13,3,single,🧏‍♂️,1F9CF-200D-2642-FE0F,12,901
+🧏🏾‍♂️,1F9CF-1F3FE-200D-2642-FE0F,people-body,person-gesture,deaf man: medium-dark skin tone,,,Laura Dworatschek,2019-05-13,4,single,🧏‍♂️,1F9CF-200D-2642-FE0F,12,903
+🧏🏿‍♂️,1F9CF-1F3FF-200D-2642-FE0F,people-body,person-gesture,deaf man: dark skin tone,,,Laura Dworatschek,2019-05-13,5,single,🧏‍♂️,1F9CF-200D-2642-FE0F,12,905
+🧏‍♀️,1F9CF-200D-2640-FE0F,people-body,person-gesture,deaf woman,"accessibility, deaf, ear, gesture, hear, woman",,Laura Dworatschek,2019-05-13,,single,🧏‍♀️,1F9CF-200D-2640-FE0F,12,907
+🧏🏻‍♀️,1F9CF-1F3FB-200D-2640-FE0F,people-body,person-gesture,deaf woman: light skin tone,,,Laura Dworatschek,2019-05-13,1,single,🧏‍♀️,1F9CF-200D-2640-FE0F,12,909
+🧏🏼‍♀️,1F9CF-1F3FC-200D-2640-FE0F,people-body,person-gesture,deaf woman: medium-light skin tone,,,Laura Dworatschek,2019-05-13,2,single,🧏‍♀️,1F9CF-200D-2640-FE0F,12,911
+🧏🏽‍♀️,1F9CF-1F3FD-200D-2640-FE0F,people-body,person-gesture,deaf woman: medium skin tone,,,Laura Dworatschek,2019-05-13,3,single,🧏‍♀️,1F9CF-200D-2640-FE0F,12,913
+🧏🏾‍♀️,1F9CF-1F3FE-200D-2640-FE0F,people-body,person-gesture,deaf woman: medium-dark skin tone,,,Laura Dworatschek,2019-05-13,4,single,🧏‍♀️,1F9CF-200D-2640-FE0F,12,915
+🧏🏿‍♀️,1F9CF-1F3FF-200D-2640-FE0F,people-body,person-gesture,deaf woman: dark skin tone,,,Laura Dworatschek,2019-05-13,5,single,🧏‍♀️,1F9CF-200D-2640-FE0F,12,917
+🙇,1F647,people-body,person-gesture,person bowing,"apology, ask, beg, bow, bowing, favor, forgive, gesture, meditate, meditation, person, pity, regret, sorry",,Johanna Wellnitz,2018-04-18,,single,🙇,1F647,0.6,919
+🙇🏻,1F647-1F3FB,people-body,person-gesture,person bowing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🙇,1F647,1,920
+🙇🏼,1F647-1F3FC,people-body,person-gesture,person bowing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🙇,1F647,1,921
+🙇🏽,1F647-1F3FD,people-body,person-gesture,person bowing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🙇,1F647,1,922
+🙇🏾,1F647-1F3FE,people-body,person-gesture,person bowing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🙇,1F647,1,923
+🙇🏿,1F647-1F3FF,people-body,person-gesture,person bowing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🙇,1F647,1,924
+🙇‍♂️,1F647-200D-2642-FE0F,people-body,person-gesture,man bowing,"apology, ask, beg, bow, bowing, favor, forgive, gesture, man, meditate, meditation, pity, regret, sorry",,Rifat Erdogan,2019-05-06,,single,🙇‍♂️,1F647-200D-2642-FE0F,4,925
+🙇🏻‍♂️,1F647-1F3FB-200D-2642-FE0F,people-body,person-gesture,man bowing: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙇‍♂️,1F647-200D-2642-FE0F,4,927
+🙇🏼‍♂️,1F647-1F3FC-200D-2642-FE0F,people-body,person-gesture,man bowing: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙇‍♂️,1F647-200D-2642-FE0F,4,929
+🙇🏽‍♂️,1F647-1F3FD-200D-2642-FE0F,people-body,person-gesture,man bowing: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙇‍♂️,1F647-200D-2642-FE0F,4,931
+🙇🏾‍♂️,1F647-1F3FE-200D-2642-FE0F,people-body,person-gesture,man bowing: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙇‍♂️,1F647-200D-2642-FE0F,4,933
+🙇🏿‍♂️,1F647-1F3FF-200D-2642-FE0F,people-body,person-gesture,man bowing: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙇‍♂️,1F647-200D-2642-FE0F,4,935
+🙇‍♀️,1F647-200D-2640-FE0F,people-body,person-gesture,woman bowing,"apology, ask, beg, bow, bowing, favor, forgive, gesture, meditate, meditation, pity, regret, sorry, woman",,Rifat Erdogan,2019-05-06,,single,🙇‍♀️,1F647-200D-2640-FE0F,4,937
+🙇🏻‍♀️,1F647-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman bowing: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🙇‍♀️,1F647-200D-2640-FE0F,4,939
+🙇🏼‍♀️,1F647-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman bowing: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🙇‍♀️,1F647-200D-2640-FE0F,4,941
+🙇🏽‍♀️,1F647-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman bowing: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🙇‍♀️,1F647-200D-2640-FE0F,4,943
+🙇🏾‍♀️,1F647-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman bowing: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🙇‍♀️,1F647-200D-2640-FE0F,4,945
+🙇🏿‍♀️,1F647-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman bowing: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🙇‍♀️,1F647-200D-2640-FE0F,4,947
+🤦,1F926,people-body,person-gesture,person facepalming,"again, bewilder, disbelief, exasperation, facepalm, no, not, oh, omg, person, shock, smh",,Johanna Wellnitz,2018-04-18,,single,🤦,1F926,3,949
+🤦🏻,1F926-1F3FB,people-body,person-gesture,person facepalming: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤦,1F926,3,950
+🤦🏼,1F926-1F3FC,people-body,person-gesture,person facepalming: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤦,1F926,3,951
+🤦🏽,1F926-1F3FD,people-body,person-gesture,person facepalming: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤦,1F926,3,952
+🤦🏾,1F926-1F3FE,people-body,person-gesture,person facepalming: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤦,1F926,3,953
+🤦🏿,1F926-1F3FF,people-body,person-gesture,person facepalming: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤦,1F926,3,954
+🤦‍♂️,1F926-200D-2642-FE0F,people-body,person-gesture,man facepalming,"again, bewilder, disbelief, exasperation, facepalm, man, no, not, oh, omg, shock, smh",,Johanna Wellnitz,2018-04-18,,single,🤦‍♂️,1F926-200D-2642-FE0F,4,955
+🤦🏻‍♂️,1F926-1F3FB-200D-2642-FE0F,people-body,person-gesture,man facepalming: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤦‍♂️,1F926-200D-2642-FE0F,4,957
+🤦🏼‍♂️,1F926-1F3FC-200D-2642-FE0F,people-body,person-gesture,man facepalming: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤦‍♂️,1F926-200D-2642-FE0F,4,959
+🤦🏽‍♂️,1F926-1F3FD-200D-2642-FE0F,people-body,person-gesture,man facepalming: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤦‍♂️,1F926-200D-2642-FE0F,4,961
+🤦🏾‍♂️,1F926-1F3FE-200D-2642-FE0F,people-body,person-gesture,man facepalming: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤦‍♂️,1F926-200D-2642-FE0F,4,963
+🤦🏿‍♂️,1F926-1F3FF-200D-2642-FE0F,people-body,person-gesture,man facepalming: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤦‍♂️,1F926-200D-2642-FE0F,4,965
+🤦‍♀️,1F926-200D-2640-FE0F,people-body,person-gesture,woman facepalming,"again, bewilder, disbelief, exasperation, facepalm, no, not, oh, omg, shock, smh, woman",,Johanna Wellnitz,2018-04-18,,single,🤦‍♀️,1F926-200D-2640-FE0F,4,967
+🤦🏻‍♀️,1F926-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman facepalming: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤦‍♀️,1F926-200D-2640-FE0F,4,969
+🤦🏼‍♀️,1F926-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman facepalming: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤦‍♀️,1F926-200D-2640-FE0F,4,971
+🤦🏽‍♀️,1F926-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman facepalming: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤦‍♀️,1F926-200D-2640-FE0F,4,973
+🤦🏾‍♀️,1F926-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman facepalming: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤦‍♀️,1F926-200D-2640-FE0F,4,975
+🤦🏿‍♀️,1F926-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman facepalming: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤦‍♀️,1F926-200D-2640-FE0F,4,977
+🤷,1F937,people-body,person-gesture,person shrugging,"doubt, dunno, guess, idk, ignorance, indifference, knows, maybe, person, shrug, shrugging, whatever, who",,Johanna Wellnitz,2018-04-18,,single,🤷,1F937,3,979
+🤷🏻,1F937-1F3FB,people-body,person-gesture,person shrugging: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤷,1F937,3,980
+🤷🏼,1F937-1F3FC,people-body,person-gesture,person shrugging: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤷,1F937,3,981
+🤷🏽,1F937-1F3FD,people-body,person-gesture,person shrugging: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤷,1F937,3,982
+🤷🏾,1F937-1F3FE,people-body,person-gesture,person shrugging: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤷,1F937,3,983
+🤷🏿,1F937-1F3FF,people-body,person-gesture,person shrugging: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤷,1F937,3,984
+🤷‍♂️,1F937-200D-2642-FE0F,people-body,person-gesture,man shrugging,"doubt, dunno, guess, idk, ignorance, indifference, knows, man, maybe, shrug, shrugging, whatever, who",,Rifat Erdogan,2019-05-06,,single,🤷‍♂️,1F937-200D-2642-FE0F,4,985
+🤷🏻‍♂️,1F937-1F3FB-200D-2642-FE0F,people-body,person-gesture,man shrugging: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🤷‍♂️,1F937-200D-2642-FE0F,4,987
+🤷🏼‍♂️,1F937-1F3FC-200D-2642-FE0F,people-body,person-gesture,man shrugging: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🤷‍♂️,1F937-200D-2642-FE0F,4,989
+🤷🏽‍♂️,1F937-1F3FD-200D-2642-FE0F,people-body,person-gesture,man shrugging: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🤷‍♂️,1F937-200D-2642-FE0F,4,991
+🤷🏾‍♂️,1F937-1F3FE-200D-2642-FE0F,people-body,person-gesture,man shrugging: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🤷‍♂️,1F937-200D-2642-FE0F,4,993
+🤷🏿‍♂️,1F937-1F3FF-200D-2642-FE0F,people-body,person-gesture,man shrugging: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🤷‍♂️,1F937-200D-2642-FE0F,4,995
+🤷‍♀️,1F937-200D-2640-FE0F,people-body,person-gesture,woman shrugging,"doubt, dunno, guess, idk, ignorance, indifference, knows, maybe, shrug, shrugging, whatever, who, woman",,Rifat Erdogan,2019-05-06,,single,🤷‍♀️,1F937-200D-2640-FE0F,4,997
+🤷🏻‍♀️,1F937-1F3FB-200D-2640-FE0F,people-body,person-gesture,woman shrugging: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🤷‍♀️,1F937-200D-2640-FE0F,4,999
+🤷🏼‍♀️,1F937-1F3FC-200D-2640-FE0F,people-body,person-gesture,woman shrugging: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🤷‍♀️,1F937-200D-2640-FE0F,4,1001
+🤷🏽‍♀️,1F937-1F3FD-200D-2640-FE0F,people-body,person-gesture,woman shrugging: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🤷‍♀️,1F937-200D-2640-FE0F,4,1003
+🤷🏾‍♀️,1F937-1F3FE-200D-2640-FE0F,people-body,person-gesture,woman shrugging: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🤷‍♀️,1F937-200D-2640-FE0F,4,1005
+🤷🏿‍♀️,1F937-1F3FF-200D-2640-FE0F,people-body,person-gesture,woman shrugging: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🤷‍♀️,1F937-200D-2640-FE0F,4,1007
+🧑‍⚕️,1F9D1-200D-2695-FE0F,people-body,person-role,health worker,"doctor, health, healthcare, nurse, therapist, worker",,Benedikt Groß,2020-01-15,,single,🧑‍⚕️,1F9D1-200D-2695-FE0F,12.1,1009
+🧑🏻‍⚕️,1F9D1-1F3FB-200D-2695-FE0F,people-body,person-role,health worker: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍⚕️,1F9D1-200D-2695-FE0F,12.1,1011
+🧑🏼‍⚕️,1F9D1-1F3FC-200D-2695-FE0F,people-body,person-role,health worker: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍⚕️,1F9D1-200D-2695-FE0F,12.1,1013
+🧑🏽‍⚕️,1F9D1-1F3FD-200D-2695-FE0F,people-body,person-role,health worker: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍⚕️,1F9D1-200D-2695-FE0F,12.1,1015
+🧑🏾‍⚕️,1F9D1-1F3FE-200D-2695-FE0F,people-body,person-role,health worker: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍⚕️,1F9D1-200D-2695-FE0F,12.1,1017
+🧑🏿‍⚕️,1F9D1-1F3FF-200D-2695-FE0F,people-body,person-role,health worker: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍⚕️,1F9D1-200D-2695-FE0F,12.1,1019
+👨‍⚕️,1F468-200D-2695-FE0F,people-body,person-role,man health worker,"doctor, health, healthcare, man, nurse, therapist, worker",,Lisa Thiel,2018-04-18,,single,👨‍⚕️,1F468-200D-2695-FE0F,4,1021
+👨🏻‍⚕️,1F468-1F3FB-200D-2695-FE0F,people-body,person-role,man health worker: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍⚕️,1F468-200D-2695-FE0F,4,1023
+👨🏼‍⚕️,1F468-1F3FC-200D-2695-FE0F,people-body,person-role,man health worker: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍⚕️,1F468-200D-2695-FE0F,4,1025
+👨🏽‍⚕️,1F468-1F3FD-200D-2695-FE0F,people-body,person-role,man health worker: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍⚕️,1F468-200D-2695-FE0F,4,1027
+👨🏾‍⚕️,1F468-1F3FE-200D-2695-FE0F,people-body,person-role,man health worker: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍⚕️,1F468-200D-2695-FE0F,4,1029
+👨🏿‍⚕️,1F468-1F3FF-200D-2695-FE0F,people-body,person-role,man health worker: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍⚕️,1F468-200D-2695-FE0F,4,1031
+👩‍⚕️,1F469-200D-2695-FE0F,people-body,person-role,woman health worker,"doctor, health, healthcare, nurse, therapist, woman, worker",,Lisa Thiel,2018-04-18,,single,👩‍⚕️,1F469-200D-2695-FE0F,4,1033
+👩🏻‍⚕️,1F469-1F3FB-200D-2695-FE0F,people-body,person-role,woman health worker: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍⚕️,1F469-200D-2695-FE0F,4,1035
+👩🏼‍⚕️,1F469-1F3FC-200D-2695-FE0F,people-body,person-role,woman health worker: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍⚕️,1F469-200D-2695-FE0F,4,1037
+👩🏽‍⚕️,1F469-1F3FD-200D-2695-FE0F,people-body,person-role,woman health worker: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍⚕️,1F469-200D-2695-FE0F,4,1039
+👩🏾‍⚕️,1F469-1F3FE-200D-2695-FE0F,people-body,person-role,woman health worker: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍⚕️,1F469-200D-2695-FE0F,4,1041
+👩🏿‍⚕️,1F469-1F3FF-200D-2695-FE0F,people-body,person-role,woman health worker: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍⚕️,1F469-200D-2695-FE0F,4,1043
+🧑‍🎓,1F9D1-200D-1F393,people-body,person-role,student,graduate,,Benedikt Groß,2020-01-15,,single,🧑‍🎓,1F9D1-200D-1F393,12.1,1045
+🧑🏻‍🎓,1F9D1-1F3FB-200D-1F393,people-body,person-role,student: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🎓,1F9D1-200D-1F393,12.1,1046
+🧑🏼‍🎓,1F9D1-1F3FC-200D-1F393,people-body,person-role,student: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🎓,1F9D1-200D-1F393,12.1,1047
+🧑🏽‍🎓,1F9D1-1F3FD-200D-1F393,people-body,person-role,student: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🎓,1F9D1-200D-1F393,12.1,1048
+🧑🏾‍🎓,1F9D1-1F3FE-200D-1F393,people-body,person-role,student: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🎓,1F9D1-200D-1F393,12.1,1049
+🧑🏿‍🎓,1F9D1-1F3FF-200D-1F393,people-body,person-role,student: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🎓,1F9D1-200D-1F393,12.1,1050
+👨‍🎓,1F468-200D-1F393,people-body,person-role,man student,"graduate, man, student",,Lisa Thiel,2018-04-18,,single,👨‍🎓,1F468-200D-1F393,4,1051
+👨🏻‍🎓,1F468-1F3FB-200D-1F393,people-body,person-role,man student: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🎓,1F468-200D-1F393,4,1052
+👨🏼‍🎓,1F468-1F3FC-200D-1F393,people-body,person-role,man student: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🎓,1F468-200D-1F393,4,1053
+👨🏽‍🎓,1F468-1F3FD-200D-1F393,people-body,person-role,man student: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🎓,1F468-200D-1F393,4,1054
+👨🏾‍🎓,1F468-1F3FE-200D-1F393,people-body,person-role,man student: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🎓,1F468-200D-1F393,4,1055
+👨🏿‍🎓,1F468-1F3FF-200D-1F393,people-body,person-role,man student: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🎓,1F468-200D-1F393,4,1056
+👩‍🎓,1F469-200D-1F393,people-body,person-role,woman student,"graduate, student, woman",,Lisa Thiel,2018-04-18,,single,👩‍🎓,1F469-200D-1F393,4,1057
+👩🏻‍🎓,1F469-1F3FB-200D-1F393,people-body,person-role,woman student: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🎓,1F469-200D-1F393,4,1058
+👩🏼‍🎓,1F469-1F3FC-200D-1F393,people-body,person-role,woman student: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🎓,1F469-200D-1F393,4,1059
+👩🏽‍🎓,1F469-1F3FD-200D-1F393,people-body,person-role,woman student: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🎓,1F469-200D-1F393,4,1060
+👩🏾‍🎓,1F469-1F3FE-200D-1F393,people-body,person-role,woman student: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🎓,1F469-200D-1F393,4,1061
+👩🏿‍🎓,1F469-1F3FF-200D-1F393,people-body,person-role,woman student: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🎓,1F469-200D-1F393,4,1062
+🧑‍🏫,1F9D1-200D-1F3EB,people-body,person-role,teacher,"instructor, lecturer, professor",,Benedikt Groß,2020-01-15,,single,🧑‍🏫,1F9D1-200D-1F3EB,12.1,1063
+🧑🏻‍🏫,1F9D1-1F3FB-200D-1F3EB,people-body,person-role,teacher: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🏫,1F9D1-200D-1F3EB,12.1,1064
+🧑🏼‍🏫,1F9D1-1F3FC-200D-1F3EB,people-body,person-role,teacher: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🏫,1F9D1-200D-1F3EB,12.1,1065
+🧑🏽‍🏫,1F9D1-1F3FD-200D-1F3EB,people-body,person-role,teacher: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🏫,1F9D1-200D-1F3EB,12.1,1066
+🧑🏾‍🏫,1F9D1-1F3FE-200D-1F3EB,people-body,person-role,teacher: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🏫,1F9D1-200D-1F3EB,12.1,1067
+🧑🏿‍🏫,1F9D1-1F3FF-200D-1F3EB,people-body,person-role,teacher: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🏫,1F9D1-200D-1F3EB,12.1,1068
+👨‍🏫,1F468-200D-1F3EB,people-body,person-role,man teacher,"instructor, lecturer, man, professor, teacher",,Lisa Thiel,2018-04-18,,single,👨‍🏫,1F468-200D-1F3EB,4,1069
+👨🏻‍🏫,1F468-1F3FB-200D-1F3EB,people-body,person-role,man teacher: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🏫,1F468-200D-1F3EB,4,1070
+👨🏼‍🏫,1F468-1F3FC-200D-1F3EB,people-body,person-role,man teacher: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🏫,1F468-200D-1F3EB,4,1071
+👨🏽‍🏫,1F468-1F3FD-200D-1F3EB,people-body,person-role,man teacher: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🏫,1F468-200D-1F3EB,4,1072
+👨🏾‍🏫,1F468-1F3FE-200D-1F3EB,people-body,person-role,man teacher: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🏫,1F468-200D-1F3EB,4,1073
+👨🏿‍🏫,1F468-1F3FF-200D-1F3EB,people-body,person-role,man teacher: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🏫,1F468-200D-1F3EB,4,1074
+👩‍🏫,1F469-200D-1F3EB,people-body,person-role,woman teacher,"instructor, lecturer, professor, teacher, woman",,Lisa Thiel,2018-04-18,,single,👩‍🏫,1F469-200D-1F3EB,4,1075
+👩🏻‍🏫,1F469-1F3FB-200D-1F3EB,people-body,person-role,woman teacher: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🏫,1F469-200D-1F3EB,4,1076
+👩🏼‍🏫,1F469-1F3FC-200D-1F3EB,people-body,person-role,woman teacher: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🏫,1F469-200D-1F3EB,4,1077
+👩🏽‍🏫,1F469-1F3FD-200D-1F3EB,people-body,person-role,woman teacher: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🏫,1F469-200D-1F3EB,4,1078
+👩🏾‍🏫,1F469-1F3FE-200D-1F3EB,people-body,person-role,woman teacher: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🏫,1F469-200D-1F3EB,4,1079
+👩🏿‍🏫,1F469-1F3FF-200D-1F3EB,people-body,person-role,woman teacher: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🏫,1F469-200D-1F3EB,4,1080
+🧑‍⚖️,1F9D1-200D-2696-FE0F,people-body,person-role,judge,"justice, law, scales",,Benedikt Groß,2020-01-15,,single,🧑‍⚖️,1F9D1-200D-2696-FE0F,12.1,1081
+🧑🏻‍⚖️,1F9D1-1F3FB-200D-2696-FE0F,people-body,person-role,judge: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍⚖️,1F9D1-200D-2696-FE0F,12.1,1083
+🧑🏼‍⚖️,1F9D1-1F3FC-200D-2696-FE0F,people-body,person-role,judge: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍⚖️,1F9D1-200D-2696-FE0F,12.1,1085
+🧑🏽‍⚖️,1F9D1-1F3FD-200D-2696-FE0F,people-body,person-role,judge: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍⚖️,1F9D1-200D-2696-FE0F,12.1,1087
+🧑🏾‍⚖️,1F9D1-1F3FE-200D-2696-FE0F,people-body,person-role,judge: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍⚖️,1F9D1-200D-2696-FE0F,12.1,1089
+🧑🏿‍⚖️,1F9D1-1F3FF-200D-2696-FE0F,people-body,person-role,judge: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍⚖️,1F9D1-200D-2696-FE0F,12.1,1091
+👨‍⚖️,1F468-200D-2696-FE0F,people-body,person-role,man judge,"judge, justice, law, man, scales",,Lisa Thiel,2018-04-18,,single,👨‍⚖️,1F468-200D-2696-FE0F,4,1093
+👨🏻‍⚖️,1F468-1F3FB-200D-2696-FE0F,people-body,person-role,man judge: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍⚖️,1F468-200D-2696-FE0F,4,1095
+👨🏼‍⚖️,1F468-1F3FC-200D-2696-FE0F,people-body,person-role,man judge: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍⚖️,1F468-200D-2696-FE0F,4,1097
+👨🏽‍⚖️,1F468-1F3FD-200D-2696-FE0F,people-body,person-role,man judge: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍⚖️,1F468-200D-2696-FE0F,4,1099
+👨🏾‍⚖️,1F468-1F3FE-200D-2696-FE0F,people-body,person-role,man judge: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍⚖️,1F468-200D-2696-FE0F,4,1101
+👨🏿‍⚖️,1F468-1F3FF-200D-2696-FE0F,people-body,person-role,man judge: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍⚖️,1F468-200D-2696-FE0F,4,1103
+👩‍⚖️,1F469-200D-2696-FE0F,people-body,person-role,woman judge,"judge, justice, law, scales, woman",,Lisa Thiel,2018-04-18,,single,👩‍⚖️,1F469-200D-2696-FE0F,4,1105
+👩🏻‍⚖️,1F469-1F3FB-200D-2696-FE0F,people-body,person-role,woman judge: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍⚖️,1F469-200D-2696-FE0F,4,1107
+👩🏼‍⚖️,1F469-1F3FC-200D-2696-FE0F,people-body,person-role,woman judge: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍⚖️,1F469-200D-2696-FE0F,4,1109
+👩🏽‍⚖️,1F469-1F3FD-200D-2696-FE0F,people-body,person-role,woman judge: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍⚖️,1F469-200D-2696-FE0F,4,1111
+👩🏾‍⚖️,1F469-1F3FE-200D-2696-FE0F,people-body,person-role,woman judge: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍⚖️,1F469-200D-2696-FE0F,4,1113
+👩🏿‍⚖️,1F469-1F3FF-200D-2696-FE0F,people-body,person-role,woman judge: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍⚖️,1F469-200D-2696-FE0F,4,1115
+🧑‍🌾,1F9D1-200D-1F33E,people-body,person-role,farmer,"gardener, rancher",,Benedikt Groß,2020-01-15,,single,🧑‍🌾,1F9D1-200D-1F33E,12.1,1117
+🧑🏻‍🌾,1F9D1-1F3FB-200D-1F33E,people-body,person-role,farmer: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🌾,1F9D1-200D-1F33E,12.1,1118
+🧑🏼‍🌾,1F9D1-1F3FC-200D-1F33E,people-body,person-role,farmer: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🌾,1F9D1-200D-1F33E,12.1,1119
+🧑🏽‍🌾,1F9D1-1F3FD-200D-1F33E,people-body,person-role,farmer: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🌾,1F9D1-200D-1F33E,12.1,1120
+🧑🏾‍🌾,1F9D1-1F3FE-200D-1F33E,people-body,person-role,farmer: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🌾,1F9D1-200D-1F33E,12.1,1121
+🧑🏿‍🌾,1F9D1-1F3FF-200D-1F33E,people-body,person-role,farmer: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🌾,1F9D1-200D-1F33E,12.1,1122
+👨‍🌾,1F468-200D-1F33E,people-body,person-role,man farmer,"farmer, gardener, man, rancher",,Lisa Thiel,2018-04-18,,single,👨‍🌾,1F468-200D-1F33E,4,1123
+👨🏻‍🌾,1F468-1F3FB-200D-1F33E,people-body,person-role,man farmer: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🌾,1F468-200D-1F33E,4,1124
+👨🏼‍🌾,1F468-1F3FC-200D-1F33E,people-body,person-role,man farmer: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🌾,1F468-200D-1F33E,4,1125
+👨🏽‍🌾,1F468-1F3FD-200D-1F33E,people-body,person-role,man farmer: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🌾,1F468-200D-1F33E,4,1126
+👨🏾‍🌾,1F468-1F3FE-200D-1F33E,people-body,person-role,man farmer: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🌾,1F468-200D-1F33E,4,1127
+👨🏿‍🌾,1F468-1F3FF-200D-1F33E,people-body,person-role,man farmer: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🌾,1F468-200D-1F33E,4,1128
+👩‍🌾,1F469-200D-1F33E,people-body,person-role,woman farmer,"farmer, gardener, rancher, woman",,Lisa Thiel,2018-04-18,,single,👩‍🌾,1F469-200D-1F33E,4,1129
+👩🏻‍🌾,1F469-1F3FB-200D-1F33E,people-body,person-role,woman farmer: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🌾,1F469-200D-1F33E,4,1130
+👩🏼‍🌾,1F469-1F3FC-200D-1F33E,people-body,person-role,woman farmer: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🌾,1F469-200D-1F33E,4,1131
+👩🏽‍🌾,1F469-1F3FD-200D-1F33E,people-body,person-role,woman farmer: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🌾,1F469-200D-1F33E,4,1132
+👩🏾‍🌾,1F469-1F3FE-200D-1F33E,people-body,person-role,woman farmer: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🌾,1F469-200D-1F33E,4,1133
+👩🏿‍🌾,1F469-1F3FF-200D-1F33E,people-body,person-role,woman farmer: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🌾,1F469-200D-1F33E,4,1134
+🧑‍🍳,1F9D1-200D-1F373,people-body,person-role,cook,chef,,Benedikt Groß,2020-01-15,,single,🧑‍🍳,1F9D1-200D-1F373,12.1,1135
+🧑🏻‍🍳,1F9D1-1F3FB-200D-1F373,people-body,person-role,cook: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🍳,1F9D1-200D-1F373,12.1,1136
+🧑🏼‍🍳,1F9D1-1F3FC-200D-1F373,people-body,person-role,cook: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🍳,1F9D1-200D-1F373,12.1,1137
+🧑🏽‍🍳,1F9D1-1F3FD-200D-1F373,people-body,person-role,cook: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🍳,1F9D1-200D-1F373,12.1,1138
+🧑🏾‍🍳,1F9D1-1F3FE-200D-1F373,people-body,person-role,cook: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🍳,1F9D1-200D-1F373,12.1,1139
+🧑🏿‍🍳,1F9D1-1F3FF-200D-1F373,people-body,person-role,cook: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🍳,1F9D1-200D-1F373,12.1,1140
+👨‍🍳,1F468-200D-1F373,people-body,person-role,man cook,"chef, cook, man",,Lisa Thiel,2018-04-18,,single,👨‍🍳,1F468-200D-1F373,4,1141
+👨🏻‍🍳,1F468-1F3FB-200D-1F373,people-body,person-role,man cook: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🍳,1F468-200D-1F373,4,1142
+👨🏼‍🍳,1F468-1F3FC-200D-1F373,people-body,person-role,man cook: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🍳,1F468-200D-1F373,4,1143
+👨🏽‍🍳,1F468-1F3FD-200D-1F373,people-body,person-role,man cook: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🍳,1F468-200D-1F373,4,1144
+👨🏾‍🍳,1F468-1F3FE-200D-1F373,people-body,person-role,man cook: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🍳,1F468-200D-1F373,4,1145
+👨🏿‍🍳,1F468-1F3FF-200D-1F373,people-body,person-role,man cook: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🍳,1F468-200D-1F373,4,1146
+👩‍🍳,1F469-200D-1F373,people-body,person-role,woman cook,"chef, cook, woman",,Lisa Thiel,2018-04-18,,single,👩‍🍳,1F469-200D-1F373,4,1147
+👩🏻‍🍳,1F469-1F3FB-200D-1F373,people-body,person-role,woman cook: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🍳,1F469-200D-1F373,4,1148
+👩🏼‍🍳,1F469-1F3FC-200D-1F373,people-body,person-role,woman cook: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🍳,1F469-200D-1F373,4,1149
+👩🏽‍🍳,1F469-1F3FD-200D-1F373,people-body,person-role,woman cook: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🍳,1F469-200D-1F373,4,1150
+👩🏾‍🍳,1F469-1F3FE-200D-1F373,people-body,person-role,woman cook: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🍳,1F469-200D-1F373,4,1151
+👩🏿‍🍳,1F469-1F3FF-200D-1F373,people-body,person-role,woman cook: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🍳,1F469-200D-1F373,4,1152
+🧑‍🔧,1F9D1-200D-1F527,people-body,person-role,mechanic,"electrician, plumber, tradesperson",,Benedikt Groß,2020-01-15,,single,🧑‍🔧,1F9D1-200D-1F527,12.1,1153
+🧑🏻‍🔧,1F9D1-1F3FB-200D-1F527,people-body,person-role,mechanic: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🔧,1F9D1-200D-1F527,12.1,1154
+🧑🏼‍🔧,1F9D1-1F3FC-200D-1F527,people-body,person-role,mechanic: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🔧,1F9D1-200D-1F527,12.1,1155
+🧑🏽‍🔧,1F9D1-1F3FD-200D-1F527,people-body,person-role,mechanic: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🔧,1F9D1-200D-1F527,12.1,1156
+🧑🏾‍🔧,1F9D1-1F3FE-200D-1F527,people-body,person-role,mechanic: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🔧,1F9D1-200D-1F527,12.1,1157
+🧑🏿‍🔧,1F9D1-1F3FF-200D-1F527,people-body,person-role,mechanic: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🔧,1F9D1-200D-1F527,12.1,1158
+👨‍🔧,1F468-200D-1F527,people-body,person-role,man mechanic,"electrician, man, mechanic, plumber, tradesperson",,Lisa Thiel,2018-04-18,,single,👨‍🔧,1F468-200D-1F527,4,1159
+👨🏻‍🔧,1F468-1F3FB-200D-1F527,people-body,person-role,man mechanic: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🔧,1F468-200D-1F527,4,1160
+👨🏼‍🔧,1F468-1F3FC-200D-1F527,people-body,person-role,man mechanic: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🔧,1F468-200D-1F527,4,1161
+👨🏽‍🔧,1F468-1F3FD-200D-1F527,people-body,person-role,man mechanic: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🔧,1F468-200D-1F527,4,1162
+👨🏾‍🔧,1F468-1F3FE-200D-1F527,people-body,person-role,man mechanic: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🔧,1F468-200D-1F527,4,1163
+👨🏿‍🔧,1F468-1F3FF-200D-1F527,people-body,person-role,man mechanic: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🔧,1F468-200D-1F527,4,1164
+👩‍🔧,1F469-200D-1F527,people-body,person-role,woman mechanic,"electrician, mechanic, plumber, tradesperson, woman",,Lisa Thiel,2018-04-18,,single,👩‍🔧,1F469-200D-1F527,4,1165
+👩🏻‍🔧,1F469-1F3FB-200D-1F527,people-body,person-role,woman mechanic: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🔧,1F469-200D-1F527,4,1166
+👩🏼‍🔧,1F469-1F3FC-200D-1F527,people-body,person-role,woman mechanic: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🔧,1F469-200D-1F527,4,1167
+👩🏽‍🔧,1F469-1F3FD-200D-1F527,people-body,person-role,woman mechanic: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🔧,1F469-200D-1F527,4,1168
+👩🏾‍🔧,1F469-1F3FE-200D-1F527,people-body,person-role,woman mechanic: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🔧,1F469-200D-1F527,4,1169
+👩🏿‍🔧,1F469-1F3FF-200D-1F527,people-body,person-role,woman mechanic: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🔧,1F469-200D-1F527,4,1170
+🧑‍🏭,1F9D1-200D-1F3ED,people-body,person-role,factory worker,"assembly, factory, industrial, worker",,Benedikt Groß,2020-01-15,,single,🧑‍🏭,1F9D1-200D-1F3ED,12.1,1171
+🧑🏻‍🏭,1F9D1-1F3FB-200D-1F3ED,people-body,person-role,factory worker: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🏭,1F9D1-200D-1F3ED,12.1,1172
+🧑🏼‍🏭,1F9D1-1F3FC-200D-1F3ED,people-body,person-role,factory worker: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🏭,1F9D1-200D-1F3ED,12.1,1173
+🧑🏽‍🏭,1F9D1-1F3FD-200D-1F3ED,people-body,person-role,factory worker: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🏭,1F9D1-200D-1F3ED,12.1,1174
+🧑🏾‍🏭,1F9D1-1F3FE-200D-1F3ED,people-body,person-role,factory worker: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🏭,1F9D1-200D-1F3ED,12.1,1175
+🧑🏿‍🏭,1F9D1-1F3FF-200D-1F3ED,people-body,person-role,factory worker: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🏭,1F9D1-200D-1F3ED,12.1,1176
+👨‍🏭,1F468-200D-1F3ED,people-body,person-role,man factory worker,"assembly, factory, industrial, man, worker",,Lisa Thiel,2018-04-18,,single,👨‍🏭,1F468-200D-1F3ED,4,1177
+👨🏻‍🏭,1F468-1F3FB-200D-1F3ED,people-body,person-role,man factory worker: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🏭,1F468-200D-1F3ED,4,1178
+👨🏼‍🏭,1F468-1F3FC-200D-1F3ED,people-body,person-role,man factory worker: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🏭,1F468-200D-1F3ED,4,1179
+👨🏽‍🏭,1F468-1F3FD-200D-1F3ED,people-body,person-role,man factory worker: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🏭,1F468-200D-1F3ED,4,1180
+👨🏾‍🏭,1F468-1F3FE-200D-1F3ED,people-body,person-role,man factory worker: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🏭,1F468-200D-1F3ED,4,1181
+👨🏿‍🏭,1F468-1F3FF-200D-1F3ED,people-body,person-role,man factory worker: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🏭,1F468-200D-1F3ED,4,1182
+👩‍🏭,1F469-200D-1F3ED,people-body,person-role,woman factory worker,"assembly, factory, industrial, woman, worker",,Lisa Thiel,2018-04-18,,single,👩‍🏭,1F469-200D-1F3ED,4,1183
+👩🏻‍🏭,1F469-1F3FB-200D-1F3ED,people-body,person-role,woman factory worker: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🏭,1F469-200D-1F3ED,4,1184
+👩🏼‍🏭,1F469-1F3FC-200D-1F3ED,people-body,person-role,woman factory worker: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🏭,1F469-200D-1F3ED,4,1185
+👩🏽‍🏭,1F469-1F3FD-200D-1F3ED,people-body,person-role,woman factory worker: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🏭,1F469-200D-1F3ED,4,1186
+👩🏾‍🏭,1F469-1F3FE-200D-1F3ED,people-body,person-role,woman factory worker: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🏭,1F469-200D-1F3ED,4,1187
+👩🏿‍🏭,1F469-1F3FF-200D-1F3ED,people-body,person-role,woman factory worker: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🏭,1F469-200D-1F3ED,4,1188
+🧑‍💼,1F9D1-200D-1F4BC,people-body,person-role,office worker,"architect, business, manager, office, white-collar, worker",,Benedikt Groß,2020-01-15,,single,🧑‍💼,1F9D1-200D-1F4BC,12.1,1189
+🧑🏻‍💼,1F9D1-1F3FB-200D-1F4BC,people-body,person-role,office worker: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍💼,1F9D1-200D-1F4BC,12.1,1190
+🧑🏼‍💼,1F9D1-1F3FC-200D-1F4BC,people-body,person-role,office worker: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍💼,1F9D1-200D-1F4BC,12.1,1191
+🧑🏽‍💼,1F9D1-1F3FD-200D-1F4BC,people-body,person-role,office worker: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍💼,1F9D1-200D-1F4BC,12.1,1192
+🧑🏾‍💼,1F9D1-1F3FE-200D-1F4BC,people-body,person-role,office worker: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍💼,1F9D1-200D-1F4BC,12.1,1193
+🧑🏿‍💼,1F9D1-1F3FF-200D-1F4BC,people-body,person-role,office worker: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍💼,1F9D1-200D-1F4BC,12.1,1194
+👨‍💼,1F468-200D-1F4BC,people-body,person-role,man office worker,"architect, business, man, manager, office, white-collar, worker",,Lisa Thiel,2018-04-18,,single,👨‍💼,1F468-200D-1F4BC,4,1195
+👨🏻‍💼,1F468-1F3FB-200D-1F4BC,people-body,person-role,man office worker: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍💼,1F468-200D-1F4BC,4,1196
+👨🏼‍💼,1F468-1F3FC-200D-1F4BC,people-body,person-role,man office worker: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍💼,1F468-200D-1F4BC,4,1197
+👨🏽‍💼,1F468-1F3FD-200D-1F4BC,people-body,person-role,man office worker: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍💼,1F468-200D-1F4BC,4,1198
+👨🏾‍💼,1F468-1F3FE-200D-1F4BC,people-body,person-role,man office worker: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍💼,1F468-200D-1F4BC,4,1199
+👨🏿‍💼,1F468-1F3FF-200D-1F4BC,people-body,person-role,man office worker: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍💼,1F468-200D-1F4BC,4,1200
+👩‍💼,1F469-200D-1F4BC,people-body,person-role,woman office worker,"architect, business, manager, office, white-collar, woman, worker",,Lisa Thiel,2018-04-18,,single,👩‍💼,1F469-200D-1F4BC,4,1201
+👩🏻‍💼,1F469-1F3FB-200D-1F4BC,people-body,person-role,woman office worker: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍💼,1F469-200D-1F4BC,4,1202
+👩🏼‍💼,1F469-1F3FC-200D-1F4BC,people-body,person-role,woman office worker: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍💼,1F469-200D-1F4BC,4,1203
+👩🏽‍💼,1F469-1F3FD-200D-1F4BC,people-body,person-role,woman office worker: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍💼,1F469-200D-1F4BC,4,1204
+👩🏾‍💼,1F469-1F3FE-200D-1F4BC,people-body,person-role,woman office worker: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍💼,1F469-200D-1F4BC,4,1205
+👩🏿‍💼,1F469-1F3FF-200D-1F4BC,people-body,person-role,woman office worker: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍💼,1F469-200D-1F4BC,4,1206
+🧑‍🔬,1F9D1-200D-1F52C,people-body,person-role,scientist,"biologist, chemist, engineer, mathematician, physicist",,Benedikt Groß,2020-01-15,,single,🧑‍🔬,1F9D1-200D-1F52C,12.1,1207
+🧑🏻‍🔬,1F9D1-1F3FB-200D-1F52C,people-body,person-role,scientist: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🔬,1F9D1-200D-1F52C,12.1,1208
+🧑🏼‍🔬,1F9D1-1F3FC-200D-1F52C,people-body,person-role,scientist: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🔬,1F9D1-200D-1F52C,12.1,1209
+🧑🏽‍🔬,1F9D1-1F3FD-200D-1F52C,people-body,person-role,scientist: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🔬,1F9D1-200D-1F52C,12.1,1210
+🧑🏾‍🔬,1F9D1-1F3FE-200D-1F52C,people-body,person-role,scientist: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🔬,1F9D1-200D-1F52C,12.1,1211
+🧑🏿‍🔬,1F9D1-1F3FF-200D-1F52C,people-body,person-role,scientist: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🔬,1F9D1-200D-1F52C,12.1,1212
+👨‍🔬,1F468-200D-1F52C,people-body,person-role,man scientist,"biologist, chemist, engineer, man, mathematician, physicist, scientist",,Liz Bravo,2020-12-22,,single,👨‍🔬,1F468-200D-1F52C,4,1213
+👨🏻‍🔬,1F468-1F3FB-200D-1F52C,people-body,person-role,man scientist: light skin tone,,,Liz Bravo,2020-12-22,1,single,👨‍🔬,1F468-200D-1F52C,4,1214
+👨🏼‍🔬,1F468-1F3FC-200D-1F52C,people-body,person-role,man scientist: medium-light skin tone,,,Liz Bravo,2020-12-22,2,single,👨‍🔬,1F468-200D-1F52C,4,1215
+👨🏽‍🔬,1F468-1F3FD-200D-1F52C,people-body,person-role,man scientist: medium skin tone,,,Liz Bravo,2020-12-22,3,single,👨‍🔬,1F468-200D-1F52C,4,1216
+👨🏾‍🔬,1F468-1F3FE-200D-1F52C,people-body,person-role,man scientist: medium-dark skin tone,,,Liz Bravo,2020-12-22,4,single,👨‍🔬,1F468-200D-1F52C,4,1217
+👨🏿‍🔬,1F468-1F3FF-200D-1F52C,people-body,person-role,man scientist: dark skin tone,,,Liz Bravo,2020-12-22,5,single,👨‍🔬,1F468-200D-1F52C,4,1218
+👩‍🔬,1F469-200D-1F52C,people-body,person-role,woman scientist,"biologist, chemist, engineer, mathematician, physicist, scientist, woman",,Lisa Thiel,2018-04-18,,single,👩‍🔬,1F469-200D-1F52C,4,1219
+👩🏻‍🔬,1F469-1F3FB-200D-1F52C,people-body,person-role,woman scientist: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🔬,1F469-200D-1F52C,4,1220
+👩🏼‍🔬,1F469-1F3FC-200D-1F52C,people-body,person-role,woman scientist: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🔬,1F469-200D-1F52C,4,1221
+👩🏽‍🔬,1F469-1F3FD-200D-1F52C,people-body,person-role,woman scientist: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🔬,1F469-200D-1F52C,4,1222
+👩🏾‍🔬,1F469-1F3FE-200D-1F52C,people-body,person-role,woman scientist: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🔬,1F469-200D-1F52C,4,1223
+👩🏿‍🔬,1F469-1F3FF-200D-1F52C,people-body,person-role,woman scientist: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🔬,1F469-200D-1F52C,4,1224
+🧑‍💻,1F9D1-200D-1F4BB,people-body,person-role,technologist,"coder, computer, developer, inventor, software",,Benedikt Groß,2020-01-15,,single,🧑‍💻,1F9D1-200D-1F4BB,12.1,1225
+🧑🏻‍💻,1F9D1-1F3FB-200D-1F4BB,people-body,person-role,technologist: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍💻,1F9D1-200D-1F4BB,12.1,1226
+🧑🏼‍💻,1F9D1-1F3FC-200D-1F4BB,people-body,person-role,technologist: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍💻,1F9D1-200D-1F4BB,12.1,1227
+🧑🏽‍💻,1F9D1-1F3FD-200D-1F4BB,people-body,person-role,technologist: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍💻,1F9D1-200D-1F4BB,12.1,1228
+🧑🏾‍💻,1F9D1-1F3FE-200D-1F4BB,people-body,person-role,technologist: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍💻,1F9D1-200D-1F4BB,12.1,1229
+🧑🏿‍💻,1F9D1-1F3FF-200D-1F4BB,people-body,person-role,technologist: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍💻,1F9D1-200D-1F4BB,12.1,1230
+👨‍💻,1F468-200D-1F4BB,people-body,person-role,man technologist,"coder, computer, developer, inventor, man, software, technologist",,Lisa Thiel,2018-04-18,,single,👨‍💻,1F468-200D-1F4BB,4,1231
+👨🏻‍💻,1F468-1F3FB-200D-1F4BB,people-body,person-role,man technologist: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍💻,1F468-200D-1F4BB,4,1232
+👨🏼‍💻,1F468-1F3FC-200D-1F4BB,people-body,person-role,man technologist: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍💻,1F468-200D-1F4BB,4,1233
+👨🏽‍💻,1F468-1F3FD-200D-1F4BB,people-body,person-role,man technologist: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍💻,1F468-200D-1F4BB,4,1234
+👨🏾‍💻,1F468-1F3FE-200D-1F4BB,people-body,person-role,man technologist: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍💻,1F468-200D-1F4BB,4,1235
+👨🏿‍💻,1F468-1F3FF-200D-1F4BB,people-body,person-role,man technologist: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍💻,1F468-200D-1F4BB,4,1236
+👩‍💻,1F469-200D-1F4BB,people-body,person-role,woman technologist,"coder, computer, developer, inventor, software, technologist, woman",,Lisa Thiel,2018-04-18,,single,👩‍💻,1F469-200D-1F4BB,4,1237
+👩🏻‍💻,1F469-1F3FB-200D-1F4BB,people-body,person-role,woman technologist: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍💻,1F469-200D-1F4BB,4,1238
+👩🏼‍💻,1F469-1F3FC-200D-1F4BB,people-body,person-role,woman technologist: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍💻,1F469-200D-1F4BB,4,1239
+👩🏽‍💻,1F469-1F3FD-200D-1F4BB,people-body,person-role,woman technologist: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍💻,1F469-200D-1F4BB,4,1240
+👩🏾‍💻,1F469-1F3FE-200D-1F4BB,people-body,person-role,woman technologist: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍💻,1F469-200D-1F4BB,4,1241
+👩🏿‍💻,1F469-1F3FF-200D-1F4BB,people-body,person-role,woman technologist: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍💻,1F469-200D-1F4BB,4,1242
+🧑‍🎤,1F9D1-200D-1F3A4,people-body,person-role,singer,"actor, entertainer, rock, rockstar, star",,Benedikt Groß,2020-01-15,,single,🧑‍🎤,1F9D1-200D-1F3A4,12.1,1243
+🧑🏻‍🎤,1F9D1-1F3FB-200D-1F3A4,people-body,person-role,singer: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🎤,1F9D1-200D-1F3A4,12.1,1244
+🧑🏼‍🎤,1F9D1-1F3FC-200D-1F3A4,people-body,person-role,singer: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🎤,1F9D1-200D-1F3A4,12.1,1245
+🧑🏽‍🎤,1F9D1-1F3FD-200D-1F3A4,people-body,person-role,singer: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🎤,1F9D1-200D-1F3A4,12.1,1246
+🧑🏾‍🎤,1F9D1-1F3FE-200D-1F3A4,people-body,person-role,singer: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🎤,1F9D1-200D-1F3A4,12.1,1247
+🧑🏿‍🎤,1F9D1-1F3FF-200D-1F3A4,people-body,person-role,singer: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🎤,1F9D1-200D-1F3A4,12.1,1248
+👨‍🎤,1F468-200D-1F3A4,people-body,person-role,man singer,"actor, entertainer, man, rock, rockstar, singer, star",,Lisa Thiel,2018-04-18,,single,👨‍🎤,1F468-200D-1F3A4,4,1249
+👨🏻‍🎤,1F468-1F3FB-200D-1F3A4,people-body,person-role,man singer: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🎤,1F468-200D-1F3A4,4,1250
+👨🏼‍🎤,1F468-1F3FC-200D-1F3A4,people-body,person-role,man singer: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🎤,1F468-200D-1F3A4,4,1251
+👨🏽‍🎤,1F468-1F3FD-200D-1F3A4,people-body,person-role,man singer: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🎤,1F468-200D-1F3A4,4,1252
+👨🏾‍🎤,1F468-1F3FE-200D-1F3A4,people-body,person-role,man singer: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🎤,1F468-200D-1F3A4,4,1253
+👨🏿‍🎤,1F468-1F3FF-200D-1F3A4,people-body,person-role,man singer: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🎤,1F468-200D-1F3A4,4,1254
+👩‍🎤,1F469-200D-1F3A4,people-body,person-role,woman singer,"actor, entertainer, rock, rockstar, singer, star, woman",,Lisa Thiel,2018-04-18,,single,👩‍🎤,1F469-200D-1F3A4,4,1255
+👩🏻‍🎤,1F469-1F3FB-200D-1F3A4,people-body,person-role,woman singer: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🎤,1F469-200D-1F3A4,4,1256
+👩🏼‍🎤,1F469-1F3FC-200D-1F3A4,people-body,person-role,woman singer: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🎤,1F469-200D-1F3A4,4,1257
+👩🏽‍🎤,1F469-1F3FD-200D-1F3A4,people-body,person-role,woman singer: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🎤,1F469-200D-1F3A4,4,1258
+👩🏾‍🎤,1F469-1F3FE-200D-1F3A4,people-body,person-role,woman singer: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🎤,1F469-200D-1F3A4,4,1259
+👩🏿‍🎤,1F469-1F3FF-200D-1F3A4,people-body,person-role,woman singer: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🎤,1F469-200D-1F3A4,4,1260
+🧑‍🎨,1F9D1-200D-1F3A8,people-body,person-role,artist,palette,,Benedikt Groß,2020-01-15,,single,🧑‍🎨,1F9D1-200D-1F3A8,12.1,1261
+🧑🏻‍🎨,1F9D1-1F3FB-200D-1F3A8,people-body,person-role,artist: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🎨,1F9D1-200D-1F3A8,12.1,1262
+🧑🏼‍🎨,1F9D1-1F3FC-200D-1F3A8,people-body,person-role,artist: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🎨,1F9D1-200D-1F3A8,12.1,1263
+🧑🏽‍🎨,1F9D1-1F3FD-200D-1F3A8,people-body,person-role,artist: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🎨,1F9D1-200D-1F3A8,12.1,1264
+🧑🏾‍🎨,1F9D1-1F3FE-200D-1F3A8,people-body,person-role,artist: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🎨,1F9D1-200D-1F3A8,12.1,1265
+🧑🏿‍🎨,1F9D1-1F3FF-200D-1F3A8,people-body,person-role,artist: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🎨,1F9D1-200D-1F3A8,12.1,1266
+👨‍🎨,1F468-200D-1F3A8,people-body,person-role,man artist,"artist, man, palette",,Lisa Thiel,2018-04-18,,single,👨‍🎨,1F468-200D-1F3A8,4,1267
+👨🏻‍🎨,1F468-1F3FB-200D-1F3A8,people-body,person-role,man artist: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🎨,1F468-200D-1F3A8,4,1268
+👨🏼‍🎨,1F468-1F3FC-200D-1F3A8,people-body,person-role,man artist: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🎨,1F468-200D-1F3A8,4,1269
+👨🏽‍🎨,1F468-1F3FD-200D-1F3A8,people-body,person-role,man artist: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🎨,1F468-200D-1F3A8,4,1270
+👨🏾‍🎨,1F468-1F3FE-200D-1F3A8,people-body,person-role,man artist: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🎨,1F468-200D-1F3A8,4,1271
+👨🏿‍🎨,1F468-1F3FF-200D-1F3A8,people-body,person-role,man artist: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🎨,1F468-200D-1F3A8,4,1272
+👩‍🎨,1F469-200D-1F3A8,people-body,person-role,woman artist,"artist, palette, woman",,Lisa Thiel,2018-04-18,,single,👩‍🎨,1F469-200D-1F3A8,4,1273
+👩🏻‍🎨,1F469-1F3FB-200D-1F3A8,people-body,person-role,woman artist: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🎨,1F469-200D-1F3A8,4,1274
+👩🏼‍🎨,1F469-1F3FC-200D-1F3A8,people-body,person-role,woman artist: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🎨,1F469-200D-1F3A8,4,1275
+👩🏽‍🎨,1F469-1F3FD-200D-1F3A8,people-body,person-role,woman artist: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🎨,1F469-200D-1F3A8,4,1276
+👩🏾‍🎨,1F469-1F3FE-200D-1F3A8,people-body,person-role,woman artist: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🎨,1F469-200D-1F3A8,4,1277
+👩🏿‍🎨,1F469-1F3FF-200D-1F3A8,people-body,person-role,woman artist: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🎨,1F469-200D-1F3A8,4,1278
+🧑‍✈️,1F9D1-200D-2708-FE0F,people-body,person-role,pilot,plane,,Benedikt Groß,2020-01-15,,single,🧑‍✈️,1F9D1-200D-2708-FE0F,12.1,1279
+🧑🏻‍✈️,1F9D1-1F3FB-200D-2708-FE0F,people-body,person-role,pilot: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍✈️,1F9D1-200D-2708-FE0F,12.1,1281
+🧑🏼‍✈️,1F9D1-1F3FC-200D-2708-FE0F,people-body,person-role,pilot: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍✈️,1F9D1-200D-2708-FE0F,12.1,1283
+🧑🏽‍✈️,1F9D1-1F3FD-200D-2708-FE0F,people-body,person-role,pilot: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍✈️,1F9D1-200D-2708-FE0F,12.1,1285
+🧑🏾‍✈️,1F9D1-1F3FE-200D-2708-FE0F,people-body,person-role,pilot: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍✈️,1F9D1-200D-2708-FE0F,12.1,1287
+🧑🏿‍✈️,1F9D1-1F3FF-200D-2708-FE0F,people-body,person-role,pilot: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍✈️,1F9D1-200D-2708-FE0F,12.1,1289
+👨‍✈️,1F468-200D-2708-FE0F,people-body,person-role,man pilot,"man, pilot, plane",,Lisa Thiel,2018-04-18,,single,👨‍✈️,1F468-200D-2708-FE0F,4,1291
+👨🏻‍✈️,1F468-1F3FB-200D-2708-FE0F,people-body,person-role,man pilot: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍✈️,1F468-200D-2708-FE0F,4,1293
+👨🏼‍✈️,1F468-1F3FC-200D-2708-FE0F,people-body,person-role,man pilot: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍✈️,1F468-200D-2708-FE0F,4,1295
+👨🏽‍✈️,1F468-1F3FD-200D-2708-FE0F,people-body,person-role,man pilot: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍✈️,1F468-200D-2708-FE0F,4,1297
+👨🏾‍✈️,1F468-1F3FE-200D-2708-FE0F,people-body,person-role,man pilot: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍✈️,1F468-200D-2708-FE0F,4,1299
+👨🏿‍✈️,1F468-1F3FF-200D-2708-FE0F,people-body,person-role,man pilot: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍✈️,1F468-200D-2708-FE0F,4,1301
+👩‍✈️,1F469-200D-2708-FE0F,people-body,person-role,woman pilot,"pilot, plane, woman",,Lisa Thiel,2018-04-18,,single,👩‍✈️,1F469-200D-2708-FE0F,4,1303
+👩🏻‍✈️,1F469-1F3FB-200D-2708-FE0F,people-body,person-role,woman pilot: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍✈️,1F469-200D-2708-FE0F,4,1305
+👩🏼‍✈️,1F469-1F3FC-200D-2708-FE0F,people-body,person-role,woman pilot: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍✈️,1F469-200D-2708-FE0F,4,1307
+👩🏽‍✈️,1F469-1F3FD-200D-2708-FE0F,people-body,person-role,woman pilot: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍✈️,1F469-200D-2708-FE0F,4,1309
+👩🏾‍✈️,1F469-1F3FE-200D-2708-FE0F,people-body,person-role,woman pilot: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍✈️,1F469-200D-2708-FE0F,4,1311
+👩🏿‍✈️,1F469-1F3FF-200D-2708-FE0F,people-body,person-role,woman pilot: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍✈️,1F469-200D-2708-FE0F,4,1313
+🧑‍🚀,1F9D1-200D-1F680,people-body,person-role,astronaut,"rocket, space",,Benedikt Groß,2020-01-15,,single,🧑‍🚀,1F9D1-200D-1F680,12.1,1315
+🧑🏻‍🚀,1F9D1-1F3FB-200D-1F680,people-body,person-role,astronaut: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🚀,1F9D1-200D-1F680,12.1,1316
+🧑🏼‍🚀,1F9D1-1F3FC-200D-1F680,people-body,person-role,astronaut: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🚀,1F9D1-200D-1F680,12.1,1317
+🧑🏽‍🚀,1F9D1-1F3FD-200D-1F680,people-body,person-role,astronaut: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🚀,1F9D1-200D-1F680,12.1,1318
+🧑🏾‍🚀,1F9D1-1F3FE-200D-1F680,people-body,person-role,astronaut: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🚀,1F9D1-200D-1F680,12.1,1319
+🧑🏿‍🚀,1F9D1-1F3FF-200D-1F680,people-body,person-role,astronaut: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🚀,1F9D1-200D-1F680,12.1,1320
+👨‍🚀,1F468-200D-1F680,people-body,person-role,man astronaut,"astronaut, man, rocket, space",,Lisa Thiel,2018-04-18,,single,👨‍🚀,1F468-200D-1F680,4,1321
+👨🏻‍🚀,1F468-1F3FB-200D-1F680,people-body,person-role,man astronaut: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🚀,1F468-200D-1F680,4,1322
+👨🏼‍🚀,1F468-1F3FC-200D-1F680,people-body,person-role,man astronaut: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🚀,1F468-200D-1F680,4,1323
+👨🏽‍🚀,1F468-1F3FD-200D-1F680,people-body,person-role,man astronaut: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🚀,1F468-200D-1F680,4,1324
+👨🏾‍🚀,1F468-1F3FE-200D-1F680,people-body,person-role,man astronaut: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🚀,1F468-200D-1F680,4,1325
+👨🏿‍🚀,1F468-1F3FF-200D-1F680,people-body,person-role,man astronaut: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🚀,1F468-200D-1F680,4,1326
+👩‍🚀,1F469-200D-1F680,people-body,person-role,woman astronaut,"astronaut, rocket, space, woman",,Lisa Thiel,2018-04-18,,single,👩‍🚀,1F469-200D-1F680,4,1327
+👩🏻‍🚀,1F469-1F3FB-200D-1F680,people-body,person-role,woman astronaut: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🚀,1F469-200D-1F680,4,1328
+👩🏼‍🚀,1F469-1F3FC-200D-1F680,people-body,person-role,woman astronaut: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🚀,1F469-200D-1F680,4,1329
+👩🏽‍🚀,1F469-1F3FD-200D-1F680,people-body,person-role,woman astronaut: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🚀,1F469-200D-1F680,4,1330
+👩🏾‍🚀,1F469-1F3FE-200D-1F680,people-body,person-role,woman astronaut: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🚀,1F469-200D-1F680,4,1331
+👩🏿‍🚀,1F469-1F3FF-200D-1F680,people-body,person-role,woman astronaut: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🚀,1F469-200D-1F680,4,1332
+🧑‍🚒,1F9D1-200D-1F692,people-body,person-role,firefighter,"fire, firetruck",,Benedikt Groß,2020-01-15,,single,🧑‍🚒,1F9D1-200D-1F692,12.1,1333
+🧑🏻‍🚒,1F9D1-1F3FB-200D-1F692,people-body,person-role,firefighter: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🚒,1F9D1-200D-1F692,12.1,1334
+🧑🏼‍🚒,1F9D1-1F3FC-200D-1F692,people-body,person-role,firefighter: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🚒,1F9D1-200D-1F692,12.1,1335
+🧑🏽‍🚒,1F9D1-1F3FD-200D-1F692,people-body,person-role,firefighter: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🚒,1F9D1-200D-1F692,12.1,1336
+🧑🏾‍🚒,1F9D1-1F3FE-200D-1F692,people-body,person-role,firefighter: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🚒,1F9D1-200D-1F692,12.1,1337
+🧑🏿‍🚒,1F9D1-1F3FF-200D-1F692,people-body,person-role,firefighter: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🚒,1F9D1-200D-1F692,12.1,1338
+👨‍🚒,1F468-200D-1F692,people-body,person-role,man firefighter,"fire, firefighter, firetruck, man",,Lisa Thiel,2018-04-18,,single,👨‍🚒,1F468-200D-1F692,4,1339
+👨🏻‍🚒,1F468-1F3FB-200D-1F692,people-body,person-role,man firefighter: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👨‍🚒,1F468-200D-1F692,4,1340
+👨🏼‍🚒,1F468-1F3FC-200D-1F692,people-body,person-role,man firefighter: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👨‍🚒,1F468-200D-1F692,4,1341
+👨🏽‍🚒,1F468-1F3FD-200D-1F692,people-body,person-role,man firefighter: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👨‍🚒,1F468-200D-1F692,4,1342
+👨🏾‍🚒,1F468-1F3FE-200D-1F692,people-body,person-role,man firefighter: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👨‍🚒,1F468-200D-1F692,4,1343
+👨🏿‍🚒,1F468-1F3FF-200D-1F692,people-body,person-role,man firefighter: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👨‍🚒,1F468-200D-1F692,4,1344
+👩‍🚒,1F469-200D-1F692,people-body,person-role,woman firefighter,"fire, firefighter, firetruck, woman",,Lisa Thiel,2018-04-18,,single,👩‍🚒,1F469-200D-1F692,4,1345
+👩🏻‍🚒,1F469-1F3FB-200D-1F692,people-body,person-role,woman firefighter: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👩‍🚒,1F469-200D-1F692,4,1346
+👩🏼‍🚒,1F469-1F3FC-200D-1F692,people-body,person-role,woman firefighter: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👩‍🚒,1F469-200D-1F692,4,1347
+👩🏽‍🚒,1F469-1F3FD-200D-1F692,people-body,person-role,woman firefighter: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👩‍🚒,1F469-200D-1F692,4,1348
+👩🏾‍🚒,1F469-1F3FE-200D-1F692,people-body,person-role,woman firefighter: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👩‍🚒,1F469-200D-1F692,4,1349
+👩🏿‍🚒,1F469-1F3FF-200D-1F692,people-body,person-role,woman firefighter: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👩‍🚒,1F469-200D-1F692,4,1350
+👮,1F46E,people-body,person-role,police officer,"apprehend, arrest, citation, cop, law, officer, over, police, pulled, undercover",,Lisa Thiel,2018-04-18,,single,👮,1F46E,0.6,1351
+👮🏻,1F46E-1F3FB,people-body,person-role,police officer: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👮,1F46E,1,1352
+👮🏼,1F46E-1F3FC,people-body,person-role,police officer: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👮,1F46E,1,1353
+👮🏽,1F46E-1F3FD,people-body,person-role,police officer: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👮,1F46E,1,1354
+👮🏾,1F46E-1F3FE,people-body,person-role,police officer: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👮,1F46E,1,1355
+👮🏿,1F46E-1F3FF,people-body,person-role,police officer: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👮,1F46E,1,1356
+👮‍♂️,1F46E-200D-2642-FE0F,people-body,person-role,man police officer,"apprehend, arrest, citation, cop, law, man, officer, over, police, pulled, undercover",,Antonia Wagner,2019-05-03,,single,👮‍♂️,1F46E-200D-2642-FE0F,4,1357
+👮🏻‍♂️,1F46E-1F3FB-200D-2642-FE0F,people-body,person-role,man police officer: light skin tone,,,Antonia Wagner,2019-05-03,1,single,👮‍♂️,1F46E-200D-2642-FE0F,4,1359
+👮🏼‍♂️,1F46E-1F3FC-200D-2642-FE0F,people-body,person-role,man police officer: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,👮‍♂️,1F46E-200D-2642-FE0F,4,1361
+👮🏽‍♂️,1F46E-1F3FD-200D-2642-FE0F,people-body,person-role,man police officer: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,👮‍♂️,1F46E-200D-2642-FE0F,4,1363
+👮🏾‍♂️,1F46E-1F3FE-200D-2642-FE0F,people-body,person-role,man police officer: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,👮‍♂️,1F46E-200D-2642-FE0F,4,1365
+👮🏿‍♂️,1F46E-1F3FF-200D-2642-FE0F,people-body,person-role,man police officer: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,👮‍♂️,1F46E-200D-2642-FE0F,4,1367
+👮‍♀️,1F46E-200D-2640-FE0F,people-body,person-role,woman police officer,"apprehend, arrest, citation, cop, law, officer, over, police, pulled, undercover, woman",,Antonia Wagner,2019-05-03,,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1369
+👮🏻‍♀️,1F46E-1F3FB-200D-2640-FE0F,people-body,person-role,woman police officer: light skin tone,,,Antonia Wagner,2019-05-03,1,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1371
+👮🏼‍♀️,1F46E-1F3FC-200D-2640-FE0F,people-body,person-role,woman police officer: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1373
+👮🏽‍♀️,1F46E-1F3FD-200D-2640-FE0F,people-body,person-role,woman police officer: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1375
+👮🏾‍♀️,1F46E-1F3FE-200D-2640-FE0F,people-body,person-role,woman police officer: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1377
+👮🏿‍♀️,1F46E-1F3FF-200D-2640-FE0F,people-body,person-role,woman police officer: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,👮‍♀️,1F46E-200D-2640-FE0F,4,1379
+🕵️,1F575,people-body,person-role,detective,"sleuth, spy",,Lisa Thiel,2018-04-18,,single,🕵️,1F575,0.7,1382
+🕵🏻,1F575-1F3FB,people-body,person-role,detective: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🕵️,1F575,2,1383
+🕵🏼,1F575-1F3FC,people-body,person-role,detective: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🕵️,1F575,2,1384
+🕵🏽,1F575-1F3FD,people-body,person-role,detective: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🕵️,1F575,2,1385
+🕵🏾,1F575-1F3FE,people-body,person-role,detective: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🕵️,1F575,2,1386
+🕵🏿,1F575-1F3FF,people-body,person-role,detective: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🕵️,1F575,2,1387
+🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,people-body,person-role,man detective,"detective, man, sleuth, spy",,Antonia Wagner,2019-05-03,,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1388
+🕵🏻‍♂️,1F575-1F3FB-200D-2642-FE0F,people-body,person-role,man detective: light skin tone,,,Antonia Wagner,2019-05-03,1,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1392
+🕵🏼‍♂️,1F575-1F3FC-200D-2642-FE0F,people-body,person-role,man detective: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1394
+🕵🏽‍♂️,1F575-1F3FD-200D-2642-FE0F,people-body,person-role,man detective: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1396
+🕵🏾‍♂️,1F575-1F3FE-200D-2642-FE0F,people-body,person-role,man detective: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1398
+🕵🏿‍♂️,1F575-1F3FF-200D-2642-FE0F,people-body,person-role,man detective: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,🕵️‍♂️,1F575-FE0F-200D-2642-FE0F,4,1400
+🕵️‍♀️,1F575-FE0F-200D-2640-FE0F,people-body,person-role,woman detective,"detective, sleuth, spy, woman",,Antonia Wagner,2019-05-03,,single,🕵️‍♀️,1F575-FE0F-200D-2640-FE0F,4,1402
+🕵🏻‍♀️,1F575-1F3FB-200D-2640-FE0F,people-body,person-role,woman detective: light skin tone,,,Antonia Wagner,2019-05-03,1,single,🕵️‍♀️,1F575-FE0F-200D-2640-FE0F,4,1406
+🕵🏼‍♀️,1F575-1F3FC-200D-2640-FE0F,people-body,person-role,woman detective: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,🕵️‍♀️,1F575-FE0F-200D-2640-FE0F,4,1408
+🕵🏽‍♀️,1F575-1F3FD-200D-2640-FE0F,people-body,person-role,woman detective: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,🕵️‍♀️,1F575-FE0F-200D-2640-FE0F,4,1410
+🕵🏾‍♀️,1F575-1F3FE-200D-2640-FE0F,people-body,person-role,woman detective: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,🕵️‍♀️,1F575-FE0F-200D-2640-FE0F,4,1412
+🕵🏿‍♀️,1F575-1F3FF-200D-2640-FE0F,people-body,person-role,woman detective: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,🕵️‍♀️,1F575-FE0F-200D-2640-FE0F,4,1414
+💂,1F482,people-body,person-role,guard,"buckingham, helmet, london, palace",,Lisa Thiel,2018-04-18,,single,💂,1F482,0.6,1416
+💂🏻,1F482-1F3FB,people-body,person-role,guard: light skin tone,,,Lisa Thiel,2018-04-18,1,single,💂,1F482,1,1417
+💂🏼,1F482-1F3FC,people-body,person-role,guard: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,💂,1F482,1,1418
+💂🏽,1F482-1F3FD,people-body,person-role,guard: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,💂,1F482,1,1419
+💂🏾,1F482-1F3FE,people-body,person-role,guard: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,💂,1F482,1,1420
+💂🏿,1F482-1F3FF,people-body,person-role,guard: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,💂,1F482,1,1421
+💂‍♂️,1F482-200D-2642-FE0F,people-body,person-role,man guard,"buckingham, guard, helmet, london, man, palace",,Liz Bravo,2020-12-22,,single,💂‍♂️,1F482-200D-2642-FE0F,4,1422
+💂🏻‍♂️,1F482-1F3FB-200D-2642-FE0F,people-body,person-role,man guard: light skin tone,,,Liz Bravo,2020-12-22,1,single,💂‍♂️,1F482-200D-2642-FE0F,4,1424
+💂🏼‍♂️,1F482-1F3FC-200D-2642-FE0F,people-body,person-role,man guard: medium-light skin tone,,,Liz Bravo,2020-12-22,2,single,💂‍♂️,1F482-200D-2642-FE0F,4,1426
+💂🏽‍♂️,1F482-1F3FD-200D-2642-FE0F,people-body,person-role,man guard: medium skin tone,,,Liz Bravo,2020-12-22,3,single,💂‍♂️,1F482-200D-2642-FE0F,4,1428
+💂🏾‍♂️,1F482-1F3FE-200D-2642-FE0F,people-body,person-role,man guard: medium-dark skin tone,,,Liz Bravo,2020-12-22,4,single,💂‍♂️,1F482-200D-2642-FE0F,4,1430
+💂🏿‍♂️,1F482-1F3FF-200D-2642-FE0F,people-body,person-role,man guard: dark skin tone,,,Liz Bravo,2020-12-22,5,single,💂‍♂️,1F482-200D-2642-FE0F,4,1432
+💂‍♀️,1F482-200D-2640-FE0F,people-body,person-role,woman guard,"buckingham, guard, helmet, london, palace, woman",,Antonia Wagner,2019-05-03,,single,💂‍♀️,1F482-200D-2640-FE0F,4,1434
+💂🏻‍♀️,1F482-1F3FB-200D-2640-FE0F,people-body,person-role,woman guard: light skin tone,,,Antonia Wagner,2019-05-03,1,single,💂‍♀️,1F482-200D-2640-FE0F,4,1436
+💂🏼‍♀️,1F482-1F3FC-200D-2640-FE0F,people-body,person-role,woman guard: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,💂‍♀️,1F482-200D-2640-FE0F,4,1438
+💂🏽‍♀️,1F482-1F3FD-200D-2640-FE0F,people-body,person-role,woman guard: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,💂‍♀️,1F482-200D-2640-FE0F,4,1440
+💂🏾‍♀️,1F482-1F3FE-200D-2640-FE0F,people-body,person-role,woman guard: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,💂‍♀️,1F482-200D-2640-FE0F,4,1442
+💂🏿‍♀️,1F482-1F3FF-200D-2640-FE0F,people-body,person-role,woman guard: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,💂‍♀️,1F482-200D-2640-FE0F,4,1444
+🥷,1F977,people-body,person-role,ninja,"assassin, fight, fighter, hidden, person, secret, skills, sly, soldier, stealth, war",,Liz Bravo,2020-10-07,,single,🥷,1F977,13,1446
+🥷🏻,1F977-1F3FB,people-body,person-role,ninja: light skin tone,,,Liz Bravo,2020-10-07,1,single,🥷,1F977,13,1447
+🥷🏼,1F977-1F3FC,people-body,person-role,ninja: medium-light skin tone,,,Liz Bravo,2020-10-07,2,single,🥷,1F977,13,1448
+🥷🏽,1F977-1F3FD,people-body,person-role,ninja: medium skin tone,,,Liz Bravo,2020-10-07,3,single,🥷,1F977,13,1449
+🥷🏾,1F977-1F3FE,people-body,person-role,ninja: medium-dark skin tone,,,Liz Bravo,2020-10-07,4,single,🥷,1F977,13,1450
+🥷🏿,1F977-1F3FF,people-body,person-role,ninja: dark skin tone,,,Liz Bravo,2020-10-07,5,single,🥷,1F977,13,1451
+👷,1F477,people-body,person-role,construction worker,"build, construction, fix, hardhat, hat, man, person, rebuild, remodel, repair, work, worker",,Lisa Thiel,2018-04-18,,single,👷,1F477,0.6,1452
+👷🏻,1F477-1F3FB,people-body,person-role,construction worker: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👷,1F477,1,1453
+👷🏼,1F477-1F3FC,people-body,person-role,construction worker: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👷,1F477,1,1454
+👷🏽,1F477-1F3FD,people-body,person-role,construction worker: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👷,1F477,1,1455
+👷🏾,1F477-1F3FE,people-body,person-role,construction worker: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👷,1F477,1,1456
+👷🏿,1F477-1F3FF,people-body,person-role,construction worker: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👷,1F477,1,1457
+👷‍♂️,1F477-200D-2642-FE0F,people-body,person-role,man construction worker,"build, construction, fix, hardhat, hat, man, rebuild, remodel, repair, work, worker",,Antonia Wagner,2019-05-03,,single,👷‍♂️,1F477-200D-2642-FE0F,4,1458
+👷🏻‍♂️,1F477-1F3FB-200D-2642-FE0F,people-body,person-role,man construction worker: light skin tone,,,Antonia Wagner,2019-05-03,1,single,👷‍♂️,1F477-200D-2642-FE0F,4,1460
+👷🏼‍♂️,1F477-1F3FC-200D-2642-FE0F,people-body,person-role,man construction worker: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,👷‍♂️,1F477-200D-2642-FE0F,4,1462
+👷🏽‍♂️,1F477-1F3FD-200D-2642-FE0F,people-body,person-role,man construction worker: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,👷‍♂️,1F477-200D-2642-FE0F,4,1464
+👷🏾‍♂️,1F477-1F3FE-200D-2642-FE0F,people-body,person-role,man construction worker: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,👷‍♂️,1F477-200D-2642-FE0F,4,1466
+👷🏿‍♂️,1F477-1F3FF-200D-2642-FE0F,people-body,person-role,man construction worker: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,👷‍♂️,1F477-200D-2642-FE0F,4,1468
+👷‍♀️,1F477-200D-2640-FE0F,people-body,person-role,woman construction worker,"build, construction, fix, hardhat, hat, man, rebuild, remodel, repair, woman, work, worker",,Antonia Wagner,2019-05-03,,single,👷‍♀️,1F477-200D-2640-FE0F,4,1470
+👷🏻‍♀️,1F477-1F3FB-200D-2640-FE0F,people-body,person-role,woman construction worker: light skin tone,,,Antonia Wagner,2019-05-03,1,single,👷‍♀️,1F477-200D-2640-FE0F,4,1472
+👷🏼‍♀️,1F477-1F3FC-200D-2640-FE0F,people-body,person-role,woman construction worker: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,👷‍♀️,1F477-200D-2640-FE0F,4,1474
+👷🏽‍♀️,1F477-1F3FD-200D-2640-FE0F,people-body,person-role,woman construction worker: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,👷‍♀️,1F477-200D-2640-FE0F,4,1476
+👷🏾‍♀️,1F477-1F3FE-200D-2640-FE0F,people-body,person-role,woman construction worker: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,👷‍♀️,1F477-200D-2640-FE0F,4,1478
+👷🏿‍♀️,1F477-1F3FF-200D-2640-FE0F,people-body,person-role,woman construction worker: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,👷‍♀️,1F477-200D-2640-FE0F,4,1480
+🫅,1FAC5,people-body,person-role,person with crown,"crown, monarch, noble, person, regal, royal, royalty",,Alena Peichl,2022-05-09,,single,🫅,1FAC5,14,1482
+🫅🏻,1FAC5-1F3FB,people-body,person-role,person with crown: light skin tone,,,Alena Peichl,2022-05-09,1,single,🫅,1FAC5,14,1483
+🫅🏼,1FAC5-1F3FC,people-body,person-role,person with crown: medium-light skin tone,,,Alena Peichl,2022-05-09,2,single,🫅,1FAC5,14,1484
+🫅🏽,1FAC5-1F3FD,people-body,person-role,person with crown: medium skin tone,,,Alena Peichl,2022-05-09,3,single,🫅,1FAC5,14,1485
+🫅🏾,1FAC5-1F3FE,people-body,person-role,person with crown: medium-dark skin tone,,,Alena Peichl,2022-05-09,4,single,🫅,1FAC5,14,1486
+🫅🏿,1FAC5-1F3FF,people-body,person-role,person with crown: dark skin tone,,,Alena Peichl,2022-05-09,5,single,🫅,1FAC5,14,1487
+🤴,1F934,people-body,person-role,prince,"crown, fairy, fairytale, fantasy, king, royal, royalty, tale",,Lisa Thiel,2018-04-18,,single,🤴,1F934,3,1488
+🤴🏻,1F934-1F3FB,people-body,person-role,prince: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🤴,1F934,3,1489
+🤴🏼,1F934-1F3FC,people-body,person-role,prince: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🤴,1F934,3,1490
+🤴🏽,1F934-1F3FD,people-body,person-role,prince: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🤴,1F934,3,1491
+🤴🏾,1F934-1F3FE,people-body,person-role,prince: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🤴,1F934,3,1492
+🤴🏿,1F934-1F3FF,people-body,person-role,prince: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🤴,1F934,3,1493
+👸,1F478,people-body,person-role,princess,"crown, fairy, fairytale, fantasy, queen, royal, royalty, tale",,Lisa Thiel,2018-04-18,,single,👸,1F478,0.6,1494
+👸🏻,1F478-1F3FB,people-body,person-role,princess: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👸,1F478,1,1495
+👸🏼,1F478-1F3FC,people-body,person-role,princess: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👸,1F478,1,1496
+👸🏽,1F478-1F3FD,people-body,person-role,princess: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👸,1F478,1,1497
+👸🏾,1F478-1F3FE,people-body,person-role,princess: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👸,1F478,1,1498
+👸🏿,1F478-1F3FF,people-body,person-role,princess: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👸,1F478,1,1499
+👳,1F473,people-body,person-role,person wearing turban,"person, turban, wearing",,Lisa Thiel,2018-04-18,,single,👳,1F473,0.6,1500
+👳🏻,1F473-1F3FB,people-body,person-role,person wearing turban: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👳,1F473,1,1501
+👳🏼,1F473-1F3FC,people-body,person-role,person wearing turban: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👳,1F473,1,1502
+👳🏽,1F473-1F3FD,people-body,person-role,person wearing turban: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👳,1F473,1,1503
+👳🏾,1F473-1F3FE,people-body,person-role,person wearing turban: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👳,1F473,1,1504
+👳🏿,1F473-1F3FF,people-body,person-role,person wearing turban: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👳,1F473,1,1505
+👳‍♂️,1F473-200D-2642-FE0F,people-body,person-role,man wearing turban,"man, turban, wearing",,Antonia Wagner,2019-05-03,,single,👳‍♂️,1F473-200D-2642-FE0F,4,1506
+👳🏻‍♂️,1F473-1F3FB-200D-2642-FE0F,people-body,person-role,man wearing turban: light skin tone,,,Antonia Wagner,2019-05-03,1,single,👳‍♂️,1F473-200D-2642-FE0F,4,1508
+👳🏼‍♂️,1F473-1F3FC-200D-2642-FE0F,people-body,person-role,man wearing turban: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,👳‍♂️,1F473-200D-2642-FE0F,4,1510
+👳🏽‍♂️,1F473-1F3FD-200D-2642-FE0F,people-body,person-role,man wearing turban: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,👳‍♂️,1F473-200D-2642-FE0F,4,1512
+👳🏾‍♂️,1F473-1F3FE-200D-2642-FE0F,people-body,person-role,man wearing turban: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,👳‍♂️,1F473-200D-2642-FE0F,4,1514
+👳🏿‍♂️,1F473-1F3FF-200D-2642-FE0F,people-body,person-role,man wearing turban: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,👳‍♂️,1F473-200D-2642-FE0F,4,1516
+👳‍♀️,1F473-200D-2640-FE0F,people-body,person-role,woman wearing turban,"turban, wearing, woman",,Antonia Wagner,2019-05-03,,single,👳‍♀️,1F473-200D-2640-FE0F,4,1518
+👳🏻‍♀️,1F473-1F3FB-200D-2640-FE0F,people-body,person-role,woman wearing turban: light skin tone,,,Antonia Wagner,2019-05-03,1,single,👳‍♀️,1F473-200D-2640-FE0F,4,1520
+👳🏼‍♀️,1F473-1F3FC-200D-2640-FE0F,people-body,person-role,woman wearing turban: medium-light skin tone,,,Antonia Wagner,2019-05-03,2,single,👳‍♀️,1F473-200D-2640-FE0F,4,1522
+👳🏽‍♀️,1F473-1F3FD-200D-2640-FE0F,people-body,person-role,woman wearing turban: medium skin tone,,,Antonia Wagner,2019-05-03,3,single,👳‍♀️,1F473-200D-2640-FE0F,4,1524
+👳🏾‍♀️,1F473-1F3FE-200D-2640-FE0F,people-body,person-role,woman wearing turban: medium-dark skin tone,,,Antonia Wagner,2019-05-03,4,single,👳‍♀️,1F473-200D-2640-FE0F,4,1526
+👳🏿‍♀️,1F473-1F3FF-200D-2640-FE0F,people-body,person-role,woman wearing turban: dark skin tone,,,Antonia Wagner,2019-05-03,5,single,👳‍♀️,1F473-200D-2640-FE0F,4,1528
+👲,1F472,people-body,person-role,person with skullcap,"cap, chinese, gua, guapi, hat, mao, person, pi, skullcap",,Anne Frauendorf,2018-11-16,,single,👲,1F472,0.6,1530
+👲🏻,1F472-1F3FB,people-body,person-role,person with skullcap: light skin tone,,,Anne Frauendorf,2018-11-16,1,single,👲,1F472,1,1531
+👲🏼,1F472-1F3FC,people-body,person-role,person with skullcap: medium-light skin tone,,,Anne Frauendorf,2018-11-16,2,single,👲,1F472,1,1532
+👲🏽,1F472-1F3FD,people-body,person-role,person with skullcap: medium skin tone,,,Anne Frauendorf,2018-11-16,3,single,👲,1F472,1,1533
+👲🏾,1F472-1F3FE,people-body,person-role,person with skullcap: medium-dark skin tone,,,Anne Frauendorf,2018-11-16,4,single,👲,1F472,1,1534
+👲🏿,1F472-1F3FF,people-body,person-role,person with skullcap: dark skin tone,,,Anne Frauendorf,2018-11-16,5,single,👲,1F472,1,1535
+🧕,1F9D5,people-body,person-role,woman with headscarf,"bandana, head, headscarf, hijab, kerchief, mantilla, tichel, woman",,Lisa Thiel,2018-04-18,,single,🧕,1F9D5,5,1536
+🧕🏻,1F9D5-1F3FB,people-body,person-role,woman with headscarf: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🧕,1F9D5,5,1537
+🧕🏼,1F9D5-1F3FC,people-body,person-role,woman with headscarf: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🧕,1F9D5,5,1538
+🧕🏽,1F9D5-1F3FD,people-body,person-role,woman with headscarf: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🧕,1F9D5,5,1539
+🧕🏾,1F9D5-1F3FE,people-body,person-role,woman with headscarf: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🧕,1F9D5,5,1540
+🧕🏿,1F9D5-1F3FF,people-body,person-role,woman with headscarf: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🧕,1F9D5,5,1541
+🤵,1F935,people-body,person-role,person in tuxedo,"formal, person, tuxedo, wedding",,Liz Bravo,2020-09-26,,single,🤵,1F935,3,1542
+🤵🏻,1F935-1F3FB,people-body,person-role,person in tuxedo: light skin tone,,,Liz Bravo,2020-09-26,1,single,🤵,1F935,3,1543
+🤵🏼,1F935-1F3FC,people-body,person-role,person in tuxedo: medium-light skin tone,,,Liz Bravo,2020-09-26,2,single,🤵,1F935,3,1544
+🤵🏽,1F935-1F3FD,people-body,person-role,person in tuxedo: medium skin tone,,,Liz Bravo,2020-09-26,3,single,🤵,1F935,3,1545
+🤵🏾,1F935-1F3FE,people-body,person-role,person in tuxedo: medium-dark skin tone,,,Liz Bravo,2020-09-26,4,single,🤵,1F935,3,1546
+🤵🏿,1F935-1F3FF,people-body,person-role,person in tuxedo: dark skin tone,,,Liz Bravo,2020-09-26,5,single,🤵,1F935,3,1547
+🤵‍♂️,1F935-200D-2642-FE0F,people-body,person-role,man in tuxedo,"formal, groom, man, tuxedo, wedding",,Nadine Bartel,2019-05-06,,single,🤵‍♂️,1F935-200D-2642-FE0F,13,1548
+🤵🏻‍♂️,1F935-1F3FB-200D-2642-FE0F,people-body,person-role,man in tuxedo: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🤵‍♂️,1F935-200D-2642-FE0F,13,1550
+🤵🏼‍♂️,1F935-1F3FC-200D-2642-FE0F,people-body,person-role,man in tuxedo: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🤵‍♂️,1F935-200D-2642-FE0F,13,1552
+🤵🏽‍♂️,1F935-1F3FD-200D-2642-FE0F,people-body,person-role,man in tuxedo: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🤵‍♂️,1F935-200D-2642-FE0F,13,1554
+🤵🏾‍♂️,1F935-1F3FE-200D-2642-FE0F,people-body,person-role,man in tuxedo: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🤵‍♂️,1F935-200D-2642-FE0F,13,1556
+🤵🏿‍♂️,1F935-1F3FF-200D-2642-FE0F,people-body,person-role,man in tuxedo: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🤵‍♂️,1F935-200D-2642-FE0F,13,1558
+🤵‍♀️,1F935-200D-2640-FE0F,people-body,person-role,woman in tuxedo,"formal, tuxedo, wedding, woman",,Liz Bravo,2020-10-30,,single,🤵‍♀️,1F935-200D-2640-FE0F,13,1560
+🤵🏻‍♀️,1F935-1F3FB-200D-2640-FE0F,people-body,person-role,woman in tuxedo: light skin tone,,,Liz Bravo,2020-10-30,1,single,🤵‍♀️,1F935-200D-2640-FE0F,13,1562
+🤵🏼‍♀️,1F935-1F3FC-200D-2640-FE0F,people-body,person-role,woman in tuxedo: medium-light skin tone,,,Liz Bravo,2020-10-30,2,single,🤵‍♀️,1F935-200D-2640-FE0F,13,1564
+🤵🏽‍♀️,1F935-1F3FD-200D-2640-FE0F,people-body,person-role,woman in tuxedo: medium skin tone,,,Liz Bravo,2020-10-30,3,single,🤵‍♀️,1F935-200D-2640-FE0F,13,1566
+🤵🏾‍♀️,1F935-1F3FE-200D-2640-FE0F,people-body,person-role,woman in tuxedo: medium-dark skin tone,,,Liz Bravo,2020-10-30,4,single,🤵‍♀️,1F935-200D-2640-FE0F,13,1568
+🤵🏿‍♀️,1F935-1F3FF-200D-2640-FE0F,people-body,person-role,woman in tuxedo: dark skin tone,,,Liz Bravo,2020-10-30,5,single,🤵‍♀️,1F935-200D-2640-FE0F,13,1570
+👰,1F470,people-body,person-role,person with veil,"person, veil, wedding",,Liz Bravo,2020-09-26,,single,👰,1F470,0.6,1572
+👰🏻,1F470-1F3FB,people-body,person-role,person with veil: light skin tone,,,Liz Bravo,2020-09-26,1,single,👰,1F470,1,1573
+👰🏼,1F470-1F3FC,people-body,person-role,person with veil: medium-light skin tone,,,Liz Bravo,2020-09-26,2,single,👰,1F470,1,1574
+👰🏽,1F470-1F3FD,people-body,person-role,person with veil: medium skin tone,,,Liz Bravo,2020-09-26,3,single,👰,1F470,1,1575
+👰🏾,1F470-1F3FE,people-body,person-role,person with veil: medium-dark skin tone,,,Liz Bravo,2020-09-26,4,single,👰,1F470,1,1576
+👰🏿,1F470-1F3FF,people-body,person-role,person with veil: dark skin tone,,,Liz Bravo,2020-09-26,5,single,👰,1F470,1,1577
+👰‍♂️,1F470-200D-2642-FE0F,people-body,person-role,man with veil,"man, veil, wedding",,Liz Bravo,2020-10-30,,single,👰‍♂️,1F470-200D-2642-FE0F,13,1578
+👰🏻‍♂️,1F470-1F3FB-200D-2642-FE0F,people-body,person-role,man with veil: light skin tone,,,Liz Bravo,2020-10-30,1,single,👰‍♂️,1F470-200D-2642-FE0F,13,1580
+👰🏼‍♂️,1F470-1F3FC-200D-2642-FE0F,people-body,person-role,man with veil: medium-light skin tone,,,Liz Bravo,2020-10-30,2,single,👰‍♂️,1F470-200D-2642-FE0F,13,1582
+👰🏽‍♂️,1F470-1F3FD-200D-2642-FE0F,people-body,person-role,man with veil: medium skin tone,,,Liz Bravo,2020-10-30,3,single,👰‍♂️,1F470-200D-2642-FE0F,13,1584
+👰🏾‍♂️,1F470-1F3FE-200D-2642-FE0F,people-body,person-role,man with veil: medium-dark skin tone,,,Liz Bravo,2020-10-30,4,single,👰‍♂️,1F470-200D-2642-FE0F,13,1586
+👰🏿‍♂️,1F470-1F3FF-200D-2642-FE0F,people-body,person-role,man with veil: dark skin tone,,,Liz Bravo,2020-10-30,5,single,👰‍♂️,1F470-200D-2642-FE0F,13,1588
+👰‍♀️,1F470-200D-2640-FE0F,people-body,person-role,woman with veil,"bride, veil, wedding, woman",,Lisa Thiel,2018-04-18,,single,👰‍♀️,1F470-200D-2640-FE0F,13,1590
+👰🏻‍♀️,1F470-1F3FB-200D-2640-FE0F,people-body,person-role,woman with veil: light skin tone,,,Lisa Thiel,2018-04-18,1,single,👰‍♀️,1F470-200D-2640-FE0F,13,1592
+👰🏼‍♀️,1F470-1F3FC-200D-2640-FE0F,people-body,person-role,woman with veil: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,👰‍♀️,1F470-200D-2640-FE0F,13,1594
+👰🏽‍♀️,1F470-1F3FD-200D-2640-FE0F,people-body,person-role,woman with veil: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,👰‍♀️,1F470-200D-2640-FE0F,13,1596
+👰🏾‍♀️,1F470-1F3FE-200D-2640-FE0F,people-body,person-role,woman with veil: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,👰‍♀️,1F470-200D-2640-FE0F,13,1598
+👰🏿‍♀️,1F470-1F3FF-200D-2640-FE0F,people-body,person-role,woman with veil: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,👰‍♀️,1F470-200D-2640-FE0F,13,1600
+🤰,1F930,people-body,person-role,pregnant woman,"pregnant, woman",,Lisa Thiel,2018-04-18,,single,🤰,1F930,3,1602
+🤰🏻,1F930-1F3FB,people-body,person-role,pregnant woman: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🤰,1F930,3,1603
+🤰🏼,1F930-1F3FC,people-body,person-role,pregnant woman: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🤰,1F930,3,1604
+🤰🏽,1F930-1F3FD,people-body,person-role,pregnant woman: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🤰,1F930,3,1605
+🤰🏾,1F930-1F3FE,people-body,person-role,pregnant woman: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🤰,1F930,3,1606
+🤰🏿,1F930-1F3FF,people-body,person-role,pregnant woman: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🤰,1F930,3,1607
+🫃,1FAC3,people-body,person-role,pregnant man,"belly, bloated, full, man, overeat, pregnant",,Natalie Siebler,2022-05-09,,single,🫃,1FAC3,14,1608
+🫃🏻,1FAC3-1F3FB,people-body,person-role,pregnant man: light skin tone,,,Natalie Siebler,2022-05-09,1,single,🫃,1FAC3,14,1609
+🫃🏼,1FAC3-1F3FC,people-body,person-role,pregnant man: medium-light skin tone,,,Natalie Siebler,2022-05-09,2,single,🫃,1FAC3,14,1610
+🫃🏽,1FAC3-1F3FD,people-body,person-role,pregnant man: medium skin tone,,,Natalie Siebler,2022-05-09,3,single,🫃,1FAC3,14,1611
+🫃🏾,1FAC3-1F3FE,people-body,person-role,pregnant man: medium-dark skin tone,,,Natalie Siebler,2022-05-09,4,single,🫃,1FAC3,14,1612
+🫃🏿,1FAC3-1F3FF,people-body,person-role,pregnant man: dark skin tone,,,Natalie Siebler,2022-05-09,5,single,🫃,1FAC3,14,1613
+🫄,1FAC4,people-body,person-role,pregnant person,"belly, bloated, full, overeat, person, pregnant, stuffed",,Jana Gerspach,2022-05-09,,single,🫄,1FAC4,14,1614
+🫄🏻,1FAC4-1F3FB,people-body,person-role,pregnant person: light skin tone,,,Jana Gerspach,2022-05-09,1,single,🫄,1FAC4,14,1615
+🫄🏼,1FAC4-1F3FC,people-body,person-role,pregnant person: medium-light skin tone,,,Jana Gerspach,2022-05-09,2,single,🫄,1FAC4,14,1616
+🫄🏽,1FAC4-1F3FD,people-body,person-role,pregnant person: medium skin tone,,,Jana Gerspach,2022-05-09,3,single,🫄,1FAC4,14,1617
+🫄🏾,1FAC4-1F3FE,people-body,person-role,pregnant person: medium-dark skin tone,,,Jana Gerspach,2022-05-09,4,single,🫄,1FAC4,14,1618
+🫄🏿,1FAC4-1F3FF,people-body,person-role,pregnant person: dark skin tone,,,Jana Gerspach,2022-05-09,5,single,🫄,1FAC4,14,1619
+🤱,1F931,people-body,person-role,breast-feeding,"baby, breast, feeding, mom, mother, nursing, woman",,Lisa Thiel,2018-04-18,,single,🤱,1F931,5,1620
+🤱🏻,1F931-1F3FB,people-body,person-role,breast-feeding: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🤱,1F931,5,1621
+🤱🏼,1F931-1F3FC,people-body,person-role,breast-feeding: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🤱,1F931,5,1622
+🤱🏽,1F931-1F3FD,people-body,person-role,breast-feeding: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🤱,1F931,5,1623
+🤱🏾,1F931-1F3FE,people-body,person-role,breast-feeding: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🤱,1F931,5,1624
+🤱🏿,1F931-1F3FF,people-body,person-role,breast-feeding: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🤱,1F931,5,1625
+👩‍🍼,1F469-200D-1F37C,people-body,person-role,woman feeding baby,"baby, feed, feeding, mom, mother, nanny, newborn, nursing, woman",,Liz Bravo,2020-09-26,,single,👩‍🍼,1F469-200D-1F37C,13,1626
+👩🏻‍🍼,1F469-1F3FB-200D-1F37C,people-body,person-role,woman feeding baby: light skin tone,,,Liz Bravo,2020-09-26,1,single,👩‍🍼,1F469-200D-1F37C,13,1627
+👩🏼‍🍼,1F469-1F3FC-200D-1F37C,people-body,person-role,woman feeding baby: medium-light skin tone,,,Liz Bravo,2020-09-26,2,single,👩‍🍼,1F469-200D-1F37C,13,1628
+👩🏽‍🍼,1F469-1F3FD-200D-1F37C,people-body,person-role,woman feeding baby: medium skin tone,,,Liz Bravo,2020-09-26,3,single,👩‍🍼,1F469-200D-1F37C,13,1629
+👩🏾‍🍼,1F469-1F3FE-200D-1F37C,people-body,person-role,woman feeding baby: medium-dark skin tone,,,Liz Bravo,2020-09-26,4,single,👩‍🍼,1F469-200D-1F37C,13,1630
+👩🏿‍🍼,1F469-1F3FF-200D-1F37C,people-body,person-role,woman feeding baby: dark skin tone,,,Liz Bravo,2020-09-26,5,single,👩‍🍼,1F469-200D-1F37C,13,1631
+👨‍🍼,1F468-200D-1F37C,people-body,person-role,man feeding baby,"baby, dad, father, feed, feeding, man, nanny, newborn, nursing",,Liz Bravo,2020-09-26,,single,👨‍🍼,1F468-200D-1F37C,13,1632
+👨🏻‍🍼,1F468-1F3FB-200D-1F37C,people-body,person-role,man feeding baby: light skin tone,,,Liz Bravo,2020-09-26,1,single,👨‍🍼,1F468-200D-1F37C,13,1633
+👨🏼‍🍼,1F468-1F3FC-200D-1F37C,people-body,person-role,man feeding baby: medium-light skin tone,,,Liz Bravo,2020-09-26,2,single,👨‍🍼,1F468-200D-1F37C,13,1634
+👨🏽‍🍼,1F468-1F3FD-200D-1F37C,people-body,person-role,man feeding baby: medium skin tone,,,Liz Bravo,2020-09-26,3,single,👨‍🍼,1F468-200D-1F37C,13,1635
+👨🏾‍🍼,1F468-1F3FE-200D-1F37C,people-body,person-role,man feeding baby: medium-dark skin tone,,,Liz Bravo,2020-09-26,4,single,👨‍🍼,1F468-200D-1F37C,13,1636
+👨🏿‍🍼,1F468-1F3FF-200D-1F37C,people-body,person-role,man feeding baby: dark skin tone,,,Liz Bravo,2020-09-26,5,single,👨‍🍼,1F468-200D-1F37C,13,1637
+🧑‍🍼,1F9D1-200D-1F37C,people-body,person-role,person feeding baby,"baby, feed, feeding, nanny, newborn, nursing, parent",,Liz Bravo,2020-09-26,,single,🧑‍🍼,1F9D1-200D-1F37C,13,1638
+🧑🏻‍🍼,1F9D1-1F3FB-200D-1F37C,people-body,person-role,person feeding baby: light skin tone,,,Liz Bravo,2020-09-26,1,single,🧑‍🍼,1F9D1-200D-1F37C,13,1639
+🧑🏼‍🍼,1F9D1-1F3FC-200D-1F37C,people-body,person-role,person feeding baby: medium-light skin tone,,,Liz Bravo,2020-09-26,2,single,🧑‍🍼,1F9D1-200D-1F37C,13,1640
+🧑🏽‍🍼,1F9D1-1F3FD-200D-1F37C,people-body,person-role,person feeding baby: medium skin tone,,,Liz Bravo,2020-09-26,3,single,🧑‍🍼,1F9D1-200D-1F37C,13,1641
+🧑🏾‍🍼,1F9D1-1F3FE-200D-1F37C,people-body,person-role,person feeding baby: medium-dark skin tone,,,Liz Bravo,2020-09-26,4,single,🧑‍🍼,1F9D1-200D-1F37C,13,1642
+🧑🏿‍🍼,1F9D1-1F3FF-200D-1F37C,people-body,person-role,person feeding baby: dark skin tone,,,Liz Bravo,2020-09-26,5,single,🧑‍🍼,1F9D1-200D-1F37C,13,1643
+👼,1F47C,people-body,person-fantasy,baby angel,"angel, baby, church, face, fairy, fairytale, fantasy, tale",,Anne Frauendorf,2018-11-16,,single,👼,1F47C,0.6,1644
+👼🏻,1F47C-1F3FB,people-body,person-fantasy,baby angel: light skin tone,,,Anne Frauendorf,2018-11-16,1,single,👼,1F47C,1,1645
+👼🏼,1F47C-1F3FC,people-body,person-fantasy,baby angel: medium-light skin tone,,,Anne Frauendorf,2018-11-16,2,single,👼,1F47C,1,1646
+👼🏽,1F47C-1F3FD,people-body,person-fantasy,baby angel: medium skin tone,,,Anne Frauendorf,2018-11-16,3,single,👼,1F47C,1,1647
+👼🏾,1F47C-1F3FE,people-body,person-fantasy,baby angel: medium-dark skin tone,,,Anne Frauendorf,2018-11-16,4,single,👼,1F47C,1,1648
+👼🏿,1F47C-1F3FF,people-body,person-fantasy,baby angel: dark skin tone,,,Anne Frauendorf,2018-11-16,5,single,👼,1F47C,1,1649
+🎅,1F385,people-body,person-fantasy,Santa Claus,"celebration, christmas, claus, fairy, fantasy, father, holiday, merry, santa, tale, xmas",,Lisa Thiel,2018-04-18,,single,🎅,1F385,0.6,1650
+🎅🏻,1F385-1F3FB,people-body,person-fantasy,Santa Claus: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🎅,1F385,1,1651
+🎅🏼,1F385-1F3FC,people-body,person-fantasy,Santa Claus: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🎅,1F385,1,1652
+🎅🏽,1F385-1F3FD,people-body,person-fantasy,Santa Claus: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🎅,1F385,1,1653
+🎅🏾,1F385-1F3FE,people-body,person-fantasy,Santa Claus: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🎅,1F385,1,1654
+🎅🏿,1F385-1F3FF,people-body,person-fantasy,Santa Claus: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🎅,1F385,1,1655
+🤶,1F936,people-body,person-fantasy,Mrs. Claus,"celebration, christmas, claus, fairy, fantasy, holiday, merry, mother, mrs, santa, tale, xmas",,Lisa Thiel,2018-04-18,,single,🤶,1F936,3,1656
+🤶🏻,1F936-1F3FB,people-body,person-fantasy,Mrs. Claus: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🤶,1F936,3,1657
+🤶🏼,1F936-1F3FC,people-body,person-fantasy,Mrs. Claus: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🤶,1F936,3,1658
+🤶🏽,1F936-1F3FD,people-body,person-fantasy,Mrs. Claus: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🤶,1F936,3,1659
+🤶🏾,1F936-1F3FE,people-body,person-fantasy,Mrs. Claus: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🤶,1F936,3,1660
+🤶🏿,1F936-1F3FF,people-body,person-fantasy,Mrs. Claus: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🤶,1F936,3,1661
+🧑‍🎄,1F9D1-200D-1F384,people-body,person-fantasy,Mx Claus,"celebration, christmas, claus, fairy, fantasy, holiday, merry, mx, santa, tale, xmas",,Liz Bravo,2020-09-26,,single,🧑‍🎄,1F9D1-200D-1F384,13,1662
+🧑🏻‍🎄,1F9D1-1F3FB-200D-1F384,people-body,person-fantasy,Mx Claus: light skin tone,,,Liz Bravo,2020-09-26,1,single,🧑‍🎄,1F9D1-200D-1F384,13,1663
+🧑🏼‍🎄,1F9D1-1F3FC-200D-1F384,people-body,person-fantasy,Mx Claus: medium-light skin tone,,,Liz Bravo,2020-09-26,2,single,🧑‍🎄,1F9D1-200D-1F384,13,1664
+🧑🏽‍🎄,1F9D1-1F3FD-200D-1F384,people-body,person-fantasy,Mx Claus: medium skin tone,,,Liz Bravo,2020-09-26,3,single,🧑‍🎄,1F9D1-200D-1F384,13,1665
+🧑🏾‍🎄,1F9D1-1F3FE-200D-1F384,people-body,person-fantasy,Mx Claus: medium-dark skin tone,,,Liz Bravo,2020-09-26,4,single,🧑‍🎄,1F9D1-200D-1F384,13,1666
+🧑🏿‍🎄,1F9D1-1F3FF-200D-1F384,people-body,person-fantasy,Mx Claus: dark skin tone,,,Liz Bravo,2020-09-26,5,single,🧑‍🎄,1F9D1-200D-1F384,13,1667
+🦸,1F9B8,people-body,person-fantasy,superhero,"good, hero, superpower",,Nadine Bartel,2019-05-06,,single,🦸,1F9B8,11,1668
+🦸🏻,1F9B8-1F3FB,people-body,person-fantasy,superhero: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🦸,1F9B8,11,1669
+🦸🏼,1F9B8-1F3FC,people-body,person-fantasy,superhero: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🦸,1F9B8,11,1670
+🦸🏽,1F9B8-1F3FD,people-body,person-fantasy,superhero: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🦸,1F9B8,11,1671
+🦸🏾,1F9B8-1F3FE,people-body,person-fantasy,superhero: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🦸,1F9B8,11,1672
+🦸🏿,1F9B8-1F3FF,people-body,person-fantasy,superhero: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🦸,1F9B8,11,1673
+🦸‍♂️,1F9B8-200D-2642-FE0F,people-body,person-fantasy,man superhero,"good, hero, man, superhero, superpower",,Nadine Bartel,2019-05-06,,single,🦸‍♂️,1F9B8-200D-2642-FE0F,11,1674
+🦸🏻‍♂️,1F9B8-1F3FB-200D-2642-FE0F,people-body,person-fantasy,man superhero: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🦸‍♂️,1F9B8-200D-2642-FE0F,11,1676
+🦸🏼‍♂️,1F9B8-1F3FC-200D-2642-FE0F,people-body,person-fantasy,man superhero: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🦸‍♂️,1F9B8-200D-2642-FE0F,11,1678
+🦸🏽‍♂️,1F9B8-1F3FD-200D-2642-FE0F,people-body,person-fantasy,man superhero: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🦸‍♂️,1F9B8-200D-2642-FE0F,11,1680
+🦸🏾‍♂️,1F9B8-1F3FE-200D-2642-FE0F,people-body,person-fantasy,man superhero: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🦸‍♂️,1F9B8-200D-2642-FE0F,11,1682
+🦸🏿‍♂️,1F9B8-1F3FF-200D-2642-FE0F,people-body,person-fantasy,man superhero: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🦸‍♂️,1F9B8-200D-2642-FE0F,11,1684
+🦸‍♀️,1F9B8-200D-2640-FE0F,people-body,person-fantasy,woman superhero,"good, hero, heroine, superhero, superpower, woman",,Nadine Bartel,2019-05-06,,single,🦸‍♀️,1F9B8-200D-2640-FE0F,11,1686
+🦸🏻‍♀️,1F9B8-1F3FB-200D-2640-FE0F,people-body,person-fantasy,woman superhero: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🦸‍♀️,1F9B8-200D-2640-FE0F,11,1688
+🦸🏼‍♀️,1F9B8-1F3FC-200D-2640-FE0F,people-body,person-fantasy,woman superhero: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🦸‍♀️,1F9B8-200D-2640-FE0F,11,1690
+🦸🏽‍♀️,1F9B8-1F3FD-200D-2640-FE0F,people-body,person-fantasy,woman superhero: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🦸‍♀️,1F9B8-200D-2640-FE0F,11,1692
+🦸🏾‍♀️,1F9B8-1F3FE-200D-2640-FE0F,people-body,person-fantasy,woman superhero: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🦸‍♀️,1F9B8-200D-2640-FE0F,11,1694
+🦸🏿‍♀️,1F9B8-1F3FF-200D-2640-FE0F,people-body,person-fantasy,woman superhero: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🦸‍♀️,1F9B8-200D-2640-FE0F,11,1696
+🦹,1F9B9,people-body,person-fantasy,supervillain,"bad, criminal, evil, superpower, villain",,Nadine Bartel,2019-05-06,,single,🦹,1F9B9,11,1698
+🦹🏻,1F9B9-1F3FB,people-body,person-fantasy,supervillain: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🦹,1F9B9,11,1699
+🦹🏼,1F9B9-1F3FC,people-body,person-fantasy,supervillain: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🦹,1F9B9,11,1700
+🦹🏽,1F9B9-1F3FD,people-body,person-fantasy,supervillain: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🦹,1F9B9,11,1701
+🦹🏾,1F9B9-1F3FE,people-body,person-fantasy,supervillain: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🦹,1F9B9,11,1702
+🦹🏿,1F9B9-1F3FF,people-body,person-fantasy,supervillain: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🦹,1F9B9,11,1703
+🦹‍♂️,1F9B9-200D-2642-FE0F,people-body,person-fantasy,man supervillain,"bad, criminal, evil, man, superpower, supervillain, villain",,Nadine Bartel,2019-05-06,,single,🦹‍♂️,1F9B9-200D-2642-FE0F,11,1704
+🦹🏻‍♂️,1F9B9-1F3FB-200D-2642-FE0F,people-body,person-fantasy,man supervillain: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🦹‍♂️,1F9B9-200D-2642-FE0F,11,1706
+🦹🏼‍♂️,1F9B9-1F3FC-200D-2642-FE0F,people-body,person-fantasy,man supervillain: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🦹‍♂️,1F9B9-200D-2642-FE0F,11,1708
+🦹🏽‍♂️,1F9B9-1F3FD-200D-2642-FE0F,people-body,person-fantasy,man supervillain: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🦹‍♂️,1F9B9-200D-2642-FE0F,11,1710
+🦹🏾‍♂️,1F9B9-1F3FE-200D-2642-FE0F,people-body,person-fantasy,man supervillain: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🦹‍♂️,1F9B9-200D-2642-FE0F,11,1712
+🦹🏿‍♂️,1F9B9-1F3FF-200D-2642-FE0F,people-body,person-fantasy,man supervillain: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🦹‍♂️,1F9B9-200D-2642-FE0F,11,1714
+🦹‍♀️,1F9B9-200D-2640-FE0F,people-body,person-fantasy,woman supervillain,"bad, criminal, evil, superpower, supervillain, villain, woman",,Nadine Bartel,2019-05-06,,single,🦹‍♀️,1F9B9-200D-2640-FE0F,11,1716
+🦹🏻‍♀️,1F9B9-1F3FB-200D-2640-FE0F,people-body,person-fantasy,woman supervillain: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🦹‍♀️,1F9B9-200D-2640-FE0F,11,1718
+🦹🏼‍♀️,1F9B9-1F3FC-200D-2640-FE0F,people-body,person-fantasy,woman supervillain: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🦹‍♀️,1F9B9-200D-2640-FE0F,11,1720
+🦹🏽‍♀️,1F9B9-1F3FD-200D-2640-FE0F,people-body,person-fantasy,woman supervillain: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🦹‍♀️,1F9B9-200D-2640-FE0F,11,1722
+🦹🏾‍♀️,1F9B9-1F3FE-200D-2640-FE0F,people-body,person-fantasy,woman supervillain: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🦹‍♀️,1F9B9-200D-2640-FE0F,11,1724
+🦹🏿‍♀️,1F9B9-1F3FF-200D-2640-FE0F,people-body,person-fantasy,woman supervillain: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🦹‍♀️,1F9B9-200D-2640-FE0F,11,1726
+🧙,1F9D9,people-body,person-fantasy,mage,"fantasy, magic, play, sorcerer, sorceress, sorcery, spell, summon, witch, wizard",,Lisa Thiel,2018-04-18,,single,🧙,1F9D9,5,1728
+🧙🏻,1F9D9-1F3FB,people-body,person-fantasy,mage: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🧙,1F9D9,5,1729
+🧙🏼,1F9D9-1F3FC,people-body,person-fantasy,mage: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🧙,1F9D9,5,1730
+🧙🏽,1F9D9-1F3FD,people-body,person-fantasy,mage: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🧙,1F9D9,5,1731
+🧙🏾,1F9D9-1F3FE,people-body,person-fantasy,mage: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🧙,1F9D9,5,1732
+🧙🏿,1F9D9-1F3FF,people-body,person-fantasy,mage: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🧙,1F9D9,5,1733
+🧙‍♂️,1F9D9-200D-2642-FE0F,people-body,person-fantasy,man mage,"fantasy, mage, magic, man, play, sorcerer, sorceress, sorcery, spell, summon, witch, wizard",,Nadine Bartel,2019-05-06,,single,🧙‍♂️,1F9D9-200D-2642-FE0F,5,1734
+🧙🏻‍♂️,1F9D9-1F3FB-200D-2642-FE0F,people-body,person-fantasy,man mage: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧙‍♂️,1F9D9-200D-2642-FE0F,5,1736
+🧙🏼‍♂️,1F9D9-1F3FC-200D-2642-FE0F,people-body,person-fantasy,man mage: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧙‍♂️,1F9D9-200D-2642-FE0F,5,1738
+🧙🏽‍♂️,1F9D9-1F3FD-200D-2642-FE0F,people-body,person-fantasy,man mage: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧙‍♂️,1F9D9-200D-2642-FE0F,5,1740
+🧙🏾‍♂️,1F9D9-1F3FE-200D-2642-FE0F,people-body,person-fantasy,man mage: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧙‍♂️,1F9D9-200D-2642-FE0F,5,1742
+🧙🏿‍♂️,1F9D9-1F3FF-200D-2642-FE0F,people-body,person-fantasy,man mage: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧙‍♂️,1F9D9-200D-2642-FE0F,5,1744
+🧙‍♀️,1F9D9-200D-2640-FE0F,people-body,person-fantasy,woman mage,"fantasy, mage, magic, play, sorcerer, sorceress, sorcery, spell, summon, witch, wizard, woman",,Nadine Bartel,2019-05-06,,single,🧙‍♀️,1F9D9-200D-2640-FE0F,5,1746
+🧙🏻‍♀️,1F9D9-1F3FB-200D-2640-FE0F,people-body,person-fantasy,woman mage: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧙‍♀️,1F9D9-200D-2640-FE0F,5,1748
+🧙🏼‍♀️,1F9D9-1F3FC-200D-2640-FE0F,people-body,person-fantasy,woman mage: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧙‍♀️,1F9D9-200D-2640-FE0F,5,1750
+🧙🏽‍♀️,1F9D9-1F3FD-200D-2640-FE0F,people-body,person-fantasy,woman mage: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧙‍♀️,1F9D9-200D-2640-FE0F,5,1752
+🧙🏾‍♀️,1F9D9-1F3FE-200D-2640-FE0F,people-body,person-fantasy,woman mage: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧙‍♀️,1F9D9-200D-2640-FE0F,5,1754
+🧙🏿‍♀️,1F9D9-1F3FF-200D-2640-FE0F,people-body,person-fantasy,woman mage: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧙‍♀️,1F9D9-200D-2640-FE0F,5,1756
+🧚,1F9DA,people-body,person-fantasy,fairy,"fairytale, fantasy, myth, person, pixie, tale, wings",,Nadine Bartel,2019-05-06,,single,🧚,1F9DA,5,1758
+🧚🏻,1F9DA-1F3FB,people-body,person-fantasy,fairy: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧚,1F9DA,5,1759
+🧚🏼,1F9DA-1F3FC,people-body,person-fantasy,fairy: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧚,1F9DA,5,1760
+🧚🏽,1F9DA-1F3FD,people-body,person-fantasy,fairy: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧚,1F9DA,5,1761
+🧚🏾,1F9DA-1F3FE,people-body,person-fantasy,fairy: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧚,1F9DA,5,1762
+🧚🏿,1F9DA-1F3FF,people-body,person-fantasy,fairy: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧚,1F9DA,5,1763
+🧚‍♂️,1F9DA-200D-2642-FE0F,people-body,person-fantasy,man fairy,"fairy, fairytale, fantasy, man, myth, oberon, person, pixie, puck, tale, wings",,Nadine Bartel,2019-05-06,,single,🧚‍♂️,1F9DA-200D-2642-FE0F,5,1764
+🧚🏻‍♂️,1F9DA-1F3FB-200D-2642-FE0F,people-body,person-fantasy,man fairy: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧚‍♂️,1F9DA-200D-2642-FE0F,5,1766
+🧚🏼‍♂️,1F9DA-1F3FC-200D-2642-FE0F,people-body,person-fantasy,man fairy: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧚‍♂️,1F9DA-200D-2642-FE0F,5,1768
+🧚🏽‍♂️,1F9DA-1F3FD-200D-2642-FE0F,people-body,person-fantasy,man fairy: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧚‍♂️,1F9DA-200D-2642-FE0F,5,1770
+🧚🏾‍♂️,1F9DA-1F3FE-200D-2642-FE0F,people-body,person-fantasy,man fairy: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧚‍♂️,1F9DA-200D-2642-FE0F,5,1772
+🧚🏿‍♂️,1F9DA-1F3FF-200D-2642-FE0F,people-body,person-fantasy,man fairy: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧚‍♂️,1F9DA-200D-2642-FE0F,5,1774
+🧚‍♀️,1F9DA-200D-2640-FE0F,people-body,person-fantasy,woman fairy,"fairy, fairytale, fantasy, myth, person, pixie, tale, titania, wings, woman",,Nadine Bartel,2019-05-06,,single,🧚‍♀️,1F9DA-200D-2640-FE0F,5,1776
+🧚🏻‍♀️,1F9DA-1F3FB-200D-2640-FE0F,people-body,person-fantasy,woman fairy: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧚‍♀️,1F9DA-200D-2640-FE0F,5,1778
+🧚🏼‍♀️,1F9DA-1F3FC-200D-2640-FE0F,people-body,person-fantasy,woman fairy: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧚‍♀️,1F9DA-200D-2640-FE0F,5,1780
+🧚🏽‍♀️,1F9DA-1F3FD-200D-2640-FE0F,people-body,person-fantasy,woman fairy: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧚‍♀️,1F9DA-200D-2640-FE0F,5,1782
+🧚🏾‍♀️,1F9DA-1F3FE-200D-2640-FE0F,people-body,person-fantasy,woman fairy: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧚‍♀️,1F9DA-200D-2640-FE0F,5,1784
+🧚🏿‍♀️,1F9DA-1F3FF-200D-2640-FE0F,people-body,person-fantasy,woman fairy: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧚‍♀️,1F9DA-200D-2640-FE0F,5,1786
+🧛,1F9DB,people-body,person-fantasy,vampire,"blood, dracula, fangs, halloween, scary, supernatural, teeth, undead",,Nadine Bartel,2019-05-06,,single,🧛,1F9DB,5,1788
+🧛🏻,1F9DB-1F3FB,people-body,person-fantasy,vampire: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧛,1F9DB,5,1789
+🧛🏼,1F9DB-1F3FC,people-body,person-fantasy,vampire: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧛,1F9DB,5,1790
+🧛🏽,1F9DB-1F3FD,people-body,person-fantasy,vampire: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧛,1F9DB,5,1791
+🧛🏾,1F9DB-1F3FE,people-body,person-fantasy,vampire: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧛,1F9DB,5,1792
+🧛🏿,1F9DB-1F3FF,people-body,person-fantasy,vampire: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧛,1F9DB,5,1793
+🧛‍♂️,1F9DB-200D-2642-FE0F,people-body,person-fantasy,man vampire,"blood, fangs, halloween, man, scary, supernatural, teeth, undead, vampire",,Nadine Bartel,2019-05-06,,single,🧛‍♂️,1F9DB-200D-2642-FE0F,5,1794
+🧛🏻‍♂️,1F9DB-1F3FB-200D-2642-FE0F,people-body,person-fantasy,man vampire: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧛‍♂️,1F9DB-200D-2642-FE0F,5,1796
+🧛🏼‍♂️,1F9DB-1F3FC-200D-2642-FE0F,people-body,person-fantasy,man vampire: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧛‍♂️,1F9DB-200D-2642-FE0F,5,1798
+🧛🏽‍♂️,1F9DB-1F3FD-200D-2642-FE0F,people-body,person-fantasy,man vampire: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧛‍♂️,1F9DB-200D-2642-FE0F,5,1800
+🧛🏾‍♂️,1F9DB-1F3FE-200D-2642-FE0F,people-body,person-fantasy,man vampire: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧛‍♂️,1F9DB-200D-2642-FE0F,5,1802
+🧛🏿‍♂️,1F9DB-1F3FF-200D-2642-FE0F,people-body,person-fantasy,man vampire: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧛‍♂️,1F9DB-200D-2642-FE0F,5,1804
+🧛‍♀️,1F9DB-200D-2640-FE0F,people-body,person-fantasy,woman vampire,"blood, fangs, halloween, scary, supernatural, teeth, undead, vampire, woman",,Nadine Bartel,2019-05-06,,single,🧛‍♀️,1F9DB-200D-2640-FE0F,5,1806
+🧛🏻‍♀️,1F9DB-1F3FB-200D-2640-FE0F,people-body,person-fantasy,woman vampire: light skin tone,,,Nadine Bartel,2019-05-06,1,single,🧛‍♀️,1F9DB-200D-2640-FE0F,5,1808
+🧛🏼‍♀️,1F9DB-1F3FC-200D-2640-FE0F,people-body,person-fantasy,woman vampire: medium-light skin tone,,,Nadine Bartel,2019-05-06,2,single,🧛‍♀️,1F9DB-200D-2640-FE0F,5,1810
+🧛🏽‍♀️,1F9DB-1F3FD-200D-2640-FE0F,people-body,person-fantasy,woman vampire: medium skin tone,,,Nadine Bartel,2019-05-06,3,single,🧛‍♀️,1F9DB-200D-2640-FE0F,5,1812
+🧛🏾‍♀️,1F9DB-1F3FE-200D-2640-FE0F,people-body,person-fantasy,woman vampire: medium-dark skin tone,,,Nadine Bartel,2019-05-06,4,single,🧛‍♀️,1F9DB-200D-2640-FE0F,5,1814
+🧛🏿‍♀️,1F9DB-1F3FF-200D-2640-FE0F,people-body,person-fantasy,woman vampire: dark skin tone,,,Nadine Bartel,2019-05-06,5,single,🧛‍♀️,1F9DB-200D-2640-FE0F,5,1816
+🧜,1F9DC,people-body,person-fantasy,merperson,"creature, fairytale, folklore, ocean, sea, siren, trident",,Rifat Erdogan,2019-05-06,,single,🧜,1F9DC,5,1818
+🧜🏻,1F9DC-1F3FB,people-body,person-fantasy,merperson: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🧜,1F9DC,5,1819
+🧜🏼,1F9DC-1F3FC,people-body,person-fantasy,merperson: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🧜,1F9DC,5,1820
+🧜🏽,1F9DC-1F3FD,people-body,person-fantasy,merperson: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🧜,1F9DC,5,1821
+🧜🏾,1F9DC-1F3FE,people-body,person-fantasy,merperson: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🧜,1F9DC,5,1822
+🧜🏿,1F9DC-1F3FF,people-body,person-fantasy,merperson: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🧜,1F9DC,5,1823
+🧜‍♂️,1F9DC-200D-2642-FE0F,people-body,person-fantasy,merman,"creature, fairytale, folklore, neptune, ocean, poseidon, sea, siren, trident, triton",,Sina Chlod,2018-11-16,,single,🧜‍♂️,1F9DC-200D-2642-FE0F,5,1824
+🧜🏻‍♂️,1F9DC-1F3FB-200D-2642-FE0F,people-body,person-fantasy,merman: light skin tone,,,Sina Chlod,2018-11-16,1,single,🧜‍♂️,1F9DC-200D-2642-FE0F,5,1826
+🧜🏼‍♂️,1F9DC-1F3FC-200D-2642-FE0F,people-body,person-fantasy,merman: medium-light skin tone,,,Sina Chlod,2018-11-16,2,single,🧜‍♂️,1F9DC-200D-2642-FE0F,5,1828
+🧜🏽‍♂️,1F9DC-1F3FD-200D-2642-FE0F,people-body,person-fantasy,merman: medium skin tone,,,Sina Chlod,2018-11-16,3,single,🧜‍♂️,1F9DC-200D-2642-FE0F,5,1830
+🧜🏾‍♂️,1F9DC-1F3FE-200D-2642-FE0F,people-body,person-fantasy,merman: medium-dark skin tone,,,Sina Chlod,2018-11-16,4,single,🧜‍♂️,1F9DC-200D-2642-FE0F,5,1832
+🧜🏿‍♂️,1F9DC-1F3FF-200D-2642-FE0F,people-body,person-fantasy,merman: dark skin tone,,,Sina Chlod,2018-11-16,5,single,🧜‍♂️,1F9DC-200D-2642-FE0F,5,1834
+🧜‍♀️,1F9DC-200D-2640-FE0F,people-body,person-fantasy,mermaid,"creature, fairytale, folklore, merwoman, ocean, sea, siren, trident",,Sina Chlod,2018-11-16,,single,🧜‍♀️,1F9DC-200D-2640-FE0F,5,1836
+🧜🏻‍♀️,1F9DC-1F3FB-200D-2640-FE0F,people-body,person-fantasy,mermaid: light skin tone,,,Sina Chlod,2018-11-16,1,single,🧜‍♀️,1F9DC-200D-2640-FE0F,5,1838
+🧜🏼‍♀️,1F9DC-1F3FC-200D-2640-FE0F,people-body,person-fantasy,mermaid: medium-light skin tone,,,Sina Chlod,2018-11-16,2,single,🧜‍♀️,1F9DC-200D-2640-FE0F,5,1840
+🧜🏽‍♀️,1F9DC-1F3FD-200D-2640-FE0F,people-body,person-fantasy,mermaid: medium skin tone,,,Sina Chlod,2018-11-16,3,single,🧜‍♀️,1F9DC-200D-2640-FE0F,5,1842
+🧜🏾‍♀️,1F9DC-1F3FE-200D-2640-FE0F,people-body,person-fantasy,mermaid: medium-dark skin tone,,,Sina Chlod,2018-11-16,4,single,🧜‍♀️,1F9DC-200D-2640-FE0F,5,1844
+🧜🏿‍♀️,1F9DC-1F3FF-200D-2640-FE0F,people-body,person-fantasy,mermaid: dark skin tone,,,Sina Chlod,2018-11-16,5,single,🧜‍♀️,1F9DC-200D-2640-FE0F,5,1846
+🧝,1F9DD,people-body,person-fantasy,elf,"elves, enchantment, fantasy, folklore, magic, magical, myth",,Lisa Thiel,2018-04-18,,single,🧝,1F9DD,5,1848
+🧝🏻,1F9DD-1F3FB,people-body,person-fantasy,elf: light skin tone,,,Lisa Thiel,2018-04-18,1,single,🧝,1F9DD,5,1849
+🧝🏼,1F9DD-1F3FC,people-body,person-fantasy,elf: medium-light skin tone,,,Lisa Thiel,2018-04-18,2,single,🧝,1F9DD,5,1850
+🧝🏽,1F9DD-1F3FD,people-body,person-fantasy,elf: medium skin tone,,,Lisa Thiel,2018-04-18,3,single,🧝,1F9DD,5,1851
+🧝🏾,1F9DD-1F3FE,people-body,person-fantasy,elf: medium-dark skin tone,,,Lisa Thiel,2018-04-18,4,single,🧝,1F9DD,5,1852
+🧝🏿,1F9DD-1F3FF,people-body,person-fantasy,elf: dark skin tone,,,Lisa Thiel,2018-04-18,5,single,🧝,1F9DD,5,1853
+🧝‍♂️,1F9DD-200D-2642-FE0F,people-body,person-fantasy,man elf,"elf, elves, enchantment, fantasy, folklore, magic, magical, man, myth",,Rifat Erdogan,2019-05-06,,single,🧝‍♂️,1F9DD-200D-2642-FE0F,5,1854
+🧝🏻‍♂️,1F9DD-1F3FB-200D-2642-FE0F,people-body,person-fantasy,man elf: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🧝‍♂️,1F9DD-200D-2642-FE0F,5,1856
+🧝🏼‍♂️,1F9DD-1F3FC-200D-2642-FE0F,people-body,person-fantasy,man elf: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🧝‍♂️,1F9DD-200D-2642-FE0F,5,1858
+🧝🏽‍♂️,1F9DD-1F3FD-200D-2642-FE0F,people-body,person-fantasy,man elf: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🧝‍♂️,1F9DD-200D-2642-FE0F,5,1860
+🧝🏾‍♂️,1F9DD-1F3FE-200D-2642-FE0F,people-body,person-fantasy,man elf: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🧝‍♂️,1F9DD-200D-2642-FE0F,5,1862
+🧝🏿‍♂️,1F9DD-1F3FF-200D-2642-FE0F,people-body,person-fantasy,man elf: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🧝‍♂️,1F9DD-200D-2642-FE0F,5,1864
+🧝‍♀️,1F9DD-200D-2640-FE0F,people-body,person-fantasy,woman elf,"elf, elves, enchantment, fantasy, folklore, magic, magical, myth, woman",,Rifat Erdogan,2019-05-06,,single,🧝‍♀️,1F9DD-200D-2640-FE0F,5,1866
+🧝🏻‍♀️,1F9DD-1F3FB-200D-2640-FE0F,people-body,person-fantasy,woman elf: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🧝‍♀️,1F9DD-200D-2640-FE0F,5,1868
+🧝🏼‍♀️,1F9DD-1F3FC-200D-2640-FE0F,people-body,person-fantasy,woman elf: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🧝‍♀️,1F9DD-200D-2640-FE0F,5,1870
+🧝🏽‍♀️,1F9DD-1F3FD-200D-2640-FE0F,people-body,person-fantasy,woman elf: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🧝‍♀️,1F9DD-200D-2640-FE0F,5,1872
+🧝🏾‍♀️,1F9DD-1F3FE-200D-2640-FE0F,people-body,person-fantasy,woman elf: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🧝‍♀️,1F9DD-200D-2640-FE0F,5,1874
+🧝🏿‍♀️,1F9DD-1F3FF-200D-2640-FE0F,people-body,person-fantasy,woman elf: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🧝‍♀️,1F9DD-200D-2640-FE0F,5,1876
+🧞,1F9DE,people-body,person-fantasy,genie,"djinn, fantasy, jinn, lamp, myth, rub, wishes",,Lisa Thiel,2018-04-18,,,,,5,1878
+🧞‍♂️,1F9DE-200D-2642-FE0F,people-body,person-fantasy,man genie,"djinn, fantasy, genie, jinn, lamp, man, myth, rub, wishes",,Rifat Erdogan,2019-05-06,,,,,5,1879
+🧞‍♀️,1F9DE-200D-2640-FE0F,people-body,person-fantasy,woman genie,"djinn, fantasy, genie, jinn, lamp, myth, rub, wishes, woman",,Rifat Erdogan,2019-05-06,,,,,5,1881
+🧟,1F9DF,people-body,person-fantasy,zombie,"apocalypse, dead, halloween, horror, scary, undead, walking",,Lisa Thiel,2018-04-18,,,,,5,1883
+🧟‍♂️,1F9DF-200D-2642-FE0F,people-body,person-fantasy,man zombie,"apocalypse, dead, halloween, horror, man, scary, undead, walking, zombie",,Rifat Erdogan,2019-05-06,,,,,5,1884
+🧟‍♀️,1F9DF-200D-2640-FE0F,people-body,person-fantasy,woman zombie,"apocalypse, dead, halloween, horror, scary, undead, walking, woman, zombie",,Rifat Erdogan,2019-05-06,,,,,5,1886
+🧌,1F9CC,people-body,person-fantasy,troll,"fairy, fantasy, monster, tale, trolling",,Niklas Kuntz,2022-05-09,,,,,14,1888
+💆,1F486,people-body,person-activity,person getting massage,"face, getting, headache, massage, person, relax, relaxing, salon, soothe, spa, tension, therapy, treatment",,Johanna Wellnitz,2018-04-18,,single,💆,1F486,0.6,1889
+💆🏻,1F486-1F3FB,people-body,person-activity,person getting massage: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,💆,1F486,1,1890
+💆🏼,1F486-1F3FC,people-body,person-activity,person getting massage: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,💆,1F486,1,1891
+💆🏽,1F486-1F3FD,people-body,person-activity,person getting massage: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,💆,1F486,1,1892
+💆🏾,1F486-1F3FE,people-body,person-activity,person getting massage: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,💆,1F486,1,1893
+💆🏿,1F486-1F3FF,people-body,person-activity,person getting massage: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,💆,1F486,1,1894
+💆‍♂️,1F486-200D-2642-FE0F,people-body,person-activity,man getting massage,"face, getting, headache, man, massage, relax, relaxing, salon, soothe, spa, tension, therapy, treatment",,Rifat Erdogan,2019-05-06,,single,💆‍♂️,1F486-200D-2642-FE0F,4,1895
+💆🏻‍♂️,1F486-1F3FB-200D-2642-FE0F,people-body,person-activity,man getting massage: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,💆‍♂️,1F486-200D-2642-FE0F,4,1897
+💆🏼‍♂️,1F486-1F3FC-200D-2642-FE0F,people-body,person-activity,man getting massage: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,💆‍♂️,1F486-200D-2642-FE0F,4,1899
+💆🏽‍♂️,1F486-1F3FD-200D-2642-FE0F,people-body,person-activity,man getting massage: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,💆‍♂️,1F486-200D-2642-FE0F,4,1901
+💆🏾‍♂️,1F486-1F3FE-200D-2642-FE0F,people-body,person-activity,man getting massage: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,💆‍♂️,1F486-200D-2642-FE0F,4,1903
+💆🏿‍♂️,1F486-1F3FF-200D-2642-FE0F,people-body,person-activity,man getting massage: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,💆‍♂️,1F486-200D-2642-FE0F,4,1905
+💆‍♀️,1F486-200D-2640-FE0F,people-body,person-activity,woman getting massage,"face, getting, headache, massage, relax, relaxing, salon, soothe, spa, tension, therapy, treatment, woman",,Rifat Erdogan,2019-05-06,,single,💆‍♀️,1F486-200D-2640-FE0F,4,1907
+💆🏻‍♀️,1F486-1F3FB-200D-2640-FE0F,people-body,person-activity,woman getting massage: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,💆‍♀️,1F486-200D-2640-FE0F,4,1909
+💆🏼‍♀️,1F486-1F3FC-200D-2640-FE0F,people-body,person-activity,woman getting massage: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,💆‍♀️,1F486-200D-2640-FE0F,4,1911
+💆🏽‍♀️,1F486-1F3FD-200D-2640-FE0F,people-body,person-activity,woman getting massage: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,💆‍♀️,1F486-200D-2640-FE0F,4,1913
+💆🏾‍♀️,1F486-1F3FE-200D-2640-FE0F,people-body,person-activity,woman getting massage: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,💆‍♀️,1F486-200D-2640-FE0F,4,1915
+💆🏿‍♀️,1F486-1F3FF-200D-2640-FE0F,people-body,person-activity,woman getting massage: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,💆‍♀️,1F486-200D-2640-FE0F,4,1917
+💇,1F487,people-body,person-activity,person getting haircut,"barber, beauty, chop, cosmetology, cut, groom, hair, haircut, parlor, person, shears, style",,Johanna Wellnitz,2018-04-18,,single,💇,1F487,0.6,1919
+💇🏻,1F487-1F3FB,people-body,person-activity,person getting haircut: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,💇,1F487,1,1920
+💇🏼,1F487-1F3FC,people-body,person-activity,person getting haircut: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,💇,1F487,1,1921
+💇🏽,1F487-1F3FD,people-body,person-activity,person getting haircut: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,💇,1F487,1,1922
+💇🏾,1F487-1F3FE,people-body,person-activity,person getting haircut: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,💇,1F487,1,1923
+💇🏿,1F487-1F3FF,people-body,person-activity,person getting haircut: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,💇,1F487,1,1924
+💇‍♂️,1F487-200D-2642-FE0F,people-body,person-activity,man getting haircut,"barber, beauty, chop, cosmetology, cut, groom, hair, haircut, man, parlor, person, shears, style",,Rifat Erdogan,2019-05-06,,single,💇‍♂️,1F487-200D-2642-FE0F,4,1925
+💇🏻‍♂️,1F487-1F3FB-200D-2642-FE0F,people-body,person-activity,man getting haircut: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,💇‍♂️,1F487-200D-2642-FE0F,4,1927
+💇🏼‍♂️,1F487-1F3FC-200D-2642-FE0F,people-body,person-activity,man getting haircut: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,💇‍♂️,1F487-200D-2642-FE0F,4,1929
+💇🏽‍♂️,1F487-1F3FD-200D-2642-FE0F,people-body,person-activity,man getting haircut: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,💇‍♂️,1F487-200D-2642-FE0F,4,1931
+💇🏾‍♂️,1F487-1F3FE-200D-2642-FE0F,people-body,person-activity,man getting haircut: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,💇‍♂️,1F487-200D-2642-FE0F,4,1933
+💇🏿‍♂️,1F487-1F3FF-200D-2642-FE0F,people-body,person-activity,man getting haircut: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,💇‍♂️,1F487-200D-2642-FE0F,4,1935
+💇‍♀️,1F487-200D-2640-FE0F,people-body,person-activity,woman getting haircut,"barber, beauty, chop, cosmetology, cut, groom, hair, haircut, parlor, person, shears, style, woman",,Rifat Erdogan,2019-05-06,,single,💇‍♀️,1F487-200D-2640-FE0F,4,1937
+💇🏻‍♀️,1F487-1F3FB-200D-2640-FE0F,people-body,person-activity,woman getting haircut: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,💇‍♀️,1F487-200D-2640-FE0F,4,1939
+💇🏼‍♀️,1F487-1F3FC-200D-2640-FE0F,people-body,person-activity,woman getting haircut: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,💇‍♀️,1F487-200D-2640-FE0F,4,1941
+💇🏽‍♀️,1F487-1F3FD-200D-2640-FE0F,people-body,person-activity,woman getting haircut: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,💇‍♀️,1F487-200D-2640-FE0F,4,1943
+💇🏾‍♀️,1F487-1F3FE-200D-2640-FE0F,people-body,person-activity,woman getting haircut: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,💇‍♀️,1F487-200D-2640-FE0F,4,1945
+💇🏿‍♀️,1F487-1F3FF-200D-2640-FE0F,people-body,person-activity,woman getting haircut: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,💇‍♀️,1F487-200D-2640-FE0F,4,1947
+🚶,1F6B6,people-body,person-activity,person walking,"amble, gait, hike, man, pace, pedestrian, person, stride, stroll, walk, walking",,Johanna Wellnitz,2018-04-18,,single,🚶,1F6B6,0.6,1949
+🚶🏻,1F6B6-1F3FB,people-body,person-activity,person walking: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🚶,1F6B6,1,1950
+🚶🏼,1F6B6-1F3FC,people-body,person-activity,person walking: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🚶,1F6B6,1,1951
+🚶🏽,1F6B6-1F3FD,people-body,person-activity,person walking: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🚶,1F6B6,1,1952
+🚶🏾,1F6B6-1F3FE,people-body,person-activity,person walking: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🚶,1F6B6,1,1953
+🚶🏿,1F6B6-1F3FF,people-body,person-activity,person walking: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🚶,1F6B6,1,1954
+🚶‍♂️,1F6B6-200D-2642-FE0F,people-body,person-activity,man walking,"amble, gait, hike, man, pace, pedestrian, stride, stroll, walk, walking",,Johanna Wellnitz,2018-04-18,,single,🚶‍♂️,1F6B6-200D-2642-FE0F,4,1955
+🚶🏻‍♂️,1F6B6-1F3FB-200D-2642-FE0F,people-body,person-activity,man walking: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🚶‍♂️,1F6B6-200D-2642-FE0F,4,1957
+🚶🏼‍♂️,1F6B6-1F3FC-200D-2642-FE0F,people-body,person-activity,man walking: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🚶‍♂️,1F6B6-200D-2642-FE0F,4,1959
+🚶🏽‍♂️,1F6B6-1F3FD-200D-2642-FE0F,people-body,person-activity,man walking: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🚶‍♂️,1F6B6-200D-2642-FE0F,4,1961
+🚶🏾‍♂️,1F6B6-1F3FE-200D-2642-FE0F,people-body,person-activity,man walking: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🚶‍♂️,1F6B6-200D-2642-FE0F,4,1963
+🚶🏿‍♂️,1F6B6-1F3FF-200D-2642-FE0F,people-body,person-activity,man walking: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🚶‍♂️,1F6B6-200D-2642-FE0F,4,1965
+🚶‍♀️,1F6B6-200D-2640-FE0F,people-body,person-activity,woman walking,"amble, gait, hike, man, pace, pedestrian, stride, stroll, walk, walking, woman",,Johanna Wellnitz,2018-04-18,,single,🚶‍♀️,1F6B6-200D-2640-FE0F,4,1967
+🚶🏻‍♀️,1F6B6-1F3FB-200D-2640-FE0F,people-body,person-activity,woman walking: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🚶‍♀️,1F6B6-200D-2640-FE0F,4,1969
+🚶🏼‍♀️,1F6B6-1F3FC-200D-2640-FE0F,people-body,person-activity,woman walking: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🚶‍♀️,1F6B6-200D-2640-FE0F,4,1971
+🚶🏽‍♀️,1F6B6-1F3FD-200D-2640-FE0F,people-body,person-activity,woman walking: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🚶‍♀️,1F6B6-200D-2640-FE0F,4,1973
+🚶🏾‍♀️,1F6B6-1F3FE-200D-2640-FE0F,people-body,person-activity,woman walking: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🚶‍♀️,1F6B6-200D-2640-FE0F,4,1975
+🚶🏿‍♀️,1F6B6-1F3FF-200D-2640-FE0F,people-body,person-activity,woman walking: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🚶‍♀️,1F6B6-200D-2640-FE0F,4,1977
+🚶‍➡️,1F6B6-200D-27A1-FE0F,people-body,person-activity,person walking facing right,"amble, gait, hike, man, pace, pedestrian, person, stride, stroll, walk, walking",,Johanna Wellnitz,2018-04-18,,single,🚶‍➡️,1F6B6-200D-27A1-FE0F,15.1,1979
+🚶🏻‍➡️,1F6B6-1F3FB-200D-27A1-FE0F,people-body,person-activity,person walking facing right,,,Johanna Wellnitz,2018-04-18,1,single,🚶‍➡️,1F6B6-200D-27A1-FE0F,15.1,1981
+🚶🏼‍➡️,1F6B6-1F3FC-200D-27A1-FE0F,people-body,person-activity,person walking facing right,,,Johanna Wellnitz,2018-04-18,2,single,🚶‍➡️,1F6B6-200D-27A1-FE0F,15.1,1983
+🚶🏽‍➡️,1F6B6-1F3FD-200D-27A1-FE0F,people-body,person-activity,person walking facing right,,,Johanna Wellnitz,2018-04-18,3,single,🚶‍➡️,1F6B6-200D-27A1-FE0F,15.1,1985
+🚶🏾‍➡️,1F6B6-1F3FE-200D-27A1-FE0F,people-body,person-activity,person walking facing right,,,Johanna Wellnitz,2018-04-18,4,single,🚶‍➡️,1F6B6-200D-27A1-FE0F,15.1,1987
+🚶🏿‍➡️,1F6B6-1F3FF-200D-27A1-FE0F,people-body,person-activity,person walking facing right,,,Johanna Wellnitz,2018-04-18,5,single,🚶‍➡️,1F6B6-200D-27A1-FE0F,15.1,1989
+🚶‍♀️‍➡️,1F6B6-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman walking facing right,"amble, gait, hike, man, pace, pedestrian, stride, stroll, walk, walking, woman",,Johanna Wellnitz,2018-04-18,,single,🚶‍♀️‍➡️,1F6B6-200D-2640-FE0F-200D-27A1-FE0F,15.1,1991
+🚶🏻‍♀️‍➡️,1F6B6-1F3FB-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman walking facing right,,,Johanna Wellnitz,2018-04-18,1,single,🚶‍♀️‍➡️,1F6B6-200D-2640-FE0F-200D-27A1-FE0F,15.1,1995
+🚶🏼‍♀️‍➡️,1F6B6-1F3FC-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman walking facing right,,,Johanna Wellnitz,2018-04-18,2,single,🚶‍♀️‍➡️,1F6B6-200D-2640-FE0F-200D-27A1-FE0F,15.1,1999
+🚶🏽‍♀️‍➡️,1F6B6-1F3FD-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman walking facing right,,,Johanna Wellnitz,2018-04-18,3,single,🚶‍♀️‍➡️,1F6B6-200D-2640-FE0F-200D-27A1-FE0F,15.1,2003
+🚶🏾‍♀️‍➡️,1F6B6-1F3FE-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman walking facing right,,,Johanna Wellnitz,2018-04-18,4,single,🚶‍♀️‍➡️,1F6B6-200D-2640-FE0F-200D-27A1-FE0F,15.1,2007
+🚶🏿‍♀️‍➡️,1F6B6-1F3FF-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman walking facing right,,,Johanna Wellnitz,2018-04-18,5,single,🚶‍♀️‍➡️,1F6B6-200D-2640-FE0F-200D-27A1-FE0F,15.1,2011
+🚶‍♂️‍➡️,1F6B6-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man walking facing right,"amble, gait, hike, man, pace, pedestrian, stride, stroll, walk, walking",,Johanna Wellnitz,2018-04-18,,single,🚶‍♂️‍➡️,1F6B6-200D-2642-FE0F-200D-27A1-FE0F,15.1,2015
+🚶🏻‍♂️‍➡️,1F6B6-1F3FB-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man walking facing right,,,Johanna Wellnitz,2018-04-18,1,single,🚶‍♂️‍➡️,1F6B6-200D-2642-FE0F-200D-27A1-FE0F,15.1,2019
+🚶🏼‍♂️‍➡️,1F6B6-1F3FC-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man walking facing right,,,Johanna Wellnitz,2018-04-18,2,single,🚶‍♂️‍➡️,1F6B6-200D-2642-FE0F-200D-27A1-FE0F,15.1,2023
+🚶🏽‍♂️‍➡️,1F6B6-1F3FD-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man walking facing right,,,Johanna Wellnitz,2018-04-18,3,single,🚶‍♂️‍➡️,1F6B6-200D-2642-FE0F-200D-27A1-FE0F,15.1,2027
+🚶🏾‍♂️‍➡️,1F6B6-1F3FE-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man walking facing right,,,Johanna Wellnitz,2018-04-18,4,single,🚶‍♂️‍➡️,1F6B6-200D-2642-FE0F-200D-27A1-FE0F,15.1,2031
+🚶🏿‍♂️‍➡️,1F6B6-1F3FF-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man walking facing right,,,Johanna Wellnitz,2018-04-18,5,single,🚶‍♂️‍➡️,1F6B6-200D-2642-FE0F-200D-27A1-FE0F,15.1,2035
+🧍,1F9CD,people-body,person-activity,person standing,"person, stand, standing",,Laura Dworatschek,2019-05-06,,single,🧍,1F9CD,12,2039
+🧍🏻,1F9CD-1F3FB,people-body,person-activity,person standing: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🧍,1F9CD,12,2040
+🧍🏼,1F9CD-1F3FC,people-body,person-activity,person standing: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🧍,1F9CD,12,2041
+🧍🏽,1F9CD-1F3FD,people-body,person-activity,person standing: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🧍,1F9CD,12,2042
+🧍🏾,1F9CD-1F3FE,people-body,person-activity,person standing: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🧍,1F9CD,12,2043
+🧍🏿,1F9CD-1F3FF,people-body,person-activity,person standing: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🧍,1F9CD,12,2044
+🧍‍♂️,1F9CD-200D-2642-FE0F,people-body,person-activity,man standing,"man, stand, standing",,Laura Dworatschek,2019-05-06,,single,🧍‍♂️,1F9CD-200D-2642-FE0F,12,2045
+🧍🏻‍♂️,1F9CD-1F3FB-200D-2642-FE0F,people-body,person-activity,man standing: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🧍‍♂️,1F9CD-200D-2642-FE0F,12,2047
+🧍🏼‍♂️,1F9CD-1F3FC-200D-2642-FE0F,people-body,person-activity,man standing: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🧍‍♂️,1F9CD-200D-2642-FE0F,12,2049
+🧍🏽‍♂️,1F9CD-1F3FD-200D-2642-FE0F,people-body,person-activity,man standing: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🧍‍♂️,1F9CD-200D-2642-FE0F,12,2051
+🧍🏾‍♂️,1F9CD-1F3FE-200D-2642-FE0F,people-body,person-activity,man standing: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🧍‍♂️,1F9CD-200D-2642-FE0F,12,2053
+🧍🏿‍♂️,1F9CD-1F3FF-200D-2642-FE0F,people-body,person-activity,man standing: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🧍‍♂️,1F9CD-200D-2642-FE0F,12,2055
+🧍‍♀️,1F9CD-200D-2640-FE0F,people-body,person-activity,woman standing,"stand, standing, woman",,Laura Dworatschek,2019-05-06,,single,🧍‍♀️,1F9CD-200D-2640-FE0F,12,2057
+🧍🏻‍♀️,1F9CD-1F3FB-200D-2640-FE0F,people-body,person-activity,woman standing: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🧍‍♀️,1F9CD-200D-2640-FE0F,12,2059
+🧍🏼‍♀️,1F9CD-1F3FC-200D-2640-FE0F,people-body,person-activity,woman standing: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🧍‍♀️,1F9CD-200D-2640-FE0F,12,2061
+🧍🏽‍♀️,1F9CD-1F3FD-200D-2640-FE0F,people-body,person-activity,woman standing: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🧍‍♀️,1F9CD-200D-2640-FE0F,12,2063
+🧍🏾‍♀️,1F9CD-1F3FE-200D-2640-FE0F,people-body,person-activity,woman standing: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🧍‍♀️,1F9CD-200D-2640-FE0F,12,2065
+🧍🏿‍♀️,1F9CD-1F3FF-200D-2640-FE0F,people-body,person-activity,woman standing: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🧍‍♀️,1F9CD-200D-2640-FE0F,12,2067
+🧎,1F9CE,people-body,person-activity,person kneeling,"kneel, kneeling, knees, person",,Laura Dworatschek,2019-05-06,,single,🧎,1F9CE,12,2069
+🧎🏻,1F9CE-1F3FB,people-body,person-activity,person kneeling: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🧎,1F9CE,12,2070
+🧎🏼,1F9CE-1F3FC,people-body,person-activity,person kneeling: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🧎,1F9CE,12,2071
+🧎🏽,1F9CE-1F3FD,people-body,person-activity,person kneeling: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🧎,1F9CE,12,2072
+🧎🏾,1F9CE-1F3FE,people-body,person-activity,person kneeling: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🧎,1F9CE,12,2073
+🧎🏿,1F9CE-1F3FF,people-body,person-activity,person kneeling: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🧎,1F9CE,12,2074
+🧎‍♂️,1F9CE-200D-2642-FE0F,people-body,person-activity,man kneeling,"kneel, kneeling, knees, man",,Laura Dworatschek,2019-05-06,,single,🧎‍♂️,1F9CE-200D-2642-FE0F,12,2075
+🧎🏻‍♂️,1F9CE-1F3FB-200D-2642-FE0F,people-body,person-activity,man kneeling: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🧎‍♂️,1F9CE-200D-2642-FE0F,12,2077
+🧎🏼‍♂️,1F9CE-1F3FC-200D-2642-FE0F,people-body,person-activity,man kneeling: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🧎‍♂️,1F9CE-200D-2642-FE0F,12,2079
+🧎🏽‍♂️,1F9CE-1F3FD-200D-2642-FE0F,people-body,person-activity,man kneeling: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🧎‍♂️,1F9CE-200D-2642-FE0F,12,2081
+🧎🏾‍♂️,1F9CE-1F3FE-200D-2642-FE0F,people-body,person-activity,man kneeling: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🧎‍♂️,1F9CE-200D-2642-FE0F,12,2083
+🧎🏿‍♂️,1F9CE-1F3FF-200D-2642-FE0F,people-body,person-activity,man kneeling: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🧎‍♂️,1F9CE-200D-2642-FE0F,12,2085
+🧎‍♀️,1F9CE-200D-2640-FE0F,people-body,person-activity,woman kneeling,"kneel, kneeling, knees, woman",,Laura Dworatschek,2019-05-06,,single,🧎‍♀️,1F9CE-200D-2640-FE0F,12,2087
+🧎🏻‍♀️,1F9CE-1F3FB-200D-2640-FE0F,people-body,person-activity,woman kneeling: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,🧎‍♀️,1F9CE-200D-2640-FE0F,12,2089
+🧎🏼‍♀️,1F9CE-1F3FC-200D-2640-FE0F,people-body,person-activity,woman kneeling: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,🧎‍♀️,1F9CE-200D-2640-FE0F,12,2091
+🧎🏽‍♀️,1F9CE-1F3FD-200D-2640-FE0F,people-body,person-activity,woman kneeling: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,🧎‍♀️,1F9CE-200D-2640-FE0F,12,2093
+🧎🏾‍♀️,1F9CE-1F3FE-200D-2640-FE0F,people-body,person-activity,woman kneeling: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,🧎‍♀️,1F9CE-200D-2640-FE0F,12,2095
+🧎🏿‍♀️,1F9CE-1F3FF-200D-2640-FE0F,people-body,person-activity,woman kneeling: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,🧎‍♀️,1F9CE-200D-2640-FE0F,12,2097
+🧎‍➡️,1F9CE-200D-27A1-FE0F,people-body,person-activity,person kneeling facing right,"kneel, kneeling, knees, person",,Laura Dworatschek,2019-05-06,,single,🧎‍➡️,1F9CE-200D-27A1-FE0F,15.1,2099
+🧎🏻‍➡️,1F9CE-1F3FB-200D-27A1-FE0F,people-body,person-activity,person kneeling facing right,,,Laura Dworatschek,2019-05-06,1,single,🧎‍➡️,1F9CE-200D-27A1-FE0F,15.1,2101
+🧎🏼‍➡️,1F9CE-1F3FC-200D-27A1-FE0F,people-body,person-activity,person kneeling facing right,,,Laura Dworatschek,2019-05-06,2,single,🧎‍➡️,1F9CE-200D-27A1-FE0F,15.1,2103
+🧎🏽‍➡️,1F9CE-1F3FD-200D-27A1-FE0F,people-body,person-activity,person kneeling facing right,,,Laura Dworatschek,2019-05-06,3,single,🧎‍➡️,1F9CE-200D-27A1-FE0F,15.1,2105
+🧎🏾‍➡️,1F9CE-1F3FE-200D-27A1-FE0F,people-body,person-activity,person kneeling facing right,,,Laura Dworatschek,2019-05-06,4,single,🧎‍➡️,1F9CE-200D-27A1-FE0F,15.1,2107
+🧎🏿‍➡️,1F9CE-1F3FF-200D-27A1-FE0F,people-body,person-activity,person kneeling facing right,,,Laura Dworatschek,2019-05-06,5,single,🧎‍➡️,1F9CE-200D-27A1-FE0F,15.1,2109
+🧎‍♀️‍➡️,1F9CE-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman kneeling facing right,"kneel, kneeling, knees, woman",,Laura Dworatschek,2019-05-06,,single,🧎‍♀️‍➡️,1F9CE-200D-2640-FE0F-200D-27A1-FE0F,15.1,2111
+🧎🏻‍♀️‍➡️,1F9CE-1F3FB-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman kneeling facing right,,,Laura Dworatschek,2019-05-06,1,single,🧎‍♀️‍➡️,1F9CE-200D-2640-FE0F-200D-27A1-FE0F,15.1,2115
+🧎🏼‍♀️‍➡️,1F9CE-1F3FC-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman kneeling facing right,,,Laura Dworatschek,2019-05-06,2,single,🧎‍♀️‍➡️,1F9CE-200D-2640-FE0F-200D-27A1-FE0F,15.1,2119
+🧎🏽‍♀️‍➡️,1F9CE-1F3FD-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman kneeling facing right,,,Laura Dworatschek,2019-05-06,3,single,🧎‍♀️‍➡️,1F9CE-200D-2640-FE0F-200D-27A1-FE0F,15.1,2123
+🧎🏾‍♀️‍➡️,1F9CE-1F3FE-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman kneeling facing right,,,Laura Dworatschek,2019-05-06,4,single,🧎‍♀️‍➡️,1F9CE-200D-2640-FE0F-200D-27A1-FE0F,15.1,2127
+🧎🏿‍♀️‍➡️,1F9CE-1F3FF-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman kneeling facing right,,,Laura Dworatschek,2019-05-06,5,single,🧎‍♀️‍➡️,1F9CE-200D-2640-FE0F-200D-27A1-FE0F,15.1,2131
+🧎‍♂️‍➡️,1F9CE-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man kneeling facing right,"kneel, kneeling, knees, man",,Laura Dworatschek,2019-05-06,,single,🧎‍♂️‍➡️,1F9CE-200D-2642-FE0F-200D-27A1-FE0F,15.1,2135
+🧎🏻‍♂️‍➡️,1F9CE-1F3FB-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man kneeling facing right,,,Laura Dworatschek,2019-05-06,1,single,🧎‍♂️‍➡️,1F9CE-200D-2642-FE0F-200D-27A1-FE0F,15.1,2139
+🧎🏼‍♂️‍➡️,1F9CE-1F3FC-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man kneeling facing right,,,Laura Dworatschek,2019-05-06,2,single,🧎‍♂️‍➡️,1F9CE-200D-2642-FE0F-200D-27A1-FE0F,15.1,2143
+🧎🏽‍♂️‍➡️,1F9CE-1F3FD-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man kneeling facing right,,,Laura Dworatschek,2019-05-06,3,single,🧎‍♂️‍➡️,1F9CE-200D-2642-FE0F-200D-27A1-FE0F,15.1,2147
+🧎🏾‍♂️‍➡️,1F9CE-1F3FE-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man kneeling facing right,,,Laura Dworatschek,2019-05-06,4,single,🧎‍♂️‍➡️,1F9CE-200D-2642-FE0F-200D-27A1-FE0F,15.1,2151
+🧎🏿‍♂️‍➡️,1F9CE-1F3FF-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man kneeling facing right,,,Laura Dworatschek,2019-05-06,5,single,🧎‍♂️‍➡️,1F9CE-200D-2642-FE0F-200D-27A1-FE0F,15.1,2155
+🧑‍🦯,1F9D1-200D-1F9AF,people-body,person-activity,person with white cane,"accessibility, blind, cane, person, probing, white",,Benedikt Groß,2020-01-15,,single,🧑‍🦯,1F9D1-200D-1F9AF,12.1,2159
+🧑🏻‍🦯,1F9D1-1F3FB-200D-1F9AF,people-body,person-activity,person with white cane: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🦯,1F9D1-200D-1F9AF,12.1,2160
+🧑🏼‍🦯,1F9D1-1F3FC-200D-1F9AF,people-body,person-activity,person with white cane: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🦯,1F9D1-200D-1F9AF,12.1,2161
+🧑🏽‍🦯,1F9D1-1F3FD-200D-1F9AF,people-body,person-activity,person with white cane: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🦯,1F9D1-200D-1F9AF,12.1,2162
+🧑🏾‍🦯,1F9D1-1F3FE-200D-1F9AF,people-body,person-activity,person with white cane: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🦯,1F9D1-200D-1F9AF,12.1,2163
+🧑🏿‍🦯,1F9D1-1F3FF-200D-1F9AF,people-body,person-activity,person with white cane: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🦯,1F9D1-200D-1F9AF,12.1,2164
+🧑‍🦯‍➡️,1F9D1-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,person with white cane facing right,"accessibility, blind, cane, person, probing, white",,Benedikt Groß,2020-01-15,,single,🧑‍🦯‍➡️,1F9D1-200D-1F9AF-200D-27A1-FE0F,15.1,2165
+🧑🏻‍🦯‍➡️,1F9D1-1F3FB-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,person with white cane facing right,,,Benedikt Groß,2020-01-15,1,single,🧑‍🦯‍➡️,1F9D1-200D-1F9AF-200D-27A1-FE0F,15.1,2167
+🧑🏼‍🦯‍➡️,1F9D1-1F3FC-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,person with white cane facing right,,,Benedikt Groß,2020-01-15,2,single,🧑‍🦯‍➡️,1F9D1-200D-1F9AF-200D-27A1-FE0F,15.1,2169
+🧑🏽‍🦯‍➡️,1F9D1-1F3FD-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,person with white cane facing right,,,Benedikt Groß,2020-01-15,3,single,🧑‍🦯‍➡️,1F9D1-200D-1F9AF-200D-27A1-FE0F,15.1,2171
+🧑🏾‍🦯‍➡️,1F9D1-1F3FE-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,person with white cane facing right,,,Benedikt Groß,2020-01-15,4,single,🧑‍🦯‍➡️,1F9D1-200D-1F9AF-200D-27A1-FE0F,15.1,2173
+🧑🏿‍🦯‍➡️,1F9D1-1F3FF-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,person with white cane facing right,,,Benedikt Groß,2020-01-15,5,single,🧑‍🦯‍➡️,1F9D1-200D-1F9AF-200D-27A1-FE0F,15.1,2175
+👨‍🦯,1F468-200D-1F9AF,people-body,person-activity,man with white cane,"accessibility, blind, cane, man, probing, white",,Yasmin Abdullahi,2019-05-07,,single,👨‍🦯,1F468-200D-1F9AF,12,2177
+👨🏻‍🦯,1F468-1F3FB-200D-1F9AF,people-body,person-activity,man with white cane: light skin tone,,,Yasmin Abdullahi,2019-05-07,1,single,👨‍🦯,1F468-200D-1F9AF,12,2178
+👨🏼‍🦯,1F468-1F3FC-200D-1F9AF,people-body,person-activity,man with white cane: medium-light skin tone,,,Yasmin Abdullahi,2019-05-07,2,single,👨‍🦯,1F468-200D-1F9AF,12,2179
+👨🏽‍🦯,1F468-1F3FD-200D-1F9AF,people-body,person-activity,man with white cane: medium skin tone,,,Yasmin Abdullahi,2019-05-07,3,single,👨‍🦯,1F468-200D-1F9AF,12,2180
+👨🏾‍🦯,1F468-1F3FE-200D-1F9AF,people-body,person-activity,man with white cane: medium-dark skin tone,,,Yasmin Abdullahi,2019-05-07,4,single,👨‍🦯,1F468-200D-1F9AF,12,2181
+👨🏿‍🦯,1F468-1F3FF-200D-1F9AF,people-body,person-activity,man with white cane: dark skin tone,,,Yasmin Abdullahi,2019-05-07,5,single,👨‍🦯,1F468-200D-1F9AF,12,2182
+👨‍🦯‍➡️,1F468-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,man with white cane facing right,"accessibility, blind, cane, man, probing, white",,Yasmin Abdullahi,2019-05-07,,single,👨‍🦯‍➡️,1F468-200D-1F9AF-200D-27A1-FE0F,15.1,2183
+👨🏻‍🦯‍➡️,1F468-1F3FB-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,man with white cane facing right,,,Yasmin Abdullahi,2019-05-07,1,single,👨‍🦯‍➡️,1F468-200D-1F9AF-200D-27A1-FE0F,15.1,2185
+👨🏼‍🦯‍➡️,1F468-1F3FC-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,man with white cane facing right,,,Yasmin Abdullahi,2019-05-07,2,single,👨‍🦯‍➡️,1F468-200D-1F9AF-200D-27A1-FE0F,15.1,2187
+👨🏽‍🦯‍➡️,1F468-1F3FD-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,man with white cane facing right,,,Yasmin Abdullahi,2019-05-07,3,single,👨‍🦯‍➡️,1F468-200D-1F9AF-200D-27A1-FE0F,15.1,2189
+👨🏾‍🦯‍➡️,1F468-1F3FE-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,man with white cane facing right,,,Yasmin Abdullahi,2019-05-07,4,single,👨‍🦯‍➡️,1F468-200D-1F9AF-200D-27A1-FE0F,15.1,2191
+👨🏿‍🦯‍➡️,1F468-1F3FF-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,man with white cane facing right,,,Yasmin Abdullahi,2019-05-07,5,single,👨‍🦯‍➡️,1F468-200D-1F9AF-200D-27A1-FE0F,15.1,2193
+👩‍🦯,1F469-200D-1F9AF,people-body,person-activity,woman with white cane,"accessibility, blind, cane, probing, white, woman",,Yasmin Abdullahi,2019-05-07,,single,👩‍🦯,1F469-200D-1F9AF,12,2195
+👩🏻‍🦯,1F469-1F3FB-200D-1F9AF,people-body,person-activity,woman with white cane: light skin tone,,,Yasmin Abdullahi,2019-05-07,1,single,👩‍🦯,1F469-200D-1F9AF,12,2196
+👩🏼‍🦯,1F469-1F3FC-200D-1F9AF,people-body,person-activity,woman with white cane: medium-light skin tone,,,Yasmin Abdullahi,2019-05-07,2,single,👩‍🦯,1F469-200D-1F9AF,12,2197
+👩🏽‍🦯,1F469-1F3FD-200D-1F9AF,people-body,person-activity,woman with white cane: medium skin tone,,,Yasmin Abdullahi,2019-05-07,3,single,👩‍🦯,1F469-200D-1F9AF,12,2198
+👩🏾‍🦯,1F469-1F3FE-200D-1F9AF,people-body,person-activity,woman with white cane: medium-dark skin tone,,,Yasmin Abdullahi,2019-05-07,4,single,👩‍🦯,1F469-200D-1F9AF,12,2199
+👩🏿‍🦯,1F469-1F3FF-200D-1F9AF,people-body,person-activity,woman with white cane: dark skin tone,,,Yasmin Abdullahi,2019-05-07,5,single,👩‍🦯,1F469-200D-1F9AF,12,2200
+👩‍🦯‍➡️,1F469-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,woman with white cane facing right,"accessibility, blind, cane, probing, white, woman",,Yasmin Abdullahi,2019-05-07,,single,👩‍🦯‍➡️,1F469-200D-1F9AF-200D-27A1-FE0F,15.1,2201
+👩🏻‍🦯‍➡️,1F469-1F3FB-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,woman with white cane facing right,,,Yasmin Abdullahi,2019-05-07,1,single,👩‍🦯‍➡️,1F469-200D-1F9AF-200D-27A1-FE0F,15.1,2203
+👩🏼‍🦯‍➡️,1F469-1F3FC-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,woman with white cane facing right,,,Yasmin Abdullahi,2019-05-07,2,single,👩‍🦯‍➡️,1F469-200D-1F9AF-200D-27A1-FE0F,15.1,2205
+👩🏽‍🦯‍➡️,1F469-1F3FD-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,woman with white cane facing right,,,Yasmin Abdullahi,2019-05-07,3,single,👩‍🦯‍➡️,1F469-200D-1F9AF-200D-27A1-FE0F,15.1,2207
+👩🏾‍🦯‍➡️,1F469-1F3FE-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,woman with white cane facing right,,,Yasmin Abdullahi,2019-05-07,4,single,👩‍🦯‍➡️,1F469-200D-1F9AF-200D-27A1-FE0F,15.1,2209
+👩🏿‍🦯‍➡️,1F469-1F3FF-200D-1F9AF-200D-27A1-FE0F,people-body,person-activity,woman with white cane facing right,,,Yasmin Abdullahi,2019-05-07,5,single,👩‍🦯‍➡️,1F469-200D-1F9AF-200D-27A1-FE0F,15.1,2211
+🧑‍🦼,1F9D1-200D-1F9BC,people-body,person-activity,person in motorized wheelchair,"accessibility, motorized, person, wheelchair",,Benedikt Groß,2020-01-15,,single,🧑‍🦼,1F9D1-200D-1F9BC,12.1,2213
+🧑🏻‍🦼,1F9D1-1F3FB-200D-1F9BC,people-body,person-activity,person in motorized wheelchair: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🦼,1F9D1-200D-1F9BC,12.1,2214
+🧑🏼‍🦼,1F9D1-1F3FC-200D-1F9BC,people-body,person-activity,person in motorized wheelchair: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🦼,1F9D1-200D-1F9BC,12.1,2215
+🧑🏽‍🦼,1F9D1-1F3FD-200D-1F9BC,people-body,person-activity,person in motorized wheelchair: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🦼,1F9D1-200D-1F9BC,12.1,2216
+🧑🏾‍🦼,1F9D1-1F3FE-200D-1F9BC,people-body,person-activity,person in motorized wheelchair: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🦼,1F9D1-200D-1F9BC,12.1,2217
+🧑🏿‍🦼,1F9D1-1F3FF-200D-1F9BC,people-body,person-activity,person in motorized wheelchair: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🦼,1F9D1-200D-1F9BC,12.1,2218
+🧑‍🦼‍➡️,1F9D1-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,person in motorized wheelchair facing right,"accessibility, motorized, person, wheelchair",,Benedikt Groß,2020-01-15,,single,🧑‍🦼‍➡️,1F9D1-200D-1F9BC-200D-27A1-FE0F,15.1,2219
+🧑🏻‍🦼‍➡️,1F9D1-1F3FB-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,person in motorized wheelchair facing right,,,Benedikt Groß,2020-01-15,1,single,🧑‍🦼‍➡️,1F9D1-200D-1F9BC-200D-27A1-FE0F,15.1,2221
+🧑🏼‍🦼‍➡️,1F9D1-1F3FC-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,person in motorized wheelchair facing right,,,Benedikt Groß,2020-01-15,2,single,🧑‍🦼‍➡️,1F9D1-200D-1F9BC-200D-27A1-FE0F,15.1,2223
+🧑🏽‍🦼‍➡️,1F9D1-1F3FD-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,person in motorized wheelchair facing right,,,Benedikt Groß,2020-01-15,3,single,🧑‍🦼‍➡️,1F9D1-200D-1F9BC-200D-27A1-FE0F,15.1,2225
+🧑🏾‍🦼‍➡️,1F9D1-1F3FE-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,person in motorized wheelchair facing right,,,Benedikt Groß,2020-01-15,4,single,🧑‍🦼‍➡️,1F9D1-200D-1F9BC-200D-27A1-FE0F,15.1,2227
+🧑🏿‍🦼‍➡️,1F9D1-1F3FF-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,person in motorized wheelchair facing right,,,Benedikt Groß,2020-01-15,5,single,🧑‍🦼‍➡️,1F9D1-200D-1F9BC-200D-27A1-FE0F,15.1,2229
+👨‍🦼,1F468-200D-1F9BC,people-body,person-activity,man in motorized wheelchair,"accessibility, man, motorized, wheelchair",,Laura Dworatschek,2019-05-06,,single,👨‍🦼,1F468-200D-1F9BC,12,2231
+👨🏻‍🦼,1F468-1F3FB-200D-1F9BC,people-body,person-activity,man in motorized wheelchair: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,👨‍🦼,1F468-200D-1F9BC,12,2232
+👨🏼‍🦼,1F468-1F3FC-200D-1F9BC,people-body,person-activity,man in motorized wheelchair: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,👨‍🦼,1F468-200D-1F9BC,12,2233
+👨🏽‍🦼,1F468-1F3FD-200D-1F9BC,people-body,person-activity,man in motorized wheelchair: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,👨‍🦼,1F468-200D-1F9BC,12,2234
+👨🏾‍🦼,1F468-1F3FE-200D-1F9BC,people-body,person-activity,man in motorized wheelchair: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,👨‍🦼,1F468-200D-1F9BC,12,2235
+👨🏿‍🦼,1F468-1F3FF-200D-1F9BC,people-body,person-activity,man in motorized wheelchair: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,👨‍🦼,1F468-200D-1F9BC,12,2236
+👨‍🦼‍➡️,1F468-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,man in motorized wheelchair facing right,"accessibility, man, motorized, wheelchair",,Laura Dworatschek,2019-05-06,,single,👨‍🦼‍➡️,1F468-200D-1F9BC-200D-27A1-FE0F,15.1,2237
+👨🏻‍🦼‍➡️,1F468-1F3FB-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,man in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,1,single,👨‍🦼‍➡️,1F468-200D-1F9BC-200D-27A1-FE0F,15.1,2239
+👨🏼‍🦼‍➡️,1F468-1F3FC-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,man in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,2,single,👨‍🦼‍➡️,1F468-200D-1F9BC-200D-27A1-FE0F,15.1,2241
+👨🏽‍🦼‍➡️,1F468-1F3FD-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,man in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,3,single,👨‍🦼‍➡️,1F468-200D-1F9BC-200D-27A1-FE0F,15.1,2243
+👨🏾‍🦼‍➡️,1F468-1F3FE-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,man in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,4,single,👨‍🦼‍➡️,1F468-200D-1F9BC-200D-27A1-FE0F,15.1,2245
+👨🏿‍🦼‍➡️,1F468-1F3FF-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,man in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,5,single,👨‍🦼‍➡️,1F468-200D-1F9BC-200D-27A1-FE0F,15.1,2247
+👩‍🦼,1F469-200D-1F9BC,people-body,person-activity,woman in motorized wheelchair,"accessibility, motorized, wheelchair, woman",,Laura Dworatschek,2019-05-06,,single,👩‍🦼,1F469-200D-1F9BC,12,2249
+👩🏻‍🦼,1F469-1F3FB-200D-1F9BC,people-body,person-activity,woman in motorized wheelchair: light skin tone,,,Laura Dworatschek,2019-05-06,1,single,👩‍🦼,1F469-200D-1F9BC,12,2250
+👩🏼‍🦼,1F469-1F3FC-200D-1F9BC,people-body,person-activity,woman in motorized wheelchair: medium-light skin tone,,,Laura Dworatschek,2019-05-06,2,single,👩‍🦼,1F469-200D-1F9BC,12,2251
+👩🏽‍🦼,1F469-1F3FD-200D-1F9BC,people-body,person-activity,woman in motorized wheelchair: medium skin tone,,,Laura Dworatschek,2019-05-06,3,single,👩‍🦼,1F469-200D-1F9BC,12,2252
+👩🏾‍🦼,1F469-1F3FE-200D-1F9BC,people-body,person-activity,woman in motorized wheelchair: medium-dark skin tone,,,Laura Dworatschek,2019-05-06,4,single,👩‍🦼,1F469-200D-1F9BC,12,2253
+👩🏿‍🦼,1F469-1F3FF-200D-1F9BC,people-body,person-activity,woman in motorized wheelchair: dark skin tone,,,Laura Dworatschek,2019-05-06,5,single,👩‍🦼,1F469-200D-1F9BC,12,2254
+👩‍🦼‍➡️,1F469-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,woman in motorized wheelchair facing right,"accessibility, motorized, wheelchair, woman",,Laura Dworatschek,2019-05-06,,single,👩‍🦼‍➡️,1F469-200D-1F9BC-200D-27A1-FE0F,15.1,2255
+👩🏻‍🦼‍➡️,1F469-1F3FB-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,woman in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,1,single,👩‍🦼‍➡️,1F469-200D-1F9BC-200D-27A1-FE0F,15.1,2257
+👩🏼‍🦼‍➡️,1F469-1F3FC-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,woman in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,2,single,👩‍🦼‍➡️,1F469-200D-1F9BC-200D-27A1-FE0F,15.1,2259
+👩🏽‍🦼‍➡️,1F469-1F3FD-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,woman in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,3,single,👩‍🦼‍➡️,1F469-200D-1F9BC-200D-27A1-FE0F,15.1,2261
+👩🏾‍🦼‍➡️,1F469-1F3FE-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,woman in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,4,single,👩‍🦼‍➡️,1F469-200D-1F9BC-200D-27A1-FE0F,15.1,2263
+👩🏿‍🦼‍➡️,1F469-1F3FF-200D-1F9BC-200D-27A1-FE0F,people-body,person-activity,woman in motorized wheelchair facing right,,,Laura Dworatschek,2019-05-06,5,single,👩‍🦼‍➡️,1F469-200D-1F9BC-200D-27A1-FE0F,15.1,2265
+🧑‍🦽,1F9D1-200D-1F9BD,people-body,person-activity,person in manual wheelchair,"accessibility, manual, person, wheelchair",,Benedikt Groß,2020-01-15,,single,🧑‍🦽,1F9D1-200D-1F9BD,12.1,2267
+🧑🏻‍🦽,1F9D1-1F3FB-200D-1F9BD,people-body,person-activity,person in manual wheelchair: light skin tone,,,Benedikt Groß,2020-01-15,1,single,🧑‍🦽,1F9D1-200D-1F9BD,12.1,2268
+🧑🏼‍🦽,1F9D1-1F3FC-200D-1F9BD,people-body,person-activity,person in manual wheelchair: medium-light skin tone,,,Benedikt Groß,2020-01-15,2,single,🧑‍🦽,1F9D1-200D-1F9BD,12.1,2269
+🧑🏽‍🦽,1F9D1-1F3FD-200D-1F9BD,people-body,person-activity,person in manual wheelchair: medium skin tone,,,Benedikt Groß,2020-01-15,3,single,🧑‍🦽,1F9D1-200D-1F9BD,12.1,2270
+🧑🏾‍🦽,1F9D1-1F3FE-200D-1F9BD,people-body,person-activity,person in manual wheelchair: medium-dark skin tone,,,Benedikt Groß,2020-01-15,4,single,🧑‍🦽,1F9D1-200D-1F9BD,12.1,2271
+🧑🏿‍🦽,1F9D1-1F3FF-200D-1F9BD,people-body,person-activity,person in manual wheelchair: dark skin tone,,,Benedikt Groß,2020-01-15,5,single,🧑‍🦽,1F9D1-200D-1F9BD,12.1,2272
+🧑‍🦽‍➡️,1F9D1-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,person in manual wheelchair facing right,"accessibility, manual, person, wheelchair",,Benedikt Groß,2020-01-15,,single,🧑‍🦽‍➡️,1F9D1-200D-1F9BD-200D-27A1-FE0F,15.1,2273
+🧑🏻‍🦽‍➡️,1F9D1-1F3FB-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,person in manual wheelchair facing right,,,Benedikt Groß,2020-01-15,1,single,🧑‍🦽‍➡️,1F9D1-200D-1F9BD-200D-27A1-FE0F,15.1,2275
+🧑🏼‍🦽‍➡️,1F9D1-1F3FC-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,person in manual wheelchair facing right,,,Benedikt Groß,2020-01-15,2,single,🧑‍🦽‍➡️,1F9D1-200D-1F9BD-200D-27A1-FE0F,15.1,2277
+🧑🏽‍🦽‍➡️,1F9D1-1F3FD-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,person in manual wheelchair facing right,,,Benedikt Groß,2020-01-15,3,single,🧑‍🦽‍➡️,1F9D1-200D-1F9BD-200D-27A1-FE0F,15.1,2279
+🧑🏾‍🦽‍➡️,1F9D1-1F3FE-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,person in manual wheelchair facing right,,,Benedikt Groß,2020-01-15,4,single,🧑‍🦽‍➡️,1F9D1-200D-1F9BD-200D-27A1-FE0F,15.1,2281
+🧑🏿‍🦽‍➡️,1F9D1-1F3FF-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,person in manual wheelchair facing right,,,Benedikt Groß,2020-01-15,5,single,🧑‍🦽‍➡️,1F9D1-200D-1F9BD-200D-27A1-FE0F,15.1,2283
+👨‍🦽,1F468-200D-1F9BD,people-body,person-activity,man in manual wheelchair,"accessibility, man, manual, wheelchair",,Yasmin Abdullahi,2019-05-07,,single,👨‍🦽,1F468-200D-1F9BD,12,2285
+👨🏻‍🦽,1F468-1F3FB-200D-1F9BD,people-body,person-activity,man in manual wheelchair: light skin tone,,,Yasmin Abdullahi,2019-05-07,1,single,👨‍🦽,1F468-200D-1F9BD,12,2286
+👨🏼‍🦽,1F468-1F3FC-200D-1F9BD,people-body,person-activity,man in manual wheelchair: medium-light skin tone,,,Yasmin Abdullahi,2019-05-07,2,single,👨‍🦽,1F468-200D-1F9BD,12,2287
+👨🏽‍🦽,1F468-1F3FD-200D-1F9BD,people-body,person-activity,man in manual wheelchair: medium skin tone,,,Yasmin Abdullahi,2019-05-07,3,single,👨‍🦽,1F468-200D-1F9BD,12,2288
+👨🏾‍🦽,1F468-1F3FE-200D-1F9BD,people-body,person-activity,man in manual wheelchair: medium-dark skin tone,,,Yasmin Abdullahi,2019-05-07,4,single,👨‍🦽,1F468-200D-1F9BD,12,2289
+👨🏿‍🦽,1F468-1F3FF-200D-1F9BD,people-body,person-activity,man in manual wheelchair: dark skin tone,,,Yasmin Abdullahi,2019-05-07,5,single,👨‍🦽,1F468-200D-1F9BD,12,2290
+👨‍🦽‍➡️,1F468-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,man in manual wheelchair facing right,"accessibility, man, manual, wheelchair",,Yasmin Abdullahi,2019-05-07,,single,👨‍🦽‍➡️,1F468-200D-1F9BD-200D-27A1-FE0F,15.1,2291
+👨🏻‍🦽‍➡️,1F468-1F3FB-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,man in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,1,single,👨‍🦽‍➡️,1F468-200D-1F9BD-200D-27A1-FE0F,15.1,2293
+👨🏼‍🦽‍➡️,1F468-1F3FC-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,man in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,2,single,👨‍🦽‍➡️,1F468-200D-1F9BD-200D-27A1-FE0F,15.1,2295
+👨🏽‍🦽‍➡️,1F468-1F3FD-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,man in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,3,single,👨‍🦽‍➡️,1F468-200D-1F9BD-200D-27A1-FE0F,15.1,2297
+👨🏾‍🦽‍➡️,1F468-1F3FE-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,man in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,4,single,👨‍🦽‍➡️,1F468-200D-1F9BD-200D-27A1-FE0F,15.1,2299
+👨🏿‍🦽‍➡️,1F468-1F3FF-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,man in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,5,single,👨‍🦽‍➡️,1F468-200D-1F9BD-200D-27A1-FE0F,15.1,2301
+👩‍🦽,1F469-200D-1F9BD,people-body,person-activity,woman in manual wheelchair,"accessibility, manual, wheelchair, woman",,Yasmin Abdullahi,2019-05-07,,single,👩‍🦽,1F469-200D-1F9BD,12,2303
+👩🏻‍🦽,1F469-1F3FB-200D-1F9BD,people-body,person-activity,woman in manual wheelchair: light skin tone,,,Yasmin Abdullahi,2019-05-07,1,single,👩‍🦽,1F469-200D-1F9BD,12,2304
+👩🏼‍🦽,1F469-1F3FC-200D-1F9BD,people-body,person-activity,woman in manual wheelchair: medium-light skin tone,,,Yasmin Abdullahi,2019-05-07,2,single,👩‍🦽,1F469-200D-1F9BD,12,2305
+👩🏽‍🦽,1F469-1F3FD-200D-1F9BD,people-body,person-activity,woman in manual wheelchair: medium skin tone,,,Yasmin Abdullahi,2019-05-07,3,single,👩‍🦽,1F469-200D-1F9BD,12,2306
+👩🏾‍🦽,1F469-1F3FE-200D-1F9BD,people-body,person-activity,woman in manual wheelchair: medium-dark skin tone,,,Yasmin Abdullahi,2019-05-07,4,single,👩‍🦽,1F469-200D-1F9BD,12,2307
+👩🏿‍🦽,1F469-1F3FF-200D-1F9BD,people-body,person-activity,woman in manual wheelchair: dark skin tone,,,Yasmin Abdullahi,2019-05-07,5,single,👩‍🦽,1F469-200D-1F9BD,12,2308
+👩‍🦽‍➡️,1F469-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,woman in manual wheelchair facing right,"accessibility, manual, wheelchair, woman",,Yasmin Abdullahi,2019-05-07,,single,👩‍🦽‍➡️,1F469-200D-1F9BD-200D-27A1-FE0F,15.1,2309
+👩🏻‍🦽‍➡️,1F469-1F3FB-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,woman in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,1,single,👩‍🦽‍➡️,1F469-200D-1F9BD-200D-27A1-FE0F,15.1,2311
+👩🏼‍🦽‍➡️,1F469-1F3FC-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,woman in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,2,single,👩‍🦽‍➡️,1F469-200D-1F9BD-200D-27A1-FE0F,15.1,2313
+👩🏽‍🦽‍➡️,1F469-1F3FD-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,woman in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,3,single,👩‍🦽‍➡️,1F469-200D-1F9BD-200D-27A1-FE0F,15.1,2315
+👩🏾‍🦽‍➡️,1F469-1F3FE-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,woman in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,4,single,👩‍🦽‍➡️,1F469-200D-1F9BD-200D-27A1-FE0F,15.1,2317
+👩🏿‍🦽‍➡️,1F469-1F3FF-200D-1F9BD-200D-27A1-FE0F,people-body,person-activity,woman in manual wheelchair facing right,,,Yasmin Abdullahi,2019-05-07,5,single,👩‍🦽‍➡️,1F469-200D-1F9BD-200D-27A1-FE0F,15.1,2319
+🏃,1F3C3,people-body,person-activity,person running,"fast, hurry, marathon, move, person, quick, race, racing, run, rush, speed",,Johanna Wellnitz,2018-04-18,,single,🏃,1F3C3,0.6,2321
+🏃🏻,1F3C3-1F3FB,people-body,person-activity,person running: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏃,1F3C3,1,2322
+🏃🏼,1F3C3-1F3FC,people-body,person-activity,person running: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏃,1F3C3,1,2323
+🏃🏽,1F3C3-1F3FD,people-body,person-activity,person running: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏃,1F3C3,1,2324
+🏃🏾,1F3C3-1F3FE,people-body,person-activity,person running: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏃,1F3C3,1,2325
+🏃🏿,1F3C3-1F3FF,people-body,person-activity,person running: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏃,1F3C3,1,2326
+🏃‍♂️,1F3C3-200D-2642-FE0F,people-body,person-activity,man running,"fast, hurry, man, marathon, move, quick, race, racing, run, rush, speed",,Rifat Erdogan,2019-05-06,,single,🏃‍♂️,1F3C3-200D-2642-FE0F,4,2327
+🏃🏻‍♂️,1F3C3-1F3FB-200D-2642-FE0F,people-body,person-activity,man running: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🏃‍♂️,1F3C3-200D-2642-FE0F,4,2329
+🏃🏼‍♂️,1F3C3-1F3FC-200D-2642-FE0F,people-body,person-activity,man running: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🏃‍♂️,1F3C3-200D-2642-FE0F,4,2331
+🏃🏽‍♂️,1F3C3-1F3FD-200D-2642-FE0F,people-body,person-activity,man running: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🏃‍♂️,1F3C3-200D-2642-FE0F,4,2333
+🏃🏾‍♂️,1F3C3-1F3FE-200D-2642-FE0F,people-body,person-activity,man running: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🏃‍♂️,1F3C3-200D-2642-FE0F,4,2335
+🏃🏿‍♂️,1F3C3-1F3FF-200D-2642-FE0F,people-body,person-activity,man running: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🏃‍♂️,1F3C3-200D-2642-FE0F,4,2337
+🏃‍♀️,1F3C3-200D-2640-FE0F,people-body,person-activity,woman running,"fast, hurry, marathon, move, quick, race, racing, run, rush, speed, woman",,Rifat Erdogan,2019-05-06,,single,🏃‍♀️,1F3C3-200D-2640-FE0F,4,2339
+🏃🏻‍♀️,1F3C3-1F3FB-200D-2640-FE0F,people-body,person-activity,woman running: light skin tone,,,Rifat Erdogan,2019-05-06,1,single,🏃‍♀️,1F3C3-200D-2640-FE0F,4,2341
+🏃🏼‍♀️,1F3C3-1F3FC-200D-2640-FE0F,people-body,person-activity,woman running: medium-light skin tone,,,Rifat Erdogan,2019-05-06,2,single,🏃‍♀️,1F3C3-200D-2640-FE0F,4,2343
+🏃🏽‍♀️,1F3C3-1F3FD-200D-2640-FE0F,people-body,person-activity,woman running: medium skin tone,,,Rifat Erdogan,2019-05-06,3,single,🏃‍♀️,1F3C3-200D-2640-FE0F,4,2345
+🏃🏾‍♀️,1F3C3-1F3FE-200D-2640-FE0F,people-body,person-activity,woman running: medium-dark skin tone,,,Rifat Erdogan,2019-05-06,4,single,🏃‍♀️,1F3C3-200D-2640-FE0F,4,2347
+🏃🏿‍♀️,1F3C3-1F3FF-200D-2640-FE0F,people-body,person-activity,woman running: dark skin tone,,,Rifat Erdogan,2019-05-06,5,single,🏃‍♀️,1F3C3-200D-2640-FE0F,4,2349
+🏃‍➡️,1F3C3-200D-27A1-FE0F,people-body,person-activity,person running facing right,"fast, hurry, marathon, move, person, quick, race, racing, run, rush, speed",,Johanna Wellnitz,2018-04-18,,single,🏃‍➡️,1F3C3-200D-27A1-FE0F,15.1,2351
+🏃🏻‍➡️,1F3C3-1F3FB-200D-27A1-FE0F,people-body,person-activity,person running facing right,,,Johanna Wellnitz,2018-04-18,1,single,🏃‍➡️,1F3C3-200D-27A1-FE0F,15.1,2353
+🏃🏼‍➡️,1F3C3-1F3FC-200D-27A1-FE0F,people-body,person-activity,person running facing right,,,Johanna Wellnitz,2018-04-18,2,single,🏃‍➡️,1F3C3-200D-27A1-FE0F,15.1,2355
+🏃🏽‍➡️,1F3C3-1F3FD-200D-27A1-FE0F,people-body,person-activity,person running facing right,,,Johanna Wellnitz,2018-04-18,3,single,🏃‍➡️,1F3C3-200D-27A1-FE0F,15.1,2357
+🏃🏾‍➡️,1F3C3-1F3FE-200D-27A1-FE0F,people-body,person-activity,person running facing right,,,Johanna Wellnitz,2018-04-18,4,single,🏃‍➡️,1F3C3-200D-27A1-FE0F,15.1,2359
+🏃🏿‍➡️,1F3C3-1F3FF-200D-27A1-FE0F,people-body,person-activity,person running facing right,,,Johanna Wellnitz,2018-04-18,5,single,🏃‍➡️,1F3C3-200D-27A1-FE0F,15.1,2361
+🏃‍♀️‍➡️,1F3C3-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman running facing right,"fast, hurry, marathon, move, quick, race, racing, run, rush, speed, woman",,Rifat Erdogan,2019-05-06,,single,🏃‍♀️‍➡️,1F3C3-200D-2640-FE0F-200D-27A1-FE0F,15.1,2363
+🏃🏻‍♀️‍➡️,1F3C3-1F3FB-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman running facing right,,,Rifat Erdogan,2019-05-06,1,single,🏃‍♀️‍➡️,1F3C3-200D-2640-FE0F-200D-27A1-FE0F,15.1,2367
+🏃🏼‍♀️‍➡️,1F3C3-1F3FC-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman running facing right,,,Rifat Erdogan,2019-05-06,2,single,🏃‍♀️‍➡️,1F3C3-200D-2640-FE0F-200D-27A1-FE0F,15.1,2371
+🏃🏽‍♀️‍➡️,1F3C3-1F3FD-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman running facing right,,,Rifat Erdogan,2019-05-06,3,single,🏃‍♀️‍➡️,1F3C3-200D-2640-FE0F-200D-27A1-FE0F,15.1,2375
+🏃🏾‍♀️‍➡️,1F3C3-1F3FE-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman running facing right,,,Rifat Erdogan,2019-05-06,4,single,🏃‍♀️‍➡️,1F3C3-200D-2640-FE0F-200D-27A1-FE0F,15.1,2379
+🏃🏿‍♀️‍➡️,1F3C3-1F3FF-200D-2640-FE0F-200D-27A1-FE0F,people-body,person-activity,woman running facing right,,,Rifat Erdogan,2019-05-06,5,single,🏃‍♀️‍➡️,1F3C3-200D-2640-FE0F-200D-27A1-FE0F,15.1,2383
+🏃‍♂️‍➡️,1F3C3-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man running facing right,"fast, hurry, man, marathon, move, quick, race, racing, run, rush, speed",,Rifat Erdogan,2019-05-06,,single,🏃‍♂️‍➡️,1F3C3-200D-2642-FE0F-200D-27A1-FE0F,15.1,2387
+🏃🏻‍♂️‍➡️,1F3C3-1F3FB-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man running facing right,,,Rifat Erdogan,2019-05-06,1,single,🏃‍♂️‍➡️,1F3C3-200D-2642-FE0F-200D-27A1-FE0F,15.1,2391
+🏃🏼‍♂️‍➡️,1F3C3-1F3FC-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man running facing right,,,Rifat Erdogan,2019-05-06,2,single,🏃‍♂️‍➡️,1F3C3-200D-2642-FE0F-200D-27A1-FE0F,15.1,2395
+🏃🏽‍♂️‍➡️,1F3C3-1F3FD-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man running facing right,,,Rifat Erdogan,2019-05-06,3,single,🏃‍♂️‍➡️,1F3C3-200D-2642-FE0F-200D-27A1-FE0F,15.1,2399
+🏃🏾‍♂️‍➡️,1F3C3-1F3FE-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man running facing right,,,Rifat Erdogan,2019-05-06,4,single,🏃‍♂️‍➡️,1F3C3-200D-2642-FE0F-200D-27A1-FE0F,15.1,2403
+🏃🏿‍♂️‍➡️,1F3C3-1F3FF-200D-2642-FE0F-200D-27A1-FE0F,people-body,person-activity,man running facing right,,,Rifat Erdogan,2019-05-06,5,single,🏃‍♂️‍➡️,1F3C3-200D-2642-FE0F-200D-27A1-FE0F,15.1,2407
+💃,1F483,people-body,person-activity,woman dancing,"dance, dancer, dancing, elegant, festive, flair, flamenco, groove, let’s, salsa, tango, woman",,Johanna Wellnitz,2018-04-18,,single,💃,1F483,0.6,2411
+💃🏻,1F483-1F3FB,people-body,person-activity,woman dancing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,💃,1F483,1,2412
+💃🏼,1F483-1F3FC,people-body,person-activity,woman dancing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,💃,1F483,1,2413
+💃🏽,1F483-1F3FD,people-body,person-activity,woman dancing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,💃,1F483,1,2414
+💃🏾,1F483-1F3FE,people-body,person-activity,woman dancing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,💃,1F483,1,2415
+💃🏿,1F483-1F3FF,people-body,person-activity,woman dancing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,💃,1F483,1,2416
+🕺,1F57A,people-body,person-activity,man dancing,"dance, dancer, dancing, elegant, festive, flair, flamenco, groove, let’s, man, salsa, tango",,Johanna Wellnitz,2018-04-18,,single,🕺,1F57A,3,2417
+🕺🏻,1F57A-1F3FB,people-body,person-activity,man dancing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🕺,1F57A,3,2418
+🕺🏼,1F57A-1F3FC,people-body,person-activity,man dancing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🕺,1F57A,3,2419
+🕺🏽,1F57A-1F3FD,people-body,person-activity,man dancing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🕺,1F57A,3,2420
+🕺🏾,1F57A-1F3FE,people-body,person-activity,man dancing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🕺,1F57A,3,2421
+🕺🏿,1F57A-1F3FF,people-body,person-activity,man dancing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🕺,1F57A,3,2422
+🕴️,1F574,people-body,person-activity,person in suit levitating,"business, levitating, person, suit",,Florian Nagel,2019-05-07,,single,🕴️,1F574,0.7,2424
+🕴🏻,1F574-1F3FB,people-body,person-activity,person in suit levitating: light skin tone,,,Florian Nagel,2019-05-07,1,single,🕴️,1F574,4,2425
+🕴🏼,1F574-1F3FC,people-body,person-activity,person in suit levitating: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🕴️,1F574,4,2426
+🕴🏽,1F574-1F3FD,people-body,person-activity,person in suit levitating: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🕴️,1F574,4,2427
+🕴🏾,1F574-1F3FE,people-body,person-activity,person in suit levitating: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🕴️,1F574,4,2428
+🕴🏿,1F574-1F3FF,people-body,person-activity,person in suit levitating: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🕴️,1F574,4,2429
+👯,1F46F,people-body,person-activity,people with bunny ears,"bestie, bff, bunny, counterpart, dancer, double, ear, identical, pair, party, partying, people, soulmate, twin, twinsies",,Johanna Wellnitz,2018-04-18,,,,,0.6,2430
+👯‍♂️,1F46F-200D-2642-FE0F,people-body,person-activity,men with bunny ears,"bestie, bff, bunny, counterpart, dancer, double, ear, identical, men, pair, party, partying, people, soulmate, twin, twinsies",,Rifat Erdogan,2019-05-06,,,,,4,2431
+👯‍♀️,1F46F-200D-2640-FE0F,people-body,person-activity,women with bunny ears,"bestie, bff, bunny, counterpart, dancer, double, ear, identical, pair, party, partying, people, soulmate, twin, twinsies, women",,Rifat Erdogan,2019-05-06,,,,,4,2433
+🧖,1F9D6,people-body,person-activity,person in steamy room,"day, luxurious, pamper, person, relax, room, sauna, spa, steam, steambath, unwind",,Florian Nagel,2019-05-13,,single,🧖,1F9D6,5,2435
+🧖🏻,1F9D6-1F3FB,people-body,person-activity,person in steamy room: light skin tone,,,Florian Nagel,2019-05-13,1,single,🧖,1F9D6,5,2436
+🧖🏼,1F9D6-1F3FC,people-body,person-activity,person in steamy room: medium-light skin tone,,,Florian Nagel,2019-05-13,2,single,🧖,1F9D6,5,2437
+🧖🏽,1F9D6-1F3FD,people-body,person-activity,person in steamy room: medium skin tone,,,Florian Nagel,2019-05-13,3,single,🧖,1F9D6,5,2438
+🧖🏾,1F9D6-1F3FE,people-body,person-activity,person in steamy room: medium-dark skin tone,,,Florian Nagel,2019-05-13,4,single,🧖,1F9D6,5,2439
+🧖🏿,1F9D6-1F3FF,people-body,person-activity,person in steamy room: dark skin tone,,,Florian Nagel,2019-05-13,5,single,🧖,1F9D6,5,2440
+🧖‍♂️,1F9D6-200D-2642-FE0F,people-body,person-activity,man in steamy room,"day, luxurious, man, pamper, relax, room, sauna, spa, steam, steambath, unwind",,Florian Nagel,2019-05-13,,single,🧖‍♂️,1F9D6-200D-2642-FE0F,5,2441
+🧖🏻‍♂️,1F9D6-1F3FB-200D-2642-FE0F,people-body,person-activity,man in steamy room: light skin tone,,,Florian Nagel,2019-05-13,1,single,🧖‍♂️,1F9D6-200D-2642-FE0F,5,2443
+🧖🏼‍♂️,1F9D6-1F3FC-200D-2642-FE0F,people-body,person-activity,man in steamy room: medium-light skin tone,,,Florian Nagel,2019-05-13,2,single,🧖‍♂️,1F9D6-200D-2642-FE0F,5,2445
+🧖🏽‍♂️,1F9D6-1F3FD-200D-2642-FE0F,people-body,person-activity,man in steamy room: medium skin tone,,,Florian Nagel,2019-05-13,3,single,🧖‍♂️,1F9D6-200D-2642-FE0F,5,2447
+🧖🏾‍♂️,1F9D6-1F3FE-200D-2642-FE0F,people-body,person-activity,man in steamy room: medium-dark skin tone,,,Florian Nagel,2019-05-13,4,single,🧖‍♂️,1F9D6-200D-2642-FE0F,5,2449
+🧖🏿‍♂️,1F9D6-1F3FF-200D-2642-FE0F,people-body,person-activity,man in steamy room: dark skin tone,,,Florian Nagel,2019-05-13,5,single,🧖‍♂️,1F9D6-200D-2642-FE0F,5,2451
+🧖‍♀️,1F9D6-200D-2640-FE0F,people-body,person-activity,woman in steamy room,"day, luxurious, pamper, relax, room, sauna, spa, steam, steambath, unwind, woman",,Florian Nagel,2019-05-13,,single,🧖‍♀️,1F9D6-200D-2640-FE0F,5,2453
+🧖🏻‍♀️,1F9D6-1F3FB-200D-2640-FE0F,people-body,person-activity,woman in steamy room: light skin tone,,,Florian Nagel,2019-05-13,1,single,🧖‍♀️,1F9D6-200D-2640-FE0F,5,2455
+🧖🏼‍♀️,1F9D6-1F3FC-200D-2640-FE0F,people-body,person-activity,woman in steamy room: medium-light skin tone,,,Florian Nagel,2019-05-13,2,single,🧖‍♀️,1F9D6-200D-2640-FE0F,5,2457
+🧖🏽‍♀️,1F9D6-1F3FD-200D-2640-FE0F,people-body,person-activity,woman in steamy room: medium skin tone,,,Florian Nagel,2019-05-13,3,single,🧖‍♀️,1F9D6-200D-2640-FE0F,5,2459
+🧖🏾‍♀️,1F9D6-1F3FE-200D-2640-FE0F,people-body,person-activity,woman in steamy room: medium-dark skin tone,,,Florian Nagel,2019-05-13,4,single,🧖‍♀️,1F9D6-200D-2640-FE0F,5,2461
+🧖🏿‍♀️,1F9D6-1F3FF-200D-2640-FE0F,people-body,person-activity,woman in steamy room: dark skin tone,,,Florian Nagel,2019-05-13,5,single,🧖‍♀️,1F9D6-200D-2640-FE0F,5,2463
+🧗,1F9D7,people-body,person-activity,person climbing,"climb, climber, climbing, mountain, person, rock, scale, up",,Johanna Wellnitz,2018-04-18,,single,🧗,1F9D7,5,2465
+🧗🏻,1F9D7-1F3FB,people-body,person-activity,person climbing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🧗,1F9D7,5,2466
+🧗🏼,1F9D7-1F3FC,people-body,person-activity,person climbing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🧗,1F9D7,5,2467
+🧗🏽,1F9D7-1F3FD,people-body,person-activity,person climbing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🧗,1F9D7,5,2468
+🧗🏾,1F9D7-1F3FE,people-body,person-activity,person climbing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🧗,1F9D7,5,2469
+🧗🏿,1F9D7-1F3FF,people-body,person-activity,person climbing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🧗,1F9D7,5,2470
+🧗‍♂️,1F9D7-200D-2642-FE0F,people-body,person-activity,man climbing,"climb, climber, climbing, man, mountain, rock, scale, up",,Florian Nagel,2019-05-07,,single,🧗‍♂️,1F9D7-200D-2642-FE0F,5,2471
+🧗🏻‍♂️,1F9D7-1F3FB-200D-2642-FE0F,people-body,person-activity,man climbing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🧗‍♂️,1F9D7-200D-2642-FE0F,5,2473
+🧗🏼‍♂️,1F9D7-1F3FC-200D-2642-FE0F,people-body,person-activity,man climbing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🧗‍♂️,1F9D7-200D-2642-FE0F,5,2475
+🧗🏽‍♂️,1F9D7-1F3FD-200D-2642-FE0F,people-body,person-activity,man climbing: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🧗‍♂️,1F9D7-200D-2642-FE0F,5,2477
+🧗🏾‍♂️,1F9D7-1F3FE-200D-2642-FE0F,people-body,person-activity,man climbing: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🧗‍♂️,1F9D7-200D-2642-FE0F,5,2479
+🧗🏿‍♂️,1F9D7-1F3FF-200D-2642-FE0F,people-body,person-activity,man climbing: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🧗‍♂️,1F9D7-200D-2642-FE0F,5,2481
+🧗‍♀️,1F9D7-200D-2640-FE0F,people-body,person-activity,woman climbing,"climb, climber, climbing, mountain, rock, scale, up, woman",,Florian Nagel,2019-05-07,,single,🧗‍♀️,1F9D7-200D-2640-FE0F,5,2483
+🧗🏻‍♀️,1F9D7-1F3FB-200D-2640-FE0F,people-body,person-activity,woman climbing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🧗‍♀️,1F9D7-200D-2640-FE0F,5,2485
+🧗🏼‍♀️,1F9D7-1F3FC-200D-2640-FE0F,people-body,person-activity,woman climbing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🧗‍♀️,1F9D7-200D-2640-FE0F,5,2487
+🧗🏽‍♀️,1F9D7-1F3FD-200D-2640-FE0F,people-body,person-activity,woman climbing: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🧗‍♀️,1F9D7-200D-2640-FE0F,5,2489
+🧗🏾‍♀️,1F9D7-1F3FE-200D-2640-FE0F,people-body,person-activity,woman climbing: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🧗‍♀️,1F9D7-200D-2640-FE0F,5,2491
+🧗🏿‍♀️,1F9D7-1F3FF-200D-2640-FE0F,people-body,person-activity,woman climbing: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🧗‍♀️,1F9D7-200D-2640-FE0F,5,2493
+🤺,1F93A,people-body,person-sport,person fencing,"fencer, fencing, person, sword",,Johanna Wellnitz,2018-04-18,,,,,3,2495
+🏇,1F3C7,people-body,person-sport,horse racing,"horse, jockey, racehorse, racing, riding, sport",,Johanna Wellnitz,2018-04-18,,single,🏇,1F3C7,1,2496
+🏇🏻,1F3C7-1F3FB,people-body,person-sport,horse racing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏇,1F3C7,1,2497
+🏇🏼,1F3C7-1F3FC,people-body,person-sport,horse racing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏇,1F3C7,1,2498
+🏇🏽,1F3C7-1F3FD,people-body,person-sport,horse racing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏇,1F3C7,1,2499
+🏇🏾,1F3C7-1F3FE,people-body,person-sport,horse racing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏇,1F3C7,1,2500
+🏇🏿,1F3C7-1F3FF,people-body,person-sport,horse racing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏇,1F3C7,1,2501
+⛷️,26F7,people-body,person-sport,skier,"ski, snow",,Johanna Wellnitz,2018-04-18,,,,,0.7,2503
+🏂️,1F3C2,people-body,person-sport,snowboarder,"ski, snow, snowboard, sport",,Johanna Wellnitz,2018-04-18,,single,🏂️,1F3C2,0.6,2504
+🏂🏻,1F3C2-1F3FB,people-body,person-sport,snowboarder: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏂️,1F3C2,1,2505
+🏂🏼,1F3C2-1F3FC,people-body,person-sport,snowboarder: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏂️,1F3C2,1,2506
+🏂🏽,1F3C2-1F3FD,people-body,person-sport,snowboarder: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏂️,1F3C2,1,2507
+🏂🏾,1F3C2-1F3FE,people-body,person-sport,snowboarder: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏂️,1F3C2,1,2508
+🏂🏿,1F3C2-1F3FF,people-body,person-sport,snowboarder: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏂️,1F3C2,1,2509
+🏌️,1F3CC,people-body,person-sport,person golfing,"ball, birdie, caddy, driving, golf, golfing, green, person, pga, putt, range, tee",,Johanna Wellnitz,2018-04-18,,single,🏌️,1F3CC,0.7,2511
+🏌🏻,1F3CC-1F3FB,people-body,person-sport,person golfing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏌️,1F3CC,4,2512
+🏌🏼,1F3CC-1F3FC,people-body,person-sport,person golfing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏌️,1F3CC,4,2513
+🏌🏽,1F3CC-1F3FD,people-body,person-sport,person golfing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏌️,1F3CC,4,2514
+🏌🏾,1F3CC-1F3FE,people-body,person-sport,person golfing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏌️,1F3CC,4,2515
+🏌🏿,1F3CC-1F3FF,people-body,person-sport,person golfing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏌️,1F3CC,4,2516
+🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,people-body,person-sport,man golfing,"ball, birdie, caddy, driving, golf, golfing, green, man, pga, putt, range, tee",,Florian Nagel,2019-05-07,,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2517
+🏌🏻‍♂️,1F3CC-1F3FB-200D-2642-FE0F,people-body,person-sport,man golfing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2521
+🏌🏼‍♂️,1F3CC-1F3FC-200D-2642-FE0F,people-body,person-sport,man golfing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2523
+🏌🏽‍♂️,1F3CC-1F3FD-200D-2642-FE0F,people-body,person-sport,man golfing: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2525
+🏌🏾‍♂️,1F3CC-1F3FE-200D-2642-FE0F,people-body,person-sport,man golfing: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2527
+🏌🏿‍♂️,1F3CC-1F3FF-200D-2642-FE0F,people-body,person-sport,man golfing: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏌️‍♂️,1F3CC-FE0F-200D-2642-FE0F,4,2529
+🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,people-body,person-sport,woman golfing,"ball, birdie, caddy, driving, golf, golfing, green, pga, putt, range, tee, woman",,Florian Nagel,2019-05-07,,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2531
+🏌🏻‍♀️,1F3CC-1F3FB-200D-2640-FE0F,people-body,person-sport,woman golfing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2535
+🏌🏼‍♀️,1F3CC-1F3FC-200D-2640-FE0F,people-body,person-sport,woman golfing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2537
+🏌🏽‍♀️,1F3CC-1F3FD-200D-2640-FE0F,people-body,person-sport,woman golfing: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2539
+🏌🏾‍♀️,1F3CC-1F3FE-200D-2640-FE0F,people-body,person-sport,woman golfing: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2541
+🏌🏿‍♀️,1F3CC-1F3FF-200D-2640-FE0F,people-body,person-sport,woman golfing: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏌️‍♀️,1F3CC-FE0F-200D-2640-FE0F,4,2543
+🏄️,1F3C4,people-body,person-sport,person surfing,"beach, ocean, person, sport, surf, surfer, surfing, swell, waves",,Johanna Wellnitz,2018-04-18,,single,🏄️,1F3C4,0.6,2545
+🏄🏻,1F3C4-1F3FB,people-body,person-sport,person surfing: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏄️,1F3C4,1,2546
+🏄🏼,1F3C4-1F3FC,people-body,person-sport,person surfing: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏄️,1F3C4,1,2547
+🏄🏽,1F3C4-1F3FD,people-body,person-sport,person surfing: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏄️,1F3C4,1,2548
+🏄🏾,1F3C4-1F3FE,people-body,person-sport,person surfing: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏄️,1F3C4,1,2549
+🏄🏿,1F3C4-1F3FF,people-body,person-sport,person surfing: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏄️,1F3C4,1,2550
+🏄‍♂️,1F3C4-200D-2642-FE0F,people-body,person-sport,man surfing,"beach, man, ocean, sport, surf, surfer, surfing, swell, waves",,Florian Nagel,2019-05-07,,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2551
+🏄🏻‍♂️,1F3C4-1F3FB-200D-2642-FE0F,people-body,person-sport,man surfing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2553
+🏄🏼‍♂️,1F3C4-1F3FC-200D-2642-FE0F,people-body,person-sport,man surfing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2555
+🏄🏽‍♂️,1F3C4-1F3FD-200D-2642-FE0F,people-body,person-sport,man surfing: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2557
+🏄🏾‍♂️,1F3C4-1F3FE-200D-2642-FE0F,people-body,person-sport,man surfing: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2559
+🏄🏿‍♂️,1F3C4-1F3FF-200D-2642-FE0F,people-body,person-sport,man surfing: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏄‍♂️,1F3C4-200D-2642-FE0F,4,2561
+🏄‍♀️,1F3C4-200D-2640-FE0F,people-body,person-sport,woman surfing,"beach, ocean, person, sport, surf, surfer, surfing, swell, waves",,Florian Nagel,2019-05-07,,single,🏄‍♀️,1F3C4-200D-2640-FE0F,4,2563
+🏄🏻‍♀️,1F3C4-1F3FB-200D-2640-FE0F,people-body,person-sport,woman surfing: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏄‍♀️,1F3C4-200D-2640-FE0F,4,2565
+🏄🏼‍♀️,1F3C4-1F3FC-200D-2640-FE0F,people-body,person-sport,woman surfing: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏄‍♀️,1F3C4-200D-2640-FE0F,4,2567
+🏄🏽‍♀️,1F3C4-1F3FD-200D-2640-FE0F,people-body,person-sport,woman surfing: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏄‍♀️,1F3C4-200D-2640-FE0F,4,2569
+🏄🏾‍♀️,1F3C4-1F3FE-200D-2640-FE0F,people-body,person-sport,woman surfing: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏄‍♀️,1F3C4-200D-2640-FE0F,4,2571
+🏄🏿‍♀️,1F3C4-1F3FF-200D-2640-FE0F,people-body,person-sport,woman surfing: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏄‍♀️,1F3C4-200D-2640-FE0F,4,2573
+🚣,1F6A3,people-body,person-sport,person rowing boat,"boat, canoe, cruise, fishing, lake, oar, paddle, person, raft, river, row, rowboat, rowing",,Johanna Wellnitz,2018-04-18,,single,🚣,1F6A3,1,2575
+🚣🏻,1F6A3-1F3FB,people-body,person-sport,person rowing boat: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🚣,1F6A3,1,2576
+🚣🏼,1F6A3-1F3FC,people-body,person-sport,person rowing boat: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🚣,1F6A3,1,2577
+🚣🏽,1F6A3-1F3FD,people-body,person-sport,person rowing boat: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🚣,1F6A3,1,2578
+🚣🏾,1F6A3-1F3FE,people-body,person-sport,person rowing boat: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🚣,1F6A3,1,2579
+🚣🏿,1F6A3-1F3FF,people-body,person-sport,person rowing boat: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🚣,1F6A3,1,2580
+🚣‍♂️,1F6A3-200D-2642-FE0F,people-body,person-sport,man rowing boat,"boat, canoe, cruise, fishing, lake, man, oar, paddle, raft, river, row, rowboat, rowing",,Florian Nagel,2019-05-07,,single,🚣‍♂️,1F6A3-200D-2642-FE0F,4,2581
+🚣🏻‍♂️,1F6A3-1F3FB-200D-2642-FE0F,people-body,person-sport,man rowing boat: light skin tone,,,Florian Nagel,2019-05-07,1,single,🚣‍♂️,1F6A3-200D-2642-FE0F,4,2583
+🚣🏼‍♂️,1F6A3-1F3FC-200D-2642-FE0F,people-body,person-sport,man rowing boat: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🚣‍♂️,1F6A3-200D-2642-FE0F,4,2585
+🚣🏽‍♂️,1F6A3-1F3FD-200D-2642-FE0F,people-body,person-sport,man rowing boat: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🚣‍♂️,1F6A3-200D-2642-FE0F,4,2587
+🚣🏾‍♂️,1F6A3-1F3FE-200D-2642-FE0F,people-body,person-sport,man rowing boat: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🚣‍♂️,1F6A3-200D-2642-FE0F,4,2589
+🚣🏿‍♂️,1F6A3-1F3FF-200D-2642-FE0F,people-body,person-sport,man rowing boat: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🚣‍♂️,1F6A3-200D-2642-FE0F,4,2591
+🚣‍♀️,1F6A3-200D-2640-FE0F,people-body,person-sport,woman rowing boat,"boat, canoe, cruise, fishing, lake, oar, paddle, raft, river, row, rowboat, rowing, woman",,Florian Nagel,2019-05-07,,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2593
+🚣🏻‍♀️,1F6A3-1F3FB-200D-2640-FE0F,people-body,person-sport,woman rowing boat: light skin tone,,,Florian Nagel,2019-05-07,1,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2595
+🚣🏼‍♀️,1F6A3-1F3FC-200D-2640-FE0F,people-body,person-sport,woman rowing boat: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2597
+🚣🏽‍♀️,1F6A3-1F3FD-200D-2640-FE0F,people-body,person-sport,woman rowing boat: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2599
+🚣🏾‍♀️,1F6A3-1F3FE-200D-2640-FE0F,people-body,person-sport,woman rowing boat: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2601
+🚣🏿‍♀️,1F6A3-1F3FF-200D-2640-FE0F,people-body,person-sport,woman rowing boat: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🚣‍♀️,1F6A3-200D-2640-FE0F,4,2603
+🏊️,1F3CA,people-body,person-sport,person swimming,"freestyle, person, sport, swim, swimmer, swimming, triathlon",,Johanna Wellnitz,2018-04-18,,single,🏊️,1F3CA,0.6,2605
+🏊🏻,1F3CA-1F3FB,people-body,person-sport,person swimming: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏊️,1F3CA,1,2606
+🏊🏼,1F3CA-1F3FC,people-body,person-sport,person swimming: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏊️,1F3CA,1,2607
+🏊🏽,1F3CA-1F3FD,people-body,person-sport,person swimming: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏊️,1F3CA,1,2608
+🏊🏾,1F3CA-1F3FE,people-body,person-sport,person swimming: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏊️,1F3CA,1,2609
+🏊🏿,1F3CA-1F3FF,people-body,person-sport,person swimming: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏊️,1F3CA,1,2610
+🏊‍♂️,1F3CA-200D-2642-FE0F,people-body,person-sport,man swimming,"freestyle, man, sport, swim, swimmer, swimming, triathlon",,Florian Nagel,2019-05-07,,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2611
+🏊🏻‍♂️,1F3CA-1F3FB-200D-2642-FE0F,people-body,person-sport,man swimming: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2613
+🏊🏼‍♂️,1F3CA-1F3FC-200D-2642-FE0F,people-body,person-sport,man swimming: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2615
+🏊🏽‍♂️,1F3CA-1F3FD-200D-2642-FE0F,people-body,person-sport,man swimming: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2617
+🏊🏾‍♂️,1F3CA-1F3FE-200D-2642-FE0F,people-body,person-sport,man swimming: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2619
+🏊🏿‍♂️,1F3CA-1F3FF-200D-2642-FE0F,people-body,person-sport,man swimming: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏊‍♂️,1F3CA-200D-2642-FE0F,4,2621
+🏊‍♀️,1F3CA-200D-2640-FE0F,people-body,person-sport,woman swimming,"freestyle, man, sport, swim, swimmer, swimming, triathlon",,Florian Nagel,2019-05-07,,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2623
+🏊🏻‍♀️,1F3CA-1F3FB-200D-2640-FE0F,people-body,person-sport,woman swimming: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2625
+🏊🏼‍♀️,1F3CA-1F3FC-200D-2640-FE0F,people-body,person-sport,woman swimming: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2627
+🏊🏽‍♀️,1F3CA-1F3FD-200D-2640-FE0F,people-body,person-sport,woman swimming: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2629
+🏊🏾‍♀️,1F3CA-1F3FE-200D-2640-FE0F,people-body,person-sport,woman swimming: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2631
+🏊🏿‍♀️,1F3CA-1F3FF-200D-2640-FE0F,people-body,person-sport,woman swimming: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏊‍♀️,1F3CA-200D-2640-FE0F,4,2633
+⛹️,26F9,people-body,person-sport,person bouncing ball,"athletic, ball, basketball, bouncing, championship, dribble, net, person, player, throw",,Johanna Wellnitz,2018-04-18,,single,⛹️,26F9,0.7,2636
+⛹🏻,26F9-1F3FB,people-body,person-sport,person bouncing ball: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,⛹️,26F9,2,2637
+⛹🏼,26F9-1F3FC,people-body,person-sport,person bouncing ball: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,⛹️,26F9,2,2638
+⛹🏽,26F9-1F3FD,people-body,person-sport,person bouncing ball: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,⛹️,26F9,2,2639
+⛹🏾,26F9-1F3FE,people-body,person-sport,person bouncing ball: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,⛹️,26F9,2,2640
+⛹🏿,26F9-1F3FF,people-body,person-sport,person bouncing ball: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,⛹️,26F9,2,2641
+⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,people-body,person-sport,man bouncing ball,"athletic, ball, basketball, bouncing, championship, dribble, man, net, player, throw",,Florian Nagel,2019-05-07,,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2642
+⛹🏻‍♂️,26F9-1F3FB-200D-2642-FE0F,people-body,person-sport,man bouncing ball: light skin tone,,,Florian Nagel,2019-05-07,1,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2646
+⛹🏼‍♂️,26F9-1F3FC-200D-2642-FE0F,people-body,person-sport,man bouncing ball: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2648
+⛹🏽‍♂️,26F9-1F3FD-200D-2642-FE0F,people-body,person-sport,man bouncing ball: medium skin tone,,,Florian Nagel,2019-05-07,3,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2650
+⛹🏾‍♂️,26F9-1F3FE-200D-2642-FE0F,people-body,person-sport,man bouncing ball: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2652
+⛹🏿‍♂️,26F9-1F3FF-200D-2642-FE0F,people-body,person-sport,man bouncing ball: dark skin tone,,,Florian Nagel,2019-05-07,5,single,⛹️‍♂️,26F9-FE0F-200D-2642-FE0F,4,2654
+⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,people-body,person-sport,woman bouncing ball,"athletic, ball, basketball, bouncing, championship, dribble, net, player, throw, woman",,Florian Nagel,2019-05-07,,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2656
+⛹🏻‍♀️,26F9-1F3FB-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: light skin tone,,,Florian Nagel,2019-05-07,1,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2660
+⛹🏼‍♀️,26F9-1F3FC-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2662
+⛹🏽‍♀️,26F9-1F3FD-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: medium skin tone,,,Florian Nagel,2019-05-07,3,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2664
+⛹🏾‍♀️,26F9-1F3FE-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2666
+⛹🏿‍♀️,26F9-1F3FF-200D-2640-FE0F,people-body,person-sport,woman bouncing ball: dark skin tone,,,Florian Nagel,2019-05-07,5,single,⛹️‍♀️,26F9-FE0F-200D-2640-FE0F,4,2668
+🏋️,1F3CB,people-body,person-sport,person lifting weights,"barbell, bodybuilder, deadlift, lifter, lifting, person, powerlifting, weight, weightlifter, weights, workout",,Johanna Wellnitz,2018-04-18,,single,🏋️,1F3CB,0.7,2671
+🏋🏻,1F3CB-1F3FB,people-body,person-sport,person lifting weights: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🏋️,1F3CB,2,2672
+🏋🏼,1F3CB-1F3FC,people-body,person-sport,person lifting weights: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🏋️,1F3CB,2,2673
+🏋🏽,1F3CB-1F3FD,people-body,person-sport,person lifting weights: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🏋️,1F3CB,2,2674
+🏋🏾,1F3CB-1F3FE,people-body,person-sport,person lifting weights: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🏋️,1F3CB,2,2675
+🏋🏿,1F3CB-1F3FF,people-body,person-sport,person lifting weights: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🏋️,1F3CB,2,2676
+🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,people-body,person-sport,man lifting weights,"barbell, bodybuilder, deadlift, lifter, lifting, man, powerlifting, weight, weightlifter, weights, workout",,Florian Nagel,2019-05-07,,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2677
+🏋🏻‍♂️,1F3CB-1F3FB-200D-2642-FE0F,people-body,person-sport,man lifting weights: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2681
+🏋🏼‍♂️,1F3CB-1F3FC-200D-2642-FE0F,people-body,person-sport,man lifting weights: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2683
+🏋🏽‍♂️,1F3CB-1F3FD-200D-2642-FE0F,people-body,person-sport,man lifting weights: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2685
+🏋🏾‍♂️,1F3CB-1F3FE-200D-2642-FE0F,people-body,person-sport,man lifting weights: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2687
+🏋🏿‍♂️,1F3CB-1F3FF-200D-2642-FE0F,people-body,person-sport,man lifting weights: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏋️‍♂️,1F3CB-FE0F-200D-2642-FE0F,4,2689
+🏋️‍♀️,1F3CB-FE0F-200D-2640-FE0F,people-body,person-sport,woman lifting weights,"barbell, bodybuilder, deadlift, lifter, lifting, powerlifting, weight, weightlifter, weights, woman, workout",,Florian Nagel,2019-05-07,,single,🏋️‍♀️,1F3CB-FE0F-200D-2640-FE0F,4,2691
+🏋🏻‍♀️,1F3CB-1F3FB-200D-2640-FE0F,people-body,person-sport,woman lifting weights: light skin tone,,,Florian Nagel,2019-05-07,1,single,🏋️‍♀️,1F3CB-FE0F-200D-2640-FE0F,4,2695
+🏋🏼‍♀️,1F3CB-1F3FC-200D-2640-FE0F,people-body,person-sport,woman lifting weights: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🏋️‍♀️,1F3CB-FE0F-200D-2640-FE0F,4,2697
+🏋🏽‍♀️,1F3CB-1F3FD-200D-2640-FE0F,people-body,person-sport,woman lifting weights: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🏋️‍♀️,1F3CB-FE0F-200D-2640-FE0F,4,2699
+🏋🏾‍♀️,1F3CB-1F3FE-200D-2640-FE0F,people-body,person-sport,woman lifting weights: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🏋️‍♀️,1F3CB-FE0F-200D-2640-FE0F,4,2701
+🏋🏿‍♀️,1F3CB-1F3FF-200D-2640-FE0F,people-body,person-sport,woman lifting weights: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🏋️‍♀️,1F3CB-FE0F-200D-2640-FE0F,4,2703
+🚴,1F6B4,people-body,person-sport,person biking,"bicycle, bicyclist, bike, biking, cycle, cyclist, person, riding, sport",,Johanna Wellnitz,2018-04-18,,single,🚴,1F6B4,1,2705
+🚴🏻,1F6B4-1F3FB,people-body,person-sport,person biking: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🚴,1F6B4,1,2706
+🚴🏼,1F6B4-1F3FC,people-body,person-sport,person biking: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🚴,1F6B4,1,2707
+🚴🏽,1F6B4-1F3FD,people-body,person-sport,person biking: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🚴,1F6B4,1,2708
+🚴🏾,1F6B4-1F3FE,people-body,person-sport,person biking: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🚴,1F6B4,1,2709
+🚴🏿,1F6B4-1F3FF,people-body,person-sport,person biking: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🚴,1F6B4,1,2710
+🚴‍♂️,1F6B4-200D-2642-FE0F,people-body,person-sport,man biking,"bicycle, bicyclist, bike, biking, cycle, cyclist, man, riding, sport",,Florian Nagel,2019-05-07,,single,🚴‍♂️,1F6B4-200D-2642-FE0F,4,2711
+🚴🏻‍♂️,1F6B4-1F3FB-200D-2642-FE0F,people-body,person-sport,man biking: light skin tone,,,Florian Nagel,2019-05-07,1,single,🚴‍♂️,1F6B4-200D-2642-FE0F,4,2713
+🚴🏼‍♂️,1F6B4-1F3FC-200D-2642-FE0F,people-body,person-sport,man biking: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🚴‍♂️,1F6B4-200D-2642-FE0F,4,2715
+🚴🏽‍♂️,1F6B4-1F3FD-200D-2642-FE0F,people-body,person-sport,man biking: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🚴‍♂️,1F6B4-200D-2642-FE0F,4,2717
+🚴🏾‍♂️,1F6B4-1F3FE-200D-2642-FE0F,people-body,person-sport,man biking: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🚴‍♂️,1F6B4-200D-2642-FE0F,4,2719
+🚴🏿‍♂️,1F6B4-1F3FF-200D-2642-FE0F,people-body,person-sport,man biking: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🚴‍♂️,1F6B4-200D-2642-FE0F,4,2721
+🚴‍♀️,1F6B4-200D-2640-FE0F,people-body,person-sport,woman biking,"bicycle, bicyclist, bike, biking, cycle, cyclist, riding, sport, woman",,Florian Nagel,2019-05-07,,single,🚴‍♀️,1F6B4-200D-2640-FE0F,4,2723
+🚴🏻‍♀️,1F6B4-1F3FB-200D-2640-FE0F,people-body,person-sport,woman biking: light skin tone,,,Florian Nagel,2019-05-07,1,single,🚴‍♀️,1F6B4-200D-2640-FE0F,4,2725
+🚴🏼‍♀️,1F6B4-1F3FC-200D-2640-FE0F,people-body,person-sport,woman biking: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🚴‍♀️,1F6B4-200D-2640-FE0F,4,2727
+🚴🏽‍♀️,1F6B4-1F3FD-200D-2640-FE0F,people-body,person-sport,woman biking: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🚴‍♀️,1F6B4-200D-2640-FE0F,4,2729
+🚴🏾‍♀️,1F6B4-1F3FE-200D-2640-FE0F,people-body,person-sport,woman biking: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🚴‍♀️,1F6B4-200D-2640-FE0F,4,2731
+🚴🏿‍♀️,1F6B4-1F3FF-200D-2640-FE0F,people-body,person-sport,woman biking: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🚴‍♀️,1F6B4-200D-2640-FE0F,4,2733
+🚵,1F6B5,people-body,person-sport,person mountain biking,"bicycle, bicyclist, bike, biking, cycle, cyclist, mountain, person, riding, sport",,Anne Frauendorf,2018-11-16,,single,🚵,1F6B5,1,2735
+🚵🏻,1F6B5-1F3FB,people-body,person-sport,person mountain biking: light skin tone,,,Anne Frauendorf,2018-11-16,1,single,🚵,1F6B5,1,2736
+🚵🏼,1F6B5-1F3FC,people-body,person-sport,person mountain biking: medium-light skin tone,,,Anne Frauendorf,2018-11-16,2,single,🚵,1F6B5,1,2737
+🚵🏽,1F6B5-1F3FD,people-body,person-sport,person mountain biking: medium skin tone,,,Anne Frauendorf,2018-11-16,3,single,🚵,1F6B5,1,2738
+🚵🏾,1F6B5-1F3FE,people-body,person-sport,person mountain biking: medium-dark skin tone,,,Anne Frauendorf,2018-11-16,4,single,🚵,1F6B5,1,2739
+🚵🏿,1F6B5-1F3FF,people-body,person-sport,person mountain biking: dark skin tone,,,Anne Frauendorf,2018-11-16,5,single,🚵,1F6B5,1,2740
+🚵‍♂️,1F6B5-200D-2642-FE0F,people-body,person-sport,man mountain biking,"bicycle, bicyclist, bike, biking, cycle, cyclist, man, mountain, riding, sport",,Florian Nagel,2019-05-07,,single,🚵‍♂️,1F6B5-200D-2642-FE0F,4,2741
+🚵🏻‍♂️,1F6B5-1F3FB-200D-2642-FE0F,people-body,person-sport,man mountain biking: light skin tone,,,Florian Nagel,2019-05-07,1,single,🚵‍♂️,1F6B5-200D-2642-FE0F,4,2743
+🚵🏼‍♂️,1F6B5-1F3FC-200D-2642-FE0F,people-body,person-sport,man mountain biking: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🚵‍♂️,1F6B5-200D-2642-FE0F,4,2745
+🚵🏽‍♂️,1F6B5-1F3FD-200D-2642-FE0F,people-body,person-sport,man mountain biking: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🚵‍♂️,1F6B5-200D-2642-FE0F,4,2747
+🚵🏾‍♂️,1F6B5-1F3FE-200D-2642-FE0F,people-body,person-sport,man mountain biking: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🚵‍♂️,1F6B5-200D-2642-FE0F,4,2749
+🚵🏿‍♂️,1F6B5-1F3FF-200D-2642-FE0F,people-body,person-sport,man mountain biking: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🚵‍♂️,1F6B5-200D-2642-FE0F,4,2751
+🚵‍♀️,1F6B5-200D-2640-FE0F,people-body,person-sport,woman mountain biking,"bicycle, bicyclist, bike, biking, cycle, cyclist, mountain, riding, sport, woman",,Florian Nagel,2019-05-07,,single,🚵‍♀️,1F6B5-200D-2640-FE0F,4,2753
+🚵🏻‍♀️,1F6B5-1F3FB-200D-2640-FE0F,people-body,person-sport,woman mountain biking: light skin tone,,,Florian Nagel,2019-05-07,1,single,🚵‍♀️,1F6B5-200D-2640-FE0F,4,2755
+🚵🏼‍♀️,1F6B5-1F3FC-200D-2640-FE0F,people-body,person-sport,woman mountain biking: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🚵‍♀️,1F6B5-200D-2640-FE0F,4,2757
+🚵🏽‍♀️,1F6B5-1F3FD-200D-2640-FE0F,people-body,person-sport,woman mountain biking: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🚵‍♀️,1F6B5-200D-2640-FE0F,4,2759
+🚵🏾‍♀️,1F6B5-1F3FE-200D-2640-FE0F,people-body,person-sport,woman mountain biking: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🚵‍♀️,1F6B5-200D-2640-FE0F,4,2761
+🚵🏿‍♀️,1F6B5-1F3FF-200D-2640-FE0F,people-body,person-sport,woman mountain biking: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🚵‍♀️,1F6B5-200D-2640-FE0F,4,2763
+🤸,1F938,people-body,person-sport,person cartwheeling,"active, cartwheel, cartwheeling, excited, flip, gymnastics, happy, person, somersault",,Johanna Wellnitz,2018-04-18,,single,🤸,1F938,3,2765
+🤸🏻,1F938-1F3FB,people-body,person-sport,person cartwheeling: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤸,1F938,3,2766
+🤸🏼,1F938-1F3FC,people-body,person-sport,person cartwheeling: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤸,1F938,3,2767
+🤸🏽,1F938-1F3FD,people-body,person-sport,person cartwheeling: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤸,1F938,3,2768
+🤸🏾,1F938-1F3FE,people-body,person-sport,person cartwheeling: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤸,1F938,3,2769
+🤸🏿,1F938-1F3FF,people-body,person-sport,person cartwheeling: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤸,1F938,3,2770
+🤸‍♂️,1F938-200D-2642-FE0F,people-body,person-sport,man cartwheeling,"active, cartwheel, cartwheeling, excited, flip, gymnastics, happy, man, somersault",,Florian Nagel,2019-05-07,,single,🤸‍♂️,1F938-200D-2642-FE0F,4,2771
+🤸🏻‍♂️,1F938-1F3FB-200D-2642-FE0F,people-body,person-sport,man cartwheeling: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤸‍♂️,1F938-200D-2642-FE0F,4,2773
+🤸🏼‍♂️,1F938-1F3FC-200D-2642-FE0F,people-body,person-sport,man cartwheeling: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤸‍♂️,1F938-200D-2642-FE0F,4,2775
+🤸🏽‍♂️,1F938-1F3FD-200D-2642-FE0F,people-body,person-sport,man cartwheeling: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤸‍♂️,1F938-200D-2642-FE0F,4,2777
+🤸🏾‍♂️,1F938-1F3FE-200D-2642-FE0F,people-body,person-sport,man cartwheeling: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤸‍♂️,1F938-200D-2642-FE0F,4,2779
+🤸🏿‍♂️,1F938-1F3FF-200D-2642-FE0F,people-body,person-sport,man cartwheeling: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤸‍♂️,1F938-200D-2642-FE0F,4,2781
+🤸‍♀️,1F938-200D-2640-FE0F,people-body,person-sport,woman cartwheeling,"active, cartwheel, cartwheeling, excited, flip, gymnastics, happy, somersault, woman",,Florian Nagel,2019-05-07,,single,🤸‍♀️,1F938-200D-2640-FE0F,4,2783
+🤸🏻‍♀️,1F938-1F3FB-200D-2640-FE0F,people-body,person-sport,woman cartwheeling: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤸‍♀️,1F938-200D-2640-FE0F,4,2785
+🤸🏼‍♀️,1F938-1F3FC-200D-2640-FE0F,people-body,person-sport,woman cartwheeling: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤸‍♀️,1F938-200D-2640-FE0F,4,2787
+🤸🏽‍♀️,1F938-1F3FD-200D-2640-FE0F,people-body,person-sport,woman cartwheeling: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤸‍♀️,1F938-200D-2640-FE0F,4,2789
+🤸🏾‍♀️,1F938-1F3FE-200D-2640-FE0F,people-body,person-sport,woman cartwheeling: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤸‍♀️,1F938-200D-2640-FE0F,4,2791
+🤸🏿‍♀️,1F938-1F3FF-200D-2640-FE0F,people-body,person-sport,woman cartwheeling: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤸‍♀️,1F938-200D-2640-FE0F,4,2793
+🤼,1F93C,people-body,person-sport,people wrestling,"combat, duel, grapple, people, ring, tournament, wrestle, wrestling",,Johanna Wellnitz,2018-04-18,,,,,3,2795
+🤼‍♂️,1F93C-200D-2642-FE0F,people-body,person-sport,men wrestling,"combat, duel, grapple, men, ring, tournament, wrestle, wrestling",,Florian Nagel,2019-05-07,,,,,4,2796
+🤼‍♀️,1F93C-200D-2640-FE0F,people-body,person-sport,women wrestling,"combat, duel, grapple, ring, tournament, women, wrestle, wrestling",,Florian Nagel,2019-05-07,,,,,4,2798
+🤽,1F93D,people-body,person-sport,person playing water polo,"person, playing, polo, sport, swimming, water, waterpolo",,Johanna Wellnitz,2018-04-18,,single,🤽,1F93D,3,2800
+🤽🏻,1F93D-1F3FB,people-body,person-sport,person playing water polo: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤽,1F93D,3,2801
+🤽🏼,1F93D-1F3FC,people-body,person-sport,person playing water polo: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤽,1F93D,3,2802
+🤽🏽,1F93D-1F3FD,people-body,person-sport,person playing water polo: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤽,1F93D,3,2803
+🤽🏾,1F93D-1F3FE,people-body,person-sport,person playing water polo: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤽,1F93D,3,2804
+🤽🏿,1F93D-1F3FF,people-body,person-sport,person playing water polo: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤽,1F93D,3,2805
+🤽‍♂️,1F93D-200D-2642-FE0F,people-body,person-sport,man playing water polo,"man, playing, polo, sport, swimming, water, waterpolo",,Florian Nagel,2019-05-07,,single,🤽‍♂️,1F93D-200D-2642-FE0F,4,2806
+🤽🏻‍♂️,1F93D-1F3FB-200D-2642-FE0F,people-body,person-sport,man playing water polo: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤽‍♂️,1F93D-200D-2642-FE0F,4,2808
+🤽🏼‍♂️,1F93D-1F3FC-200D-2642-FE0F,people-body,person-sport,man playing water polo: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤽‍♂️,1F93D-200D-2642-FE0F,4,2810
+🤽🏽‍♂️,1F93D-1F3FD-200D-2642-FE0F,people-body,person-sport,man playing water polo: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤽‍♂️,1F93D-200D-2642-FE0F,4,2812
+🤽🏾‍♂️,1F93D-1F3FE-200D-2642-FE0F,people-body,person-sport,man playing water polo: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤽‍♂️,1F93D-200D-2642-FE0F,4,2814
+🤽🏿‍♂️,1F93D-1F3FF-200D-2642-FE0F,people-body,person-sport,man playing water polo: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤽‍♂️,1F93D-200D-2642-FE0F,4,2816
+🤽‍♀️,1F93D-200D-2640-FE0F,people-body,person-sport,woman playing water polo,"playing, polo, sport, swimming, water, waterpolo, woman",,Florian Nagel,2019-05-07,,single,🤽‍♀️,1F93D-200D-2640-FE0F,4,2818
+🤽🏻‍♀️,1F93D-1F3FB-200D-2640-FE0F,people-body,person-sport,woman playing water polo: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤽‍♀️,1F93D-200D-2640-FE0F,4,2820
+🤽🏼‍♀️,1F93D-1F3FC-200D-2640-FE0F,people-body,person-sport,woman playing water polo: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤽‍♀️,1F93D-200D-2640-FE0F,4,2822
+🤽🏽‍♀️,1F93D-1F3FD-200D-2640-FE0F,people-body,person-sport,woman playing water polo: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤽‍♀️,1F93D-200D-2640-FE0F,4,2824
+🤽🏾‍♀️,1F93D-1F3FE-200D-2640-FE0F,people-body,person-sport,woman playing water polo: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤽‍♀️,1F93D-200D-2640-FE0F,4,2826
+🤽🏿‍♀️,1F93D-1F3FF-200D-2640-FE0F,people-body,person-sport,woman playing water polo: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤽‍♀️,1F93D-200D-2640-FE0F,4,2828
+🤾,1F93E,people-body,person-sport,person playing handball,"athletics, ball, catch, chuck, handball, hurl, lob, person, pitch, playing, sport, throw, toss",,Johanna Wellnitz,2018-04-18,,single,🤾,1F93E,3,2830
+🤾🏻,1F93E-1F3FB,people-body,person-sport,person playing handball: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤾,1F93E,3,2831
+🤾🏼,1F93E-1F3FC,people-body,person-sport,person playing handball: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤾,1F93E,3,2832
+🤾🏽,1F93E-1F3FD,people-body,person-sport,person playing handball: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤾,1F93E,3,2833
+🤾🏾,1F93E-1F3FE,people-body,person-sport,person playing handball: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤾,1F93E,3,2834
+🤾🏿,1F93E-1F3FF,people-body,person-sport,person playing handball: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤾,1F93E,3,2835
+🤾‍♂️,1F93E-200D-2642-FE0F,people-body,person-sport,man playing handball,"athletics, ball, catch, chuck, handball, hurl, lob, man, pitch, playing, sport, throw, toss",,Florian Nagel,2019-05-07,,single,🤾‍♂️,1F93E-200D-2642-FE0F,4,2836
+🤾🏻‍♂️,1F93E-1F3FB-200D-2642-FE0F,people-body,person-sport,man playing handball: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤾‍♂️,1F93E-200D-2642-FE0F,4,2838
+🤾🏼‍♂️,1F93E-1F3FC-200D-2642-FE0F,people-body,person-sport,man playing handball: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤾‍♂️,1F93E-200D-2642-FE0F,4,2840
+🤾🏽‍♂️,1F93E-1F3FD-200D-2642-FE0F,people-body,person-sport,man playing handball: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤾‍♂️,1F93E-200D-2642-FE0F,4,2842
+🤾🏾‍♂️,1F93E-1F3FE-200D-2642-FE0F,people-body,person-sport,man playing handball: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤾‍♂️,1F93E-200D-2642-FE0F,4,2844
+🤾🏿‍♂️,1F93E-1F3FF-200D-2642-FE0F,people-body,person-sport,man playing handball: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤾‍♂️,1F93E-200D-2642-FE0F,4,2846
+🤾‍♀️,1F93E-200D-2640-FE0F,people-body,person-sport,woman playing handball,"athletics, ball, catch, chuck, handball, hurl, lob, pitch, playing, sport, throw, toss, woman",,Florian Nagel,2019-05-07,,single,🤾‍♀️,1F93E-200D-2640-FE0F,4,2848
+🤾🏻‍♀️,1F93E-1F3FB-200D-2640-FE0F,people-body,person-sport,woman playing handball: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤾‍♀️,1F93E-200D-2640-FE0F,4,2850
+🤾🏼‍♀️,1F93E-1F3FC-200D-2640-FE0F,people-body,person-sport,woman playing handball: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤾‍♀️,1F93E-200D-2640-FE0F,4,2852
+🤾🏽‍♀️,1F93E-1F3FD-200D-2640-FE0F,people-body,person-sport,woman playing handball: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤾‍♀️,1F93E-200D-2640-FE0F,4,2854
+🤾🏾‍♀️,1F93E-1F3FE-200D-2640-FE0F,people-body,person-sport,woman playing handball: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤾‍♀️,1F93E-200D-2640-FE0F,4,2856
+🤾🏿‍♀️,1F93E-1F3FF-200D-2640-FE0F,people-body,person-sport,woman playing handball: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤾‍♀️,1F93E-200D-2640-FE0F,4,2858
+🤹,1F939,people-body,person-sport,person juggling,"act, balance, balancing, handle, juggle, juggling, manage, multitask, person, skill",,Johanna Wellnitz,2018-04-18,,single,🤹,1F939,3,2860
+🤹🏻,1F939-1F3FB,people-body,person-sport,person juggling: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🤹,1F939,3,2861
+🤹🏼,1F939-1F3FC,people-body,person-sport,person juggling: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🤹,1F939,3,2862
+🤹🏽,1F939-1F3FD,people-body,person-sport,person juggling: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🤹,1F939,3,2863
+🤹🏾,1F939-1F3FE,people-body,person-sport,person juggling: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🤹,1F939,3,2864
+🤹🏿,1F939-1F3FF,people-body,person-sport,person juggling: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🤹,1F939,3,2865
+🤹‍♂️,1F939-200D-2642-FE0F,people-body,person-sport,man juggling,"act, balance, balancing, handle, juggle, juggling, man, manage, multitask, skill",,Florian Nagel,2019-05-07,,single,🤹‍♂️,1F939-200D-2642-FE0F,4,2866
+🤹🏻‍♂️,1F939-1F3FB-200D-2642-FE0F,people-body,person-sport,man juggling: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤹‍♂️,1F939-200D-2642-FE0F,4,2868
+🤹🏼‍♂️,1F939-1F3FC-200D-2642-FE0F,people-body,person-sport,man juggling: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤹‍♂️,1F939-200D-2642-FE0F,4,2870
+🤹🏽‍♂️,1F939-1F3FD-200D-2642-FE0F,people-body,person-sport,man juggling: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤹‍♂️,1F939-200D-2642-FE0F,4,2872
+🤹🏾‍♂️,1F939-1F3FE-200D-2642-FE0F,people-body,person-sport,man juggling: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤹‍♂️,1F939-200D-2642-FE0F,4,2874
+🤹🏿‍♂️,1F939-1F3FF-200D-2642-FE0F,people-body,person-sport,man juggling: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤹‍♂️,1F939-200D-2642-FE0F,4,2876
+🤹‍♀️,1F939-200D-2640-FE0F,people-body,person-sport,woman juggling,"act, balance, balancing, handle, juggle, juggling, manage, multitask, skill, woman",,Florian Nagel,2019-05-07,,single,🤹‍♀️,1F939-200D-2640-FE0F,4,2878
+🤹🏻‍♀️,1F939-1F3FB-200D-2640-FE0F,people-body,person-sport,woman juggling: light skin tone,,,Florian Nagel,2019-05-07,1,single,🤹‍♀️,1F939-200D-2640-FE0F,4,2880
+🤹🏼‍♀️,1F939-1F3FC-200D-2640-FE0F,people-body,person-sport,woman juggling: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🤹‍♀️,1F939-200D-2640-FE0F,4,2882
+🤹🏽‍♀️,1F939-1F3FD-200D-2640-FE0F,people-body,person-sport,woman juggling: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🤹‍♀️,1F939-200D-2640-FE0F,4,2884
+🤹🏾‍♀️,1F939-1F3FE-200D-2640-FE0F,people-body,person-sport,woman juggling: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🤹‍♀️,1F939-200D-2640-FE0F,4,2886
+🤹🏿‍♀️,1F939-1F3FF-200D-2640-FE0F,people-body,person-sport,woman juggling: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🤹‍♀️,1F939-200D-2640-FE0F,4,2888
+🧘,1F9D8,people-body,person-resting,person in lotus position,"cross, legged, legs, lotus, meditation, peace, person, position, relax, serenity, yoga, yogi, zen",,Johanna Wellnitz,2018-04-18,,single,🧘,1F9D8,5,2890
+🧘🏻,1F9D8-1F3FB,people-body,person-resting,person in lotus position: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🧘,1F9D8,5,2891
+🧘🏼,1F9D8-1F3FC,people-body,person-resting,person in lotus position: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🧘,1F9D8,5,2892
+🧘🏽,1F9D8-1F3FD,people-body,person-resting,person in lotus position: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🧘,1F9D8,5,2893
+🧘🏾,1F9D8-1F3FE,people-body,person-resting,person in lotus position: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🧘,1F9D8,5,2894
+🧘🏿,1F9D8-1F3FF,people-body,person-resting,person in lotus position: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🧘,1F9D8,5,2895
+🧘‍♂️,1F9D8-200D-2642-FE0F,people-body,person-resting,man in lotus position,"cross, legged, legs, lotus, man, meditation, peace, position, relax, serenity, yoga, yogi, zen",,Florian Nagel,2019-05-07,,single,🧘‍♂️,1F9D8-200D-2642-FE0F,5,2896
+🧘🏻‍♂️,1F9D8-1F3FB-200D-2642-FE0F,people-body,person-resting,man in lotus position: light skin tone,,,Florian Nagel,2019-05-07,1,single,🧘‍♂️,1F9D8-200D-2642-FE0F,5,2898
+🧘🏼‍♂️,1F9D8-1F3FC-200D-2642-FE0F,people-body,person-resting,man in lotus position: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🧘‍♂️,1F9D8-200D-2642-FE0F,5,2900
+🧘🏽‍♂️,1F9D8-1F3FD-200D-2642-FE0F,people-body,person-resting,man in lotus position: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🧘‍♂️,1F9D8-200D-2642-FE0F,5,2902
+🧘🏾‍♂️,1F9D8-1F3FE-200D-2642-FE0F,people-body,person-resting,man in lotus position: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🧘‍♂️,1F9D8-200D-2642-FE0F,5,2904
+🧘🏿‍♂️,1F9D8-1F3FF-200D-2642-FE0F,people-body,person-resting,man in lotus position: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🧘‍♂️,1F9D8-200D-2642-FE0F,5,2906
+🧘‍♀️,1F9D8-200D-2640-FE0F,people-body,person-resting,woman in lotus position,"cross, legged, legs, lotus, meditation, peace, position, relax, serenity, woman, yoga, yogi, zen",,Florian Nagel,2019-05-07,,single,🧘‍♀️,1F9D8-200D-2640-FE0F,5,2908
+🧘🏻‍♀️,1F9D8-1F3FB-200D-2640-FE0F,people-body,person-resting,woman in lotus position: light skin tone,,,Florian Nagel,2019-05-07,1,single,🧘‍♀️,1F9D8-200D-2640-FE0F,5,2910
+🧘🏼‍♀️,1F9D8-1F3FC-200D-2640-FE0F,people-body,person-resting,woman in lotus position: medium-light skin tone,,,Florian Nagel,2019-05-07,2,single,🧘‍♀️,1F9D8-200D-2640-FE0F,5,2912
+🧘🏽‍♀️,1F9D8-1F3FD-200D-2640-FE0F,people-body,person-resting,woman in lotus position: medium skin tone,,,Florian Nagel,2019-05-07,3,single,🧘‍♀️,1F9D8-200D-2640-FE0F,5,2914
+🧘🏾‍♀️,1F9D8-1F3FE-200D-2640-FE0F,people-body,person-resting,woman in lotus position: medium-dark skin tone,,,Florian Nagel,2019-05-07,4,single,🧘‍♀️,1F9D8-200D-2640-FE0F,5,2916
+🧘🏿‍♀️,1F9D8-1F3FF-200D-2640-FE0F,people-body,person-resting,woman in lotus position: dark skin tone,,,Florian Nagel,2019-05-07,5,single,🧘‍♀️,1F9D8-200D-2640-FE0F,5,2918
+🛀,1F6C0,people-body,person-resting,person taking bath,"bath, bathtub, person, taking, tub",,Anne Frauendorf,2018-11-16,,single,🛀,1F6C0,0.6,2920
+🛀🏻,1F6C0-1F3FB,people-body,person-resting,person taking bath: light skin tone,,,Anne Frauendorf,2018-11-16,1,single,🛀,1F6C0,1,2921
+🛀🏼,1F6C0-1F3FC,people-body,person-resting,person taking bath: medium-light skin tone,,,Anne Frauendorf,2018-11-16,2,single,🛀,1F6C0,1,2922
+🛀🏽,1F6C0-1F3FD,people-body,person-resting,person taking bath: medium skin tone,,,Anne Frauendorf,2018-11-16,3,single,🛀,1F6C0,1,2923
+🛀🏾,1F6C0-1F3FE,people-body,person-resting,person taking bath: medium-dark skin tone,,,Anne Frauendorf,2018-11-16,4,single,🛀,1F6C0,1,2924
+🛀🏿,1F6C0-1F3FF,people-body,person-resting,person taking bath: dark skin tone,,,Anne Frauendorf,2018-11-16,5,single,🛀,1F6C0,1,2925
+🛌,1F6CC,people-body,person-resting,person in bed,"bed, bedtime, good, goodnight, hotel, nap, night, person, sleep, tired, zzz",,Johanna Wellnitz,2018-04-18,,single,🛌,1F6CC,1,2926
+🛌🏻,1F6CC-1F3FB,people-body,person-resting,person in bed: light skin tone,,,Johanna Wellnitz,2018-04-18,1,single,🛌,1F6CC,4,2927
+🛌🏼,1F6CC-1F3FC,people-body,person-resting,person in bed: medium-light skin tone,,,Johanna Wellnitz,2018-04-18,2,single,🛌,1F6CC,4,2928
+🛌🏽,1F6CC-1F3FD,people-body,person-resting,person in bed: medium skin tone,,,Johanna Wellnitz,2018-04-18,3,single,🛌,1F6CC,4,2929
+🛌🏾,1F6CC-1F3FE,people-body,person-resting,person in bed: medium-dark skin tone,,,Johanna Wellnitz,2018-04-18,4,single,🛌,1F6CC,4,2930
+🛌🏿,1F6CC-1F3FF,people-body,person-resting,person in bed: dark skin tone,,,Johanna Wellnitz,2018-04-18,5,single,🛌,1F6CC,4,2931
+🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,people-body,family,people holding hands,"bae, bestie, bff, couple, dating, flirt, friends, hand, hold, people, twins",,Fanny Jung,2019-05-06,,single,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2932
+🧑🏻‍🤝‍🧑🏻,1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB,people-body,family,people holding hands: light skin tone,,,Fanny Jung,2019-05-06,1,single,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2933
+🧑🏻‍🤝‍🧑🏼,1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC,people-body,family,"people holding hands: light skin tone, medium-light skin tone",,,Fanny Jung,2019-05-06,"1,2",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2934
+🧑🏻‍🤝‍🧑🏽,1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD,people-body,family,"people holding hands: light skin tone, medium skin tone",,,Fanny Jung,2019-05-06,"1,3",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2935
+🧑🏻‍🤝‍🧑🏾,1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE,people-body,family,"people holding hands: light skin tone, medium-dark skin tone",,,Fanny Jung,2019-05-06,"1,4",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2936
+🧑🏻‍🤝‍🧑🏿,1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF,people-body,family,"people holding hands: light skin tone, dark skin tone",,,Fanny Jung,2019-05-06,"1,5",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2937
+🧑🏼‍🤝‍🧑🏻,1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB,people-body,family,"people holding hands: medium-light skin tone, light skin tone",,,Fanny Jung,2019-05-06,"2,1",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2938
+🧑🏼‍🤝‍🧑🏼,1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC,people-body,family,people holding hands: medium-light skin tone,,,Fanny Jung,2019-05-06,2,single,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2939
+🧑🏼‍🤝‍🧑🏽,1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD,people-body,family,"people holding hands: medium-light skin tone, medium skin tone",,,Fanny Jung,2019-05-06,"2,3",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2940
+🧑🏼‍🤝‍🧑🏾,1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE,people-body,family,"people holding hands: medium-light skin tone, medium-dark skin tone",,,Fanny Jung,2019-05-06,"2,4",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2941
+🧑🏼‍🤝‍🧑🏿,1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF,people-body,family,"people holding hands: medium-light skin tone, dark skin tone",,,Fanny Jung,2019-05-06,"2,5",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2942
+🧑🏽‍🤝‍🧑🏻,1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB,people-body,family,"people holding hands: medium skin tone, light skin tone",,,Fanny Jung,2019-05-06,"3,1",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2943
+🧑🏽‍🤝‍🧑🏼,1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC,people-body,family,"people holding hands: medium skin tone, medium-light skin tone",,,Fanny Jung,2019-05-06,"3,2",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2944
+🧑🏽‍🤝‍🧑🏽,1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD,people-body,family,people holding hands: medium skin tone,,,Fanny Jung,2019-05-06,3,single,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2945
+🧑🏽‍🤝‍🧑🏾,1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE,people-body,family,"people holding hands: medium skin tone, medium-dark skin tone",,,Fanny Jung,2019-05-06,"3,4",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2946
+🧑🏽‍🤝‍🧑🏿,1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF,people-body,family,"people holding hands: medium skin tone, dark skin tone",,,Fanny Jung,2019-05-06,"3,5",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2947
+🧑🏾‍🤝‍🧑🏻,1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB,people-body,family,"people holding hands: medium-dark skin tone, light skin tone",,,Fanny Jung,2019-05-06,"4,1",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2948
+🧑🏾‍🤝‍🧑🏼,1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC,people-body,family,"people holding hands: medium-dark skin tone, medium-light skin tone",,,Fanny Jung,2019-05-06,"4,2",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2949
+🧑🏾‍🤝‍🧑🏽,1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD,people-body,family,"people holding hands: medium-dark skin tone, medium skin tone",,,Fanny Jung,2019-05-06,"4,3",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2950
+🧑🏾‍🤝‍🧑🏾,1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE,people-body,family,people holding hands: medium-dark skin tone,,,Fanny Jung,2019-05-06,4,single,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2951
+🧑🏾‍🤝‍🧑🏿,1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF,people-body,family,"people holding hands: medium-dark skin tone, dark skin tone",,,Fanny Jung,2019-05-06,"4,5",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12.1,2952
+🧑🏿‍🤝‍🧑🏻,1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB,people-body,family,"people holding hands: dark skin tone, light skin tone",,,Fanny Jung,2019-05-06,"5,1",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2953
+🧑🏿‍🤝‍🧑🏼,1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC,people-body,family,"people holding hands: dark skin tone, medium-light skin tone",,,Fanny Jung,2019-05-06,"5,2",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2954
+🧑🏿‍🤝‍🧑🏽,1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD,people-body,family,"people holding hands: dark skin tone, medium skin tone",,,Fanny Jung,2019-05-06,"5,3",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2955
+🧑🏿‍🤝‍🧑🏾,1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE,people-body,family,"people holding hands: dark skin tone, medium-dark skin tone",,,Fanny Jung,2019-05-06,"5,4",multiple,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2956
+🧑🏿‍🤝‍🧑🏿,1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF,people-body,family,people holding hands: dark skin tone,,,Fanny Jung,2019-05-06,5,single,🧑‍🤝‍🧑,1F9D1-200D-1F91D-200D-1F9D1,12,2957
+👭,1F46D,people-body,family,women holding hands,"bae, bestie, bff, couple, dating, flirt, friends, girls, hand, hold, sisters, twins, women",,Lisa Schulz,2018-04-18,,single,👭,1F46D,1,2958
+👭🏻,1F46D-1F3FB,people-body,family,women holding hands: light skin tone,,,Lisa Schulz,2018-04-18,1,single,👭,1F46D,12,2959
+👩🏻‍🤝‍👩🏼,1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC,people-body,family,"women holding hands: light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👭,1F46D,12.1,2960
+👩🏻‍🤝‍👩🏽,1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD,people-body,family,"women holding hands: light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👭,1F46D,12.1,2961
+👩🏻‍🤝‍👩🏾,1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE,people-body,family,"women holding hands: light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👭,1F46D,12.1,2962
+👩🏻‍🤝‍👩🏿,1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF,people-body,family,"women holding hands: light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👭,1F46D,12.1,2963
+👩🏼‍🤝‍👩🏻,1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB,people-body,family,"women holding hands: medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👭,1F46D,12,2964
+👭🏼,1F46D-1F3FC,people-body,family,women holding hands: medium-light skin tone,,,Lisa Schulz,2018-04-18,2,single,👭,1F46D,12,2965
+👩🏼‍🤝‍👩🏽,1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD,people-body,family,"women holding hands: medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👭,1F46D,12.1,2966
+👩🏼‍🤝‍👩🏾,1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE,people-body,family,"women holding hands: medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👭,1F46D,12.1,2967
+👩🏼‍🤝‍👩🏿,1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF,people-body,family,"women holding hands: medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👭,1F46D,12.1,2968
+👩🏽‍🤝‍👩🏻,1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB,people-body,family,"women holding hands: medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👭,1F46D,12,2969
+👩🏽‍🤝‍👩🏼,1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC,people-body,family,"women holding hands: medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👭,1F46D,12,2970
+👭🏽,1F46D-1F3FD,people-body,family,women holding hands: medium skin tone,,,Lisa Schulz,2018-04-18,3,single,👭,1F46D,12,2971
+👩🏽‍🤝‍👩🏾,1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE,people-body,family,"women holding hands: medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👭,1F46D,12.1,2972
+👩🏽‍🤝‍👩🏿,1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF,people-body,family,"women holding hands: medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👭,1F46D,12.1,2973
+👩🏾‍🤝‍👩🏻,1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB,people-body,family,"women holding hands: medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👭,1F46D,12,2974
+👩🏾‍🤝‍👩🏼,1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC,people-body,family,"women holding hands: medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👭,1F46D,12,2975
+👩🏾‍🤝‍👩🏽,1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD,people-body,family,"women holding hands: medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👭,1F46D,12,2976
+👭🏾,1F46D-1F3FE,people-body,family,women holding hands: medium-dark skin tone,,,Lisa Schulz,2018-04-18,4,single,👭,1F46D,12,2977
+👩🏾‍🤝‍👩🏿,1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF,people-body,family,"women holding hands: medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👭,1F46D,12.1,2978
+👩🏿‍🤝‍👩🏻,1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB,people-body,family,"women holding hands: dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👭,1F46D,12,2979
+👩🏿‍🤝‍👩🏼,1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC,people-body,family,"women holding hands: dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👭,1F46D,12,2980
+👩🏿‍🤝‍👩🏽,1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD,people-body,family,"women holding hands: dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👭,1F46D,12,2981
+👩🏿‍🤝‍👩🏾,1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE,people-body,family,"women holding hands: dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👭,1F46D,12,2982
+👭🏿,1F46D-1F3FF,people-body,family,women holding hands: dark skin tone,,,Lisa Schulz,2018-04-18,5,single,👭,1F46D,12,2983
+👫,1F46B,people-body,family,woman and man holding hands,"bae, bestie, bff, couple, dating, flirt, friends, hand, hold, man, twins, woman",,Lisa Schulz,2018-04-18,,single,👫,1F46B,0.6,2984
+👫🏻,1F46B-1F3FB,people-body,family,woman and man holding hands: light skin tone,,,Lisa Schulz,2018-04-18,1,single,👫,1F46B,12,2985
+👩🏻‍🤝‍👨🏼,1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC,people-body,family,"woman and man holding hands: light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👫,1F46B,12,2986
+👩🏻‍🤝‍👨🏽,1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD,people-body,family,"woman and man holding hands: light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👫,1F46B,12,2987
+👩🏻‍🤝‍👨🏾,1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE,people-body,family,"woman and man holding hands: light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👫,1F46B,12,2988
+👩🏻‍🤝‍👨🏿,1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF,people-body,family,"woman and man holding hands: light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👫,1F46B,12,2989
+👩🏼‍🤝‍👨🏻,1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB,people-body,family,"woman and man holding hands: medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👫,1F46B,12,2990
+👫🏼,1F46B-1F3FC,people-body,family,woman and man holding hands: medium-light skin tone,,,Lisa Schulz,2018-04-18,2,single,👫,1F46B,12,2991
+👩🏼‍🤝‍👨🏽,1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD,people-body,family,"woman and man holding hands: medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👫,1F46B,12,2992
+👩🏼‍🤝‍👨🏾,1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE,people-body,family,"woman and man holding hands: medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👫,1F46B,12,2993
+👩🏼‍🤝‍👨🏿,1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF,people-body,family,"woman and man holding hands: medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👫,1F46B,12,2994
+👩🏽‍🤝‍👨🏻,1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB,people-body,family,"woman and man holding hands: medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👫,1F46B,12,2995
+👩🏽‍🤝‍👨🏼,1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC,people-body,family,"woman and man holding hands: medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👫,1F46B,12,2996
+👫🏽,1F46B-1F3FD,people-body,family,woman and man holding hands: medium skin tone,,,Lisa Schulz,2018-04-18,3,single,👫,1F46B,12,2997
+👩🏽‍🤝‍👨🏾,1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE,people-body,family,"woman and man holding hands: medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👫,1F46B,12,2998
+👩🏽‍🤝‍👨🏿,1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF,people-body,family,"woman and man holding hands: medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👫,1F46B,12,2999
+👩🏾‍🤝‍👨🏻,1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB,people-body,family,"woman and man holding hands: medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👫,1F46B,12,3000
+👩🏾‍🤝‍👨🏼,1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC,people-body,family,"woman and man holding hands: medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👫,1F46B,12,3001
+👩🏾‍🤝‍👨🏽,1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD,people-body,family,"woman and man holding hands: medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👫,1F46B,12,3002
+👫🏾,1F46B-1F3FE,people-body,family,woman and man holding hands: medium-dark skin tone,,,Lisa Schulz,2018-04-18,4,single,👫,1F46B,12,3003
+👩🏾‍🤝‍👨🏿,1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF,people-body,family,"woman and man holding hands: medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👫,1F46B,12,3004
+👩🏿‍🤝‍👨🏻,1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB,people-body,family,"woman and man holding hands: dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👫,1F46B,12,3005
+👩🏿‍🤝‍👨🏼,1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC,people-body,family,"woman and man holding hands: dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👫,1F46B,12,3006
+👩🏿‍🤝‍👨🏽,1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD,people-body,family,"woman and man holding hands: dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👫,1F46B,12,3007
+👩🏿‍🤝‍👨🏾,1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE,people-body,family,"woman and man holding hands: dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👫,1F46B,12,3008
+👫🏿,1F46B-1F3FF,people-body,family,woman and man holding hands: dark skin tone,,,Lisa Schulz,2018-04-18,5,single,👫,1F46B,12,3009
+👬,1F46C,people-body,family,men holding hands,"bae, bestie, bff, boys, brothers, couple, dating, flirt, friends, hand, hold, men, twins",,Lisa Schulz,2018-04-18,,single,👬,1F46C,1,3010
+👬🏻,1F46C-1F3FB,people-body,family,men holding hands: light skin tone,,,Lisa Schulz,2018-04-18,1,single,👬,1F46C,12,3011
+👨🏻‍🤝‍👨🏼,1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC,people-body,family,"men holding hands: light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👬,1F46C,12.1,3012
+👨🏻‍🤝‍👨🏽,1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD,people-body,family,"men holding hands: light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👬,1F46C,12.1,3013
+👨🏻‍🤝‍👨🏾,1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE,people-body,family,"men holding hands: light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👬,1F46C,12.1,3014
+👨🏻‍🤝‍👨🏿,1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF,people-body,family,"men holding hands: light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👬,1F46C,12.1,3015
+👨🏼‍🤝‍👨🏻,1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB,people-body,family,"men holding hands: medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👬,1F46C,12,3016
+👬🏼,1F46C-1F3FC,people-body,family,men holding hands: medium-light skin tone,,,Lisa Schulz,2018-04-18,2,single,👬,1F46C,12,3017
+👨🏼‍🤝‍👨🏽,1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD,people-body,family,"men holding hands: medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👬,1F46C,12.1,3018
+👨🏼‍🤝‍👨🏾,1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE,people-body,family,"men holding hands: medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👬,1F46C,12.1,3019
+👨🏼‍🤝‍👨🏿,1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF,people-body,family,"men holding hands: medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👬,1F46C,12.1,3020
+👨🏽‍🤝‍👨🏻,1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB,people-body,family,"men holding hands: medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👬,1F46C,12,3021
+👨🏽‍🤝‍👨🏼,1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC,people-body,family,"men holding hands: medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👬,1F46C,12,3022
+👬🏽,1F46C-1F3FD,people-body,family,men holding hands: medium skin tone,,,Lisa Schulz,2018-04-18,3,single,👬,1F46C,12,3023
+👨🏽‍🤝‍👨🏾,1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE,people-body,family,"men holding hands: medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👬,1F46C,12.1,3024
+👨🏽‍🤝‍👨🏿,1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF,people-body,family,"men holding hands: medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👬,1F46C,12.1,3025
+👨🏾‍🤝‍👨🏻,1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB,people-body,family,"men holding hands: medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👬,1F46C,12,3026
+👨🏾‍🤝‍👨🏼,1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC,people-body,family,"men holding hands: medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👬,1F46C,12,3027
+👨🏾‍🤝‍👨🏽,1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD,people-body,family,"men holding hands: medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👬,1F46C,12,3028
+👬🏾,1F46C-1F3FE,people-body,family,men holding hands: medium-dark skin tone,,,Lisa Schulz,2018-04-18,4,single,👬,1F46C,12,3029
+👨🏾‍🤝‍👨🏿,1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF,people-body,family,"men holding hands: medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👬,1F46C,12.1,3030
+👨🏿‍🤝‍👨🏻,1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB,people-body,family,"men holding hands: dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👬,1F46C,12,3031
+👨🏿‍🤝‍👨🏼,1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC,people-body,family,"men holding hands: dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👬,1F46C,12,3032
+👨🏿‍🤝‍👨🏽,1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD,people-body,family,"men holding hands: dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👬,1F46C,12,3033
+👨🏿‍🤝‍👨🏾,1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE,people-body,family,"men holding hands: dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👬,1F46C,12,3034
+👬🏿,1F46C-1F3FF,people-body,family,men holding hands: dark skin tone,,,Lisa Schulz,2018-04-18,5,single,👬,1F46C,12,3035
+💏,1F48F,people-body,family,kiss,"anniversary, babe, bae, couple, date, dating, heart, love, mwah, person, romance, together, xoxo",,Lisa Schulz,2018-04-18,,single,💏,1F48F,0.6,3036
+💏🏻,1F48F-1F3FB,people-body,family,kiss: light skin tone,,,Lisa Schulz,2018-04-18,1,single,💏,1F48F,13.1,3037
+💏🏼,1F48F-1F3FC,people-body,family,kiss: medium-light skin tone,,,Lisa Schulz,2018-04-18,2,single,💏,1F48F,13.1,3038
+💏🏽,1F48F-1F3FD,people-body,family,kiss: medium skin tone,,,Lisa Schulz,2018-04-18,3,single,💏,1F48F,13.1,3039
+💏🏾,1F48F-1F3FE,people-body,family,kiss: medium-dark skin tone,,,Lisa Schulz,2018-04-18,4,single,💏,1F48F,13.1,3040
+💏🏿,1F48F-1F3FF,people-body,family,kiss: dark skin tone,,,Lisa Schulz,2018-04-18,5,single,💏,1F48F,13.1,3041
+🧑🏻‍❤️‍💋‍🧑🏼,1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC,people-body,family,"kiss: person, person, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,💏,1F48F,13.1,3042
+🧑🏻‍❤️‍💋‍🧑🏽,1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD,people-body,family,"kiss: person, person, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,💏,1F48F,13.1,3044
+🧑🏻‍❤️‍💋‍🧑🏾,1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE,people-body,family,"kiss: person, person, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,💏,1F48F,13.1,3046
+🧑🏻‍❤️‍💋‍🧑🏿,1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF,people-body,family,"kiss: person, person, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,💏,1F48F,13.1,3048
+🧑🏼‍❤️‍💋‍🧑🏻,1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB,people-body,family,"kiss: person, person, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,💏,1F48F,13.1,3050
+🧑🏼‍❤️‍💋‍🧑🏽,1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD,people-body,family,"kiss: person, person, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,💏,1F48F,13.1,3052
+🧑🏼‍❤️‍💋‍🧑🏾,1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE,people-body,family,"kiss: person, person, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,💏,1F48F,13.1,3054
+🧑🏼‍❤️‍💋‍🧑🏿,1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF,people-body,family,"kiss: person, person, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,💏,1F48F,13.1,3056
+🧑🏽‍❤️‍💋‍🧑🏻,1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB,people-body,family,"kiss: person, person, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,💏,1F48F,13.1,3058
+🧑🏽‍❤️‍💋‍🧑🏼,1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC,people-body,family,"kiss: person, person, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,💏,1F48F,13.1,3060
+🧑🏽‍❤️‍💋‍🧑🏾,1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE,people-body,family,"kiss: person, person, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,💏,1F48F,13.1,3062
+🧑🏽‍❤️‍💋‍🧑🏿,1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF,people-body,family,"kiss: person, person, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,💏,1F48F,13.1,3064
+🧑🏾‍❤️‍💋‍🧑🏻,1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB,people-body,family,"kiss: person, person, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,💏,1F48F,13.1,3066
+🧑🏾‍❤️‍💋‍🧑🏼,1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC,people-body,family,"kiss: person, person, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,💏,1F48F,13.1,3068
+🧑🏾‍❤️‍💋‍🧑🏽,1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD,people-body,family,"kiss: person, person, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,💏,1F48F,13.1,3070
+🧑🏾‍❤️‍💋‍🧑🏿,1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF,people-body,family,"kiss: person, person, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,💏,1F48F,13.1,3072
+🧑🏿‍❤️‍💋‍🧑🏻,1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB,people-body,family,"kiss: person, person, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,💏,1F48F,13.1,3074
+🧑🏿‍❤️‍💋‍🧑🏼,1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC,people-body,family,"kiss: person, person, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,💏,1F48F,13.1,3076
+🧑🏿‍❤️‍💋‍🧑🏽,1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD,people-body,family,"kiss: person, person, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,💏,1F48F,13.1,3078
+🧑🏿‍❤️‍💋‍🧑🏾,1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE,people-body,family,"kiss: person, person, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,💏,1F48F,13.1,3080
+👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,people-body,family,"kiss: woman, man","anniversary, babe, bae, couple, date, dating, heart, kiss, love, man, mwah, person, romance, together, woman, xoxo",,Lisa Schulz,2018-04-18,,single,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,2,3082
+👩🏻‍❤️‍💋‍👨🏻,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: woman, man, light skin tone",,,Lisa Schulz,2018-04-18,1,single,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3084
+👩🏻‍❤️‍💋‍👨🏼,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: woman, man, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3086
+👩🏻‍❤️‍💋‍👨🏽,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: woman, man, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3088
+👩🏻‍❤️‍💋‍👨🏾,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: woman, man, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3090
+👩🏻‍❤️‍💋‍👨🏿,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: woman, man, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3092
+👩🏼‍❤️‍💋‍👨🏻,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: woman, man, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3094
+👩🏼‍❤️‍💋‍👨🏼,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: woman, man, medium-light skin tone",,,Lisa Schulz,2018-04-18,2,single,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3096
+👩🏼‍❤️‍💋‍👨🏽,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: woman, man, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3098
+👩🏼‍❤️‍💋‍👨🏾,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: woman, man, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3100
+👩🏼‍❤️‍💋‍👨🏿,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: woman, man, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3102
+👩🏽‍❤️‍💋‍👨🏻,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: woman, man, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3104
+👩🏽‍❤️‍💋‍👨🏼,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: woman, man, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3106
+👩🏽‍❤️‍💋‍👨🏽,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: woman, man, medium skin tone",,,Lisa Schulz,2018-04-18,3,single,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3108
+👩🏽‍❤️‍💋‍👨🏾,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: woman, man, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3110
+👩🏽‍❤️‍💋‍👨🏿,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: woman, man, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3112
+👩🏾‍❤️‍💋‍👨🏻,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: woman, man, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3114
+👩🏾‍❤️‍💋‍👨🏼,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: woman, man, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3116
+👩🏾‍❤️‍💋‍👨🏽,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: woman, man, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3118
+👩🏾‍❤️‍💋‍👨🏾,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: woman, man, medium-dark skin tone",,,Lisa Schulz,2018-04-18,4,single,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3120
+👩🏾‍❤️‍💋‍👨🏿,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: woman, man, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3122
+👩🏿‍❤️‍💋‍👨🏻,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: woman, man, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3124
+👩🏿‍❤️‍💋‍👨🏼,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: woman, man, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3126
+👩🏿‍❤️‍💋‍👨🏽,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: woman, man, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3128
+👩🏿‍❤️‍💋‍👨🏾,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: woman, man, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3130
+👩🏿‍❤️‍💋‍👨🏿,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: woman, man, dark skin tone",,,Lisa Schulz,2018-04-18,5,single,👩‍❤️‍💋‍👨,1F469-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3132
+👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,people-body,family,"kiss: man, man","anniversary, babe, bae, couple, date, dating, heart, kiss, love, man, mwah, person, romance, together, xoxo",,Lisa Schulz,2018-04-18,,single,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,2,3134
+👨🏻‍❤️‍💋‍👨🏻,1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: man, man, light skin tone",,,Lisa Schulz,2018-04-18,1,single,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3136
+👨🏻‍❤️‍💋‍👨🏼,1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: man, man, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3138
+👨🏻‍❤️‍💋‍👨🏽,1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: man, man, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3140
+👨🏻‍❤️‍💋‍👨🏾,1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: man, man, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3142
+👨🏻‍❤️‍💋‍👨🏿,1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: man, man, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3144
+👨🏼‍❤️‍💋‍👨🏻,1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: man, man, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3146
+👨🏼‍❤️‍💋‍👨🏼,1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: man, man, medium-light skin tone",,,Lisa Schulz,2018-04-18,2,single,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3148
+👨🏼‍❤️‍💋‍👨🏽,1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: man, man, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3150
+👨🏼‍❤️‍💋‍👨🏾,1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: man, man, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3152
+👨🏼‍❤️‍💋‍👨🏿,1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: man, man, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3154
+👨🏽‍❤️‍💋‍👨🏻,1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: man, man, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3156
+👨🏽‍❤️‍💋‍👨🏼,1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: man, man, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3158
+👨🏽‍❤️‍💋‍👨🏽,1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: man, man, medium skin tone",,,Lisa Schulz,2018-04-18,3,single,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3160
+👨🏽‍❤️‍💋‍👨🏾,1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: man, man, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3162
+👨🏽‍❤️‍💋‍👨🏿,1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: man, man, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3164
+👨🏾‍❤️‍💋‍👨🏻,1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: man, man, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3166
+👨🏾‍❤️‍💋‍👨🏼,1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: man, man, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3168
+👨🏾‍❤️‍💋‍👨🏽,1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: man, man, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3170
+👨🏾‍❤️‍💋‍👨🏾,1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: man, man, medium-dark skin tone",,,Lisa Schulz,2018-04-18,4,single,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3172
+👨🏾‍❤️‍💋‍👨🏿,1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: man, man, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3174
+👨🏿‍❤️‍💋‍👨🏻,1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB,people-body,family,"kiss: man, man, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3176
+👨🏿‍❤️‍💋‍👨🏼,1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC,people-body,family,"kiss: man, man, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3178
+👨🏿‍❤️‍💋‍👨🏽,1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD,people-body,family,"kiss: man, man, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3180
+👨🏿‍❤️‍💋‍👨🏾,1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE,people-body,family,"kiss: man, man, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3182
+👨🏿‍❤️‍💋‍👨🏿,1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF,people-body,family,"kiss: man, man, dark skin tone",,,Lisa Schulz,2018-04-18,5,single,👨‍❤️‍💋‍👨,1F468-200D-2764-FE0F-200D-1F48B-200D-1F468,13.1,3184
+👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,people-body,family,"kiss: woman, woman","anniversary, babe, bae, couple, date, dating, heart, kiss, love, mwah, person, romance, together, woman, xoxo",,Lisa Schulz,2018-04-18,,single,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,2,3186
+👩🏻‍❤️‍💋‍👩🏻,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB,people-body,family,"kiss: woman, woman, light skin tone",,,Lisa Schulz,2018-04-18,1,single,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3188
+👩🏻‍❤️‍💋‍👩🏼,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC,people-body,family,"kiss: woman, woman, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3190
+👩🏻‍❤️‍💋‍👩🏽,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD,people-body,family,"kiss: woman, woman, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3192
+👩🏻‍❤️‍💋‍👩🏾,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE,people-body,family,"kiss: woman, woman, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3194
+👩🏻‍❤️‍💋‍👩🏿,1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF,people-body,family,"kiss: woman, woman, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3196
+👩🏼‍❤️‍💋‍👩🏻,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB,people-body,family,"kiss: woman, woman, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3198
+👩🏼‍❤️‍💋‍👩🏼,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC,people-body,family,"kiss: woman, woman, medium-light skin tone",,,Lisa Schulz,2018-04-18,2,single,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3200
+👩🏼‍❤️‍💋‍👩🏽,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD,people-body,family,"kiss: woman, woman, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3202
+👩🏼‍❤️‍💋‍👩🏾,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE,people-body,family,"kiss: woman, woman, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3204
+👩🏼‍❤️‍💋‍👩🏿,1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF,people-body,family,"kiss: woman, woman, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3206
+👩🏽‍❤️‍💋‍👩🏻,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB,people-body,family,"kiss: woman, woman, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3208
+👩🏽‍❤️‍💋‍👩🏼,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC,people-body,family,"kiss: woman, woman, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3210
+👩🏽‍❤️‍💋‍👩🏽,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD,people-body,family,"kiss: woman, woman, medium skin tone",,,Lisa Schulz,2018-04-18,3,single,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3212
+👩🏽‍❤️‍💋‍👩🏾,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE,people-body,family,"kiss: woman, woman, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3214
+👩🏽‍❤️‍💋‍👩🏿,1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF,people-body,family,"kiss: woman, woman, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3216
+👩🏾‍❤️‍💋‍👩🏻,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB,people-body,family,"kiss: woman, woman, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3218
+👩🏾‍❤️‍💋‍👩🏼,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC,people-body,family,"kiss: woman, woman, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3220
+👩🏾‍❤️‍💋‍👩🏽,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD,people-body,family,"kiss: woman, woman, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3222
+👩🏾‍❤️‍💋‍👩🏾,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE,people-body,family,"kiss: woman, woman, medium-dark skin tone",,,Lisa Schulz,2018-04-18,4,single,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3224
+👩🏾‍❤️‍💋‍👩🏿,1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF,people-body,family,"kiss: woman, woman, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3226
+👩🏿‍❤️‍💋‍👩🏻,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB,people-body,family,"kiss: woman, woman, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3228
+👩🏿‍❤️‍💋‍👩🏼,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC,people-body,family,"kiss: woman, woman, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3230
+👩🏿‍❤️‍💋‍👩🏽,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD,people-body,family,"kiss: woman, woman, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3232
+👩🏿‍❤️‍💋‍👩🏾,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE,people-body,family,"kiss: woman, woman, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3234
+👩🏿‍❤️‍💋‍👩🏿,1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF,people-body,family,"kiss: woman, woman, dark skin tone",,,Lisa Schulz,2018-04-18,5,single,👩‍❤️‍💋‍👩,1F469-200D-2764-FE0F-200D-1F48B-200D-1F469,13.1,3236
+💑,1F491,people-body,family,couple with heart,"anniversary, babe, bae, couple, dating, heart, kiss, love, person, relationship, romance, together, you",,Lisa Schulz,2018-04-18,,single,💑,1F491,0.6,3238
+💑🏻,1F491-1F3FB,people-body,family,couple with heart: light skin tone,,,Lisa Schulz,2018-04-18,1,single,💑,1F491,13.1,3239
+💑🏼,1F491-1F3FC,people-body,family,couple with heart: medium-light skin tone,,,Lisa Schulz,2018-04-18,2,single,💑,1F491,13.1,3240
+💑🏽,1F491-1F3FD,people-body,family,couple with heart: medium skin tone,,,Lisa Schulz,2018-04-18,3,single,💑,1F491,13.1,3241
+💑🏾,1F491-1F3FE,people-body,family,couple with heart: medium-dark skin tone,,,Lisa Schulz,2018-04-18,4,single,💑,1F491,13.1,3242
+💑🏿,1F491-1F3FF,people-body,family,couple with heart: dark skin tone,,,Lisa Schulz,2018-04-18,5,single,💑,1F491,13.1,3243
+🧑🏻‍❤️‍🧑🏼,1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC,people-body,family,"couple with heart: person, person, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,💑,1F491,13.1,3244
+🧑🏻‍❤️‍🧑🏽,1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD,people-body,family,"couple with heart: person, person, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,💑,1F491,13.1,3246
+🧑🏻‍❤️‍🧑🏾,1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE,people-body,family,"couple with heart: person, person, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,💑,1F491,13.1,3248
+🧑🏻‍❤️‍🧑🏿,1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF,people-body,family,"couple with heart: person, person, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,💑,1F491,13.1,3250
+🧑🏼‍❤️‍🧑🏻,1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB,people-body,family,"couple with heart: person, person, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,💑,1F491,13.1,3252
+🧑🏼‍❤️‍🧑🏽,1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD,people-body,family,"couple with heart: person, person, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,💑,1F491,13.1,3254
+🧑🏼‍❤️‍🧑🏾,1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE,people-body,family,"couple with heart: person, person, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,💑,1F491,13.1,3256
+🧑🏼‍❤️‍🧑🏿,1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF,people-body,family,"couple with heart: person, person, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,💑,1F491,13.1,3258
+🧑🏽‍❤️‍🧑🏻,1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB,people-body,family,"couple with heart: person, person, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,💑,1F491,13.1,3260
+🧑🏽‍❤️‍🧑🏼,1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC,people-body,family,"couple with heart: person, person, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,💑,1F491,13.1,3262
+🧑🏽‍❤️‍🧑🏾,1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE,people-body,family,"couple with heart: person, person, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,💑,1F491,13.1,3264
+🧑🏽‍❤️‍🧑🏿,1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF,people-body,family,"couple with heart: person, person, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,💑,1F491,13.1,3266
+🧑🏾‍❤️‍🧑🏻,1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB,people-body,family,"couple with heart: person, person, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,💑,1F491,13.1,3268
+🧑🏾‍❤️‍🧑🏼,1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC,people-body,family,"couple with heart: person, person, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,💑,1F491,13.1,3270
+🧑🏾‍❤️‍🧑🏽,1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD,people-body,family,"couple with heart: person, person, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,💑,1F491,13.1,3272
+🧑🏾‍❤️‍🧑🏿,1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF,people-body,family,"couple with heart: person, person, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,💑,1F491,13.1,3274
+🧑🏿‍❤️‍🧑🏻,1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB,people-body,family,"couple with heart: person, person, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,💑,1F491,13.1,3276
+🧑🏿‍❤️‍🧑🏼,1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC,people-body,family,"couple with heart: person, person, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,💑,1F491,13.1,3278
+🧑🏿‍❤️‍🧑🏽,1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD,people-body,family,"couple with heart: person, person, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,💑,1F491,13.1,3280
+🧑🏿‍❤️‍🧑🏾,1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE,people-body,family,"couple with heart: person, person, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,💑,1F491,13.1,3282
+👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,people-body,family,"couple with heart: woman, man","anniversary, babe, bae, couple, dating, heart, kiss, love, man, person, relationship, romance, together, woman, you",,Lisa Schulz,2018-04-18,,single,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,2,3284
+👩🏻‍❤️‍👨🏻,1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: woman, man, light skin tone",,,Lisa Schulz,2018-04-18,1,single,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3286
+👩🏻‍❤️‍👨🏼,1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: woman, man, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3288
+👩🏻‍❤️‍👨🏽,1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: woman, man, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3290
+👩🏻‍❤️‍👨🏾,1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: woman, man, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3292
+👩🏻‍❤️‍👨🏿,1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: woman, man, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3294
+👩🏼‍❤️‍👨🏻,1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: woman, man, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3296
+👩🏼‍❤️‍👨🏼,1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: woman, man, medium-light skin tone",,,Lisa Schulz,2018-04-18,2,single,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3298
+👩🏼‍❤️‍👨🏽,1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: woman, man, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3300
+👩🏼‍❤️‍👨🏾,1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: woman, man, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3302
+👩🏼‍❤️‍👨🏿,1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: woman, man, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3304
+👩🏽‍❤️‍👨🏻,1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: woman, man, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3306
+👩🏽‍❤️‍👨🏼,1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: woman, man, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3308
+👩🏽‍❤️‍👨🏽,1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: woman, man, medium skin tone",,,Lisa Schulz,2018-04-18,3,single,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3310
+👩🏽‍❤️‍👨🏾,1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: woman, man, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3312
+👩🏽‍❤️‍👨🏿,1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: woman, man, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3314
+👩🏾‍❤️‍👨🏻,1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: woman, man, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3316
+👩🏾‍❤️‍👨🏼,1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: woman, man, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3318
+👩🏾‍❤️‍👨🏽,1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: woman, man, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3320
+👩🏾‍❤️‍👨🏾,1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: woman, man, medium-dark skin tone",,,Lisa Schulz,2018-04-18,4,single,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3322
+👩🏾‍❤️‍👨🏿,1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: woman, man, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3324
+👩🏿‍❤️‍👨🏻,1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: woman, man, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3326
+👩🏿‍❤️‍👨🏼,1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: woman, man, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3328
+👩🏿‍❤️‍👨🏽,1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: woman, man, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3330
+👩🏿‍❤️‍👨🏾,1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: woman, man, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3332
+👩🏿‍❤️‍👨🏿,1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: woman, man, dark skin tone",,,Lisa Schulz,2018-04-18,5,single,👩‍❤️‍👨,1F469-200D-2764-FE0F-200D-1F468,13.1,3334
+👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,people-body,family,"couple with heart: man, man","anniversary, babe, bae, couple, dating, heart, kiss, love, man, person, relationship, romance, together, you",,Lisa Schulz,2018-04-18,,single,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,2,3336
+👨🏻‍❤️‍👨🏻,1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: man, man, light skin tone",,,Lisa Schulz,2018-04-18,1,single,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3338
+👨🏻‍❤️‍👨🏼,1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: man, man, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3340
+👨🏻‍❤️‍👨🏽,1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: man, man, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3342
+👨🏻‍❤️‍👨🏾,1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: man, man, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3344
+👨🏻‍❤️‍👨🏿,1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: man, man, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3346
+👨🏼‍❤️‍👨🏻,1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: man, man, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3348
+👨🏼‍❤️‍👨🏼,1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: man, man, medium-light skin tone",,,Lisa Schulz,2018-04-18,2,single,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3350
+👨🏼‍❤️‍👨🏽,1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: man, man, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3352
+👨🏼‍❤️‍👨🏾,1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: man, man, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3354
+👨🏼‍❤️‍👨🏿,1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: man, man, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3356
+👨🏽‍❤️‍👨🏻,1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: man, man, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3358
+👨🏽‍❤️‍👨🏼,1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: man, man, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3360
+👨🏽‍❤️‍👨🏽,1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: man, man, medium skin tone",,,Lisa Schulz,2018-04-18,3,single,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3362
+👨🏽‍❤️‍👨🏾,1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: man, man, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3364
+👨🏽‍❤️‍👨🏿,1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: man, man, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3366
+👨🏾‍❤️‍👨🏻,1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: man, man, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3368
+👨🏾‍❤️‍👨🏼,1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: man, man, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3370
+👨🏾‍❤️‍👨🏽,1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: man, man, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3372
+👨🏾‍❤️‍👨🏾,1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: man, man, medium-dark skin tone",,,Lisa Schulz,2018-04-18,4,single,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3374
+👨🏾‍❤️‍👨🏿,1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: man, man, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3376
+👨🏿‍❤️‍👨🏻,1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB,people-body,family,"couple with heart: man, man, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3378
+👨🏿‍❤️‍👨🏼,1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC,people-body,family,"couple with heart: man, man, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3380
+👨🏿‍❤️‍👨🏽,1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD,people-body,family,"couple with heart: man, man, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3382
+👨🏿‍❤️‍👨🏾,1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE,people-body,family,"couple with heart: man, man, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3384
+👨🏿‍❤️‍👨🏿,1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF,people-body,family,"couple with heart: man, man, dark skin tone",,,Lisa Schulz,2018-04-18,5,single,👨‍❤️‍👨,1F468-200D-2764-FE0F-200D-1F468,13.1,3386
+👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,people-body,family,"couple with heart: woman, woman","anniversary, babe, bae, couple, dating, heart, kiss, love, person, relationship, romance, together, woman, you",,Lisa Schulz,2018-04-18,,single,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,2,3388
+👩🏻‍❤️‍👩🏻,1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB,people-body,family,"couple with heart: woman, woman, light skin tone",,,Lisa Schulz,2018-04-18,1,single,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3390
+👩🏻‍❤️‍👩🏼,1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC,people-body,family,"couple with heart: woman, woman, light skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"1,2",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3392
+👩🏻‍❤️‍👩🏽,1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD,people-body,family,"couple with heart: woman, woman, light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"1,3",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3394
+👩🏻‍❤️‍👩🏾,1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE,people-body,family,"couple with heart: woman, woman, light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"1,4",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3396
+👩🏻‍❤️‍👩🏿,1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF,people-body,family,"couple with heart: woman, woman, light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"1,5",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3398
+👩🏼‍❤️‍👩🏻,1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB,people-body,family,"couple with heart: woman, woman, medium-light skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"2,1",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3400
+👩🏼‍❤️‍👩🏼,1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC,people-body,family,"couple with heart: woman, woman, medium-light skin tone",,,Lisa Schulz,2018-04-18,2,single,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3402
+👩🏼‍❤️‍👩🏽,1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD,people-body,family,"couple with heart: woman, woman, medium-light skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"2,3",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3404
+👩🏼‍❤️‍👩🏾,1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE,people-body,family,"couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"2,4",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3406
+👩🏼‍❤️‍👩🏿,1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF,people-body,family,"couple with heart: woman, woman, medium-light skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"2,5",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3408
+👩🏽‍❤️‍👩🏻,1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB,people-body,family,"couple with heart: woman, woman, medium skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"3,1",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3410
+👩🏽‍❤️‍👩🏼,1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC,people-body,family,"couple with heart: woman, woman, medium skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"3,2",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3412
+👩🏽‍❤️‍👩🏽,1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD,people-body,family,"couple with heart: woman, woman, medium skin tone",,,Lisa Schulz,2018-04-18,3,single,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3414
+👩🏽‍❤️‍👩🏾,1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE,people-body,family,"couple with heart: woman, woman, medium skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"3,4",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3416
+👩🏽‍❤️‍👩🏿,1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF,people-body,family,"couple with heart: woman, woman, medium skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"3,5",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3418
+👩🏾‍❤️‍👩🏻,1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB,people-body,family,"couple with heart: woman, woman, medium-dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"4,1",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3420
+👩🏾‍❤️‍👩🏼,1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC,people-body,family,"couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"4,2",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3422
+👩🏾‍❤️‍👩🏽,1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD,people-body,family,"couple with heart: woman, woman, medium-dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"4,3",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3424
+👩🏾‍❤️‍👩🏾,1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE,people-body,family,"couple with heart: woman, woman, medium-dark skin tone",,,Lisa Schulz,2018-04-18,4,single,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3426
+👩🏾‍❤️‍👩🏿,1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF,people-body,family,"couple with heart: woman, woman, medium-dark skin tone, dark skin tone",,,Lisa Schulz,2018-04-18,"4,5",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3428
+👩🏿‍❤️‍👩🏻,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB,people-body,family,"couple with heart: woman, woman, dark skin tone, light skin tone",,,Lisa Schulz,2018-04-18,"5,1",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3430
+👩🏿‍❤️‍👩🏼,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC,people-body,family,"couple with heart: woman, woman, dark skin tone, medium-light skin tone",,,Lisa Schulz,2018-04-18,"5,2",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3432
+👩🏿‍❤️‍👩🏽,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD,people-body,family,"couple with heart: woman, woman, dark skin tone, medium skin tone",,,Lisa Schulz,2018-04-18,"5,3",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3434
+👩🏿‍❤️‍👩🏾,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE,people-body,family,"couple with heart: woman, woman, dark skin tone, medium-dark skin tone",,,Lisa Schulz,2018-04-18,"5,4",multiple,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3436
+👩🏿‍❤️‍👩🏿,1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF,people-body,family,"couple with heart: woman, woman, dark skin tone",,,Lisa Schulz,2018-04-18,5,single,👩‍❤️‍👩,1F469-200D-2764-FE0F-200D-1F469,13.1,3438
+👨‍👩‍👦,1F468-200D-1F469-200D-1F466,people-body,family,"family: man, woman, boy","boy, child, family, man, woman",,Fanny Jung,2019-05-06,,,,,2,3440
+👨‍👩‍👧,1F468-200D-1F469-200D-1F467,people-body,family,"family: man, woman, girl","child, family, girl, man, woman",,Lisa Schulz,2018-04-18,,,,,2,3441
+👨‍👩‍👧‍👦,1F468-200D-1F469-200D-1F467-200D-1F466,people-body,family,"family: man, woman, girl, boy","boy, child, family, girl, man, woman",,Fanny Jung,2019-05-06,,,,,2,3442
+👨‍👩‍👦‍👦,1F468-200D-1F469-200D-1F466-200D-1F466,people-body,family,"family: man, woman, boy, boy","boy, child, family, man, woman",,Fanny Jung,2019-05-06,,,,,2,3443
+👨‍👩‍👧‍👧,1F468-200D-1F469-200D-1F467-200D-1F467,people-body,family,"family: man, woman, girl, girl","child, family, girl, man, woman",,Fanny Jung,2019-05-06,,,,,2,3444
+👨‍👨‍👦,1F468-200D-1F468-200D-1F466,people-body,family,"family: man, man, boy","boy, child, family, man",,Fanny Jung,2019-05-06,,,,,2,3445
+👨‍👨‍👧,1F468-200D-1F468-200D-1F467,people-body,family,"family: man, man, girl","child, family, girl, man",,Fanny Jung,2019-05-06,,,,,2,3446
+👨‍👨‍👧‍👦,1F468-200D-1F468-200D-1F467-200D-1F466,people-body,family,"family: man, man, girl, boy","boy, child, family, girl, man",,Fanny Jung,2019-05-06,,,,,2,3447
+👨‍👨‍👦‍👦,1F468-200D-1F468-200D-1F466-200D-1F466,people-body,family,"family: man, man, boy, boy","boy, child, family, man",,Fanny Jung,2019-05-06,,,,,2,3448
+👨‍👨‍👧‍👧,1F468-200D-1F468-200D-1F467-200D-1F467,people-body,family,"family: man, man, girl, girl","child, family, girl, man",,Fanny Jung,2019-05-06,,,,,2,3449
+👩‍👩‍👦,1F469-200D-1F469-200D-1F466,people-body,family,"family: woman, woman, boy","boy, child, family, woman",,Fanny Jung,2019-05-06,,,,,2,3450
+👩‍👩‍👧,1F469-200D-1F469-200D-1F467,people-body,family,"family: woman, woman, girl","child, family, girl, woman",,Fanny Jung,2019-05-06,,,,,2,3451
+👩‍👩‍👧‍👦,1F469-200D-1F469-200D-1F467-200D-1F466,people-body,family,"family: woman, woman, girl, boy","boy, child, family, girl, woman",,Fanny Jung,2019-05-06,,,,,2,3452
+👩‍👩‍👦‍👦,1F469-200D-1F469-200D-1F466-200D-1F466,people-body,family,"family: woman, woman, boy, boy","boy, child, family, woman",,Fanny Jung,2019-05-06,,,,,2,3453
+👩‍👩‍👧‍👧,1F469-200D-1F469-200D-1F467-200D-1F467,people-body,family,"family: woman, woman, girl, girl","child, family, girl, woman",,Fanny Jung,2019-05-06,,,,,2,3454
+👨‍👦,1F468-200D-1F466,people-body,family,"family: man, boy","boy, child, family, man",,Fanny Jung,2019-05-06,,,,,4,3455
+👨‍👦‍👦,1F468-200D-1F466-200D-1F466,people-body,family,"family: man, boy, boy","boy, child, family, man",,Fanny Jung,2019-05-06,,,,,4,3456
+👨‍👧,1F468-200D-1F467,people-body,family,"family: man, girl","child, family, girl, man",,Fanny Jung,2019-05-06,,,,,4,3457
+👨‍👧‍👦,1F468-200D-1F467-200D-1F466,people-body,family,"family: man, girl, boy","boy, child, family, girl, man",,Fanny Jung,2019-05-06,,,,,4,3458
+👨‍👧‍👧,1F468-200D-1F467-200D-1F467,people-body,family,"family: man, girl, girl","child, family, girl, man",,Fanny Jung,2019-05-06,,,,,4,3459
+👩‍👦,1F469-200D-1F466,people-body,family,"family: woman, boy","boy, child, family, woman",,Fanny Jung,2019-05-06,,,,,4,3460
+👩‍👦‍👦,1F469-200D-1F466-200D-1F466,people-body,family,"family: woman, boy, boy","boy, child, family, woman",,Fanny Jung,2019-05-06,,,,,4,3461
+👩‍👧,1F469-200D-1F467,people-body,family,"family: woman, girl","child, family, girl, woman",,Fanny Jung,2019-05-06,,,,,4,3462
+👩‍👧‍👦,1F469-200D-1F467-200D-1F466,people-body,family,"family: woman, girl, boy","boy, child, family, girl, woman",,Fanny Jung,2019-05-06,,,,,4,3463
+👩‍👧‍👧,1F469-200D-1F467-200D-1F467,people-body,family,"family: woman, girl, girl","child, family, girl, woman",,Fanny Jung,2019-05-06,,,,,4,3464
+🗣️,1F5E3,people-body,person-symbol,speaking head,"face, head, silhouette, speak, speaking",,Johanna Wellnitz,2018-04-18,,,,,0.7,3466
+👤,1F464,people-body,person-symbol,bust in silhouette,"bust, mysterious, shadow, silhouette",,Johanna Wellnitz,2018-04-18,,,,,0.6,3467
+👥,1F465,people-body,person-symbol,busts in silhouette,"bff, bust, busts, everyone, friend, friends, people, silhouette",,Johanna Wellnitz,2018-04-18,,,,,1,3468
+🫂,1FAC2,people-body,person-symbol,people hugging,"comfort, embrace, farewell, friendship, goodbye, hello, hug, hugging, love, people, thanks",,Kai Wanschura,2018-04-18,,,,,13,3469
+👪️,1F46A,people-body,person-symbol,family,child,,Lisa Schulz,2018-04-18,,,,,0.6,3470
+🧑‍🧑‍🧒,1F9D1-200D-1F9D1-200D-1F9D2,people-body,person-symbol,"family: adult, adult, child","adult, child, family",,Daniel Utz,2024-10-03,,,,,15.1,3471
+🧑‍🧑‍🧒‍🧒,1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2,people-body,person-symbol,"family: adult, adult, child, child","adult, child, family",,Daniel Utz,2024-10-03,,,,,15.1,3472
+🧑‍🧒,1F9D1-200D-1F9D2,people-body,person-symbol,"family: adult, child","adult, child, family",,Daniel Utz,2024-10-03,,,,,15.1,3473
+🧑‍🧒‍🧒,1F9D1-200D-1F9D2-200D-1F9D2,people-body,person-symbol,"family: adult, child, child","adult, child, family",,Daniel Utz,2024-10-03,,,,,15.1,3474
+👣,1F463,people-body,person-symbol,footprints,"barefoot, clothing, footprint, omw, print, walk",,Julian Grüneberg,2018-04-18,,,,,0.6,3475
+🫆,1FAC6,people-body,person-symbol,fingerprint,"clue, crime, detective, forensics, identity, mystery, print, safety, trace",,Daniel Utz,2025-02-18,,,,,16,3476
+🏻,1F3FB,component,skin-tone,light skin tone,"1–2, light, skin, tone, type",,Benedikt Groß,2019-05-07,,,,,1,3477
+🏼,1F3FC,component,skin-tone,medium-light skin tone,"3, medium-light, skin, tone, type",,Benedikt Groß,2019-05-07,,,,,1,3478
+🏽,1F3FD,component,skin-tone,medium skin tone,"4, medium, skin, tone, type",,Benedikt Groß,2019-05-07,,,,,1,3479
+🏾,1F3FE,component,skin-tone,medium-dark skin tone,"5, medium-dark, skin, tone, type",,Benedikt Groß,2019-05-07,,,,,1,3480
+🏿,1F3FF,component,skin-tone,dark skin tone,"6, dark, skin, tone, type",,Benedikt Groß,2019-05-07,,,,,1,3481
+🦰,1F9B0,component,hair-style,red hair,"ginger, hair, red, redhead",,Nadine Bartel,2019-05-13,,,,,11,3482
+🦱,1F9B1,component,hair-style,curly hair,"afro, curly, hair, ringlets",,Nadine Bartel,2019-05-13,,,,,11,3483
+🦳,1F9B3,component,hair-style,white hair,"gray, hair, old, white",,Nadine Bartel,2019-05-13,,,,,11,3484
+🦲,1F9B2,component,hair-style,bald,"chemotherapy, hair, hairless, no, shaven",,Nadine Bartel,2019-05-13,,,,,11,3485
+🐵,1F435,animals-nature,animal-mammal,monkey face,"animal, banana, face, monkey",,Sofie Ascherl,2018-04-18,,,,,0.6,3486
+🐒,1F412,animals-nature,animal-mammal,monkey,"animal, banana",,Sofie Ascherl,2018-04-18,,,,,0.6,3487
+🦍,1F98D,animals-nature,animal-mammal,gorilla,animal,,Sofie Ascherl,2018-04-18,,,,,3,3488
+🦧,1F9A7,animals-nature,animal-mammal,orangutan,"animal, ape, monkey",,Yasmin Abdullahi,2019-05-07,,,,,12,3489
+🐶,1F436,animals-nature,animal-mammal,dog face,"adorbs, animal, dog, face, pet, puppies, puppy",,Sofie Ascherl,2018-04-18,,,,,0.6,3490
+🐕️,1F415,animals-nature,animal-mammal,dog,"animal, animals, dogs, pet",,Sofie Ascherl,2018-04-18,,,,,0.7,3491
+🦮,1F9AE,animals-nature,animal-mammal,guide dog,"accessibility, animal, blind, dog, guide",,Yasmin Abdullahi,2019-05-07,,,,,12,3492
+🐕‍🦺,1F415-200D-1F9BA,animals-nature,animal-mammal,service dog,"accessibility, animal, assistance, dog, service",,Yasmin Abdullahi,2019-05-07,,,,,12,3493
+🐩,1F429,animals-nature,animal-mammal,poodle,"animal, dog, fluffy",,Anne Frauendorf,2018-11-16,,,,,0.6,3494
+🐺,1F43A,animals-nature,animal-mammal,wolf,"animal, face",,Sofie Ascherl,2018-04-18,,,,,0.6,3495
+🦊,1F98A,animals-nature,animal-mammal,fox,"animal, face",,Sofie Ascherl,2018-04-18,,,,,3,3496
+🦝,1F99D,animals-nature,animal-mammal,raccoon,"animal, curious, sly",,Laura Schießer,2019-05-06,,,,,11,3497
+🐱,1F431,animals-nature,animal-mammal,cat face,"animal, cat, face, kitten, kitty, pet",,Sofie Ascherl,2018-04-18,,,,,0.6,3498
+🐈️,1F408,animals-nature,animal-mammal,cat,"animal, animals, cats, kitten, pet",,Sofie Ascherl,2018-04-18,,,,,0.7,3499
+🐈‍⬛,1F408-200D-2B1B,animals-nature,animal-mammal,black cat,"animal, black, cat, feline, halloween, meow, unlucky",,Sofie Ascherl,2018-04-18,,,,,13,3500
+🦁,1F981,animals-nature,animal-mammal,lion,"alpha, animal, face, leo, mane, order, rawr, roar, safari, strong, zodiac",,Sofie Ascherl,2018-04-18,,,,,1,3501
+🐯,1F42F,animals-nature,animal-mammal,tiger face,"animal, big, cat, face, predator, tiger",,Sofie Ascherl,2018-04-18,,,,,0.6,3502
+🐅,1F405,animals-nature,animal-mammal,tiger,"animal, big, cat, predator, zoo",,Sofie Ascherl,2018-04-18,,,,,1,3503
+🐆,1F406,animals-nature,animal-mammal,leopard,"animal, big, cat, predator, zoo",,Sofie Ascherl,2018-04-18,,,,,1,3504
+🐴,1F434,animals-nature,animal-mammal,horse face,"animal, dressage, equine, face, farm, horse, horses",,Sofie Ascherl,2018-04-18,,,,,0.6,3505
+🫎,1FACE,animals-nature,animal-mammal,moose,"alces, animal, antlers, elk, mammal",,Linda Hartmann,2023-10-06,,,,,15,3506
+🫏,1FACF,animals-nature,animal-mammal,donkey,"animal, ass, burro, hinny, mammal, mule, stubborn",,Charlotte Beha,2023-10-25,,,,,15,3507
+🐎,1F40E,animals-nature,animal-mammal,horse,"animal, equestrian, farm, racehorse, racing",,Sofie Ascherl,2018-04-18,,,,,0.6,3508
+🦄,1F984,animals-nature,animal-mammal,unicorn,face,,Sofie Ascherl,2018-04-18,,,,,1,3509
+🦓,1F993,animals-nature,animal-mammal,zebra,"animal, stripe",,Sofie Ascherl,2018-04-18,,,,,5,3510
+🦌,1F98C,animals-nature,animal-mammal,deer,animal,,Sofie Ascherl,2018-04-18,,,,,3,3511
+🦬,1F9AC,animals-nature,animal-mammal,bison,"animal, buffalo, herd, wisent",,Liz Bravo,2020-09-26,,,,,13,3512
+🐮,1F42E,animals-nature,animal-mammal,cow face,"animal, cow, face, farm, milk, moo",,Sofie Ascherl,2018-04-18,,,,,0.6,3513
+🐂,1F402,animals-nature,animal-mammal,ox,"animal, animals, bull, farm, taurus, zodiac",,Sofie Ascherl,2018-04-18,,,,,1,3514
+🐃,1F403,animals-nature,animal-mammal,water buffalo,"animal, buffalo, water, zoo",,Sofie Ascherl,2018-04-18,,,,,1,3515
+🐄,1F404,animals-nature,animal-mammal,cow,"animal, animals, farm, milk, moo",,Sofie Ascherl,2018-04-18,,,,,1,3516
+🐷,1F437,animals-nature,animal-mammal,pig face,"animal, bacon, face, farm, pig, pork",,Sofie Ascherl,2018-04-18,,,,,0.6,3517
+🐖,1F416,animals-nature,animal-mammal,pig,"animal, bacon, farm, pork, sow",,Sofie Ascherl,2018-04-18,,,,,1,3518
+🐗,1F417,animals-nature,animal-mammal,boar,"animal, pig",,Sofie Ascherl,2018-04-18,,,,,0.6,3519
+🐽,1F43D,animals-nature,animal-mammal,pig nose,"animal, face, farm, nose, pig, smell, snout",,Sofie Ascherl,2018-04-18,,,,,0.6,3520
+🐏,1F40F,animals-nature,animal-mammal,ram,"animal, aries, horns, male, sheep, zodiac, zoo",,Sofie Ascherl,2018-04-18,,,,,1,3521
+🐑,1F411,animals-nature,animal-mammal,ewe,"animal, baa, farm, female, fluffy, lamb, sheep, wool",,Sofie Ascherl,2018-04-18,,,,,0.6,3522
+🐐,1F410,animals-nature,animal-mammal,goat,"animal, capricorn, farm, milk, zodiac",,Sofie Ascherl,2018-04-18,,,,,1,3523
+🐪,1F42A,animals-nature,animal-mammal,camel,"animal, desert, dromedary, hump, one",,Sofie Ascherl,2018-04-18,,,,,1,3524
+🐫,1F42B,animals-nature,animal-mammal,two-hump camel,"animal, bactrian, camel, desert, hump, two, two-hump",,Sofie Ascherl,2018-04-18,,,,,0.6,3525
+🦙,1F999,animals-nature,animal-mammal,llama,"alpaca, animal, guanaco, vicuña, wool",,Carlin MacKenzie,2020-03-21,,,,,11,3526
+🦒,1F992,animals-nature,animal-mammal,giraffe,"animal, spots",,Sofie Ascherl,2018-04-18,,,,,5,3527
+🐘,1F418,animals-nature,animal-mammal,elephant,animal,,Sofie Ascherl,2018-04-18,,,,,0.6,3528
+🦣,1F9A3,animals-nature,animal-mammal,mammoth,"animal, extinction, large, tusk, wooly",,Liz Bravo,2020-09-26,,,,,13,3529
+🦏,1F98F,animals-nature,animal-mammal,rhinoceros,animal,,Sofie Ascherl,2018-04-18,,,,,3,3530
+🦛,1F99B,animals-nature,animal-mammal,hippopotamus,"animal, hippo",,Laura Schießer,2019-05-06,,,,,11,3531
+🐭,1F42D,animals-nature,animal-mammal,mouse face,"animal, face, mouse",,Sofie Ascherl,2018-04-18,,,,,0.6,3532
+🐁,1F401,animals-nature,animal-mammal,mouse,"animal, animals",,Sofie Ascherl,2018-04-18,,,,,1,3533
+🐀,1F400,animals-nature,animal-mammal,rat,animal,,Sofie Ascherl,2018-04-18,,,,,1,3534
+🐹,1F439,animals-nature,animal-mammal,hamster,"animal, face, pet",,Sofie Ascherl,2018-04-18,,,,,0.6,3535
+🐰,1F430,animals-nature,animal-mammal,rabbit face,"animal, bunny, face, pet, rabbit",,Sofie Ascherl,2018-04-18,,,,,0.6,3536
+🐇,1F407,animals-nature,animal-mammal,rabbit,"animal, bunny, pet",,Sofie Ascherl,2018-04-18,,,,,1,3537
+🐿️,1F43F,animals-nature,animal-mammal,chipmunk,"animal, squirrel",,Sofie Ascherl,2018-04-18,,,,,0.7,3539
+🦫,1F9AB,animals-nature,animal-mammal,beaver,"animal, dam, teeth",,Liz Bravo,2020-10-07,,,,,13,3540
+🦔,1F994,animals-nature,animal-mammal,hedgehog,"animal, spiny",,Sofie Ascherl,2018-04-18,,,,,5,3541
+🦇,1F987,animals-nature,animal-mammal,bat,"animal, vampire",,Sofie Ascherl,2018-04-18,,,,,3,3542
+🐻,1F43B,animals-nature,animal-mammal,bear,"animal, face, grizzly, growl, honey",,Sofie Ascherl,2018-04-18,,,,,0.6,3543
+🐻‍❄️,1F43B-200D-2744-FE0F,animals-nature,animal-mammal,polar bear,"animal, arctic, bear, polar, white",,Sina Grund,2020-02-18,,,,,13,3544
+🐨,1F428,animals-nature,animal-mammal,koala,"animal, australia, bear, down, face, marsupial, under",,Sofie Ascherl,2018-04-18,,,,,0.6,3546
+🐼,1F43C,animals-nature,animal-mammal,panda,"animal, bamboo, face",,Sofie Ascherl,2018-04-18,,,,,0.6,3547
+🦥,1F9A5,animals-nature,animal-mammal,sloth,"lazy, slow",,Yasmin Abdullahi,2019-05-07,,,,,12,3548
+🦦,1F9A6,animals-nature,animal-mammal,otter,"animal, fishing, playful",,Yasmin Abdullahi,2019-05-07,,,,,12,3549
+🦨,1F9A8,animals-nature,animal-mammal,skunk,"animal, stink",,Yasmin Abdullahi,2019-05-07,,,,,12,3550
+🦘,1F998,animals-nature,animal-mammal,kangaroo,"animal, joey, jump, marsupial",,Laura Schießer,2019-05-06,,,,,11,3551
+🦡,1F9A1,animals-nature,animal-mammal,badger,"animal, honey, pester",,Laura Schießer,2019-05-07,,,,,11,3552
+🐾,1F43E,animals-nature,animal-mammal,paw prints,"feet, paw, paws, print, prints",,Sofie Ascherl,2018-04-18,,,,,0.6,3553
+🦃,1F983,animals-nature,animal-bird,turkey,"bird, gobble, thanksgiving",,Selina Bauder,2018-04-18,,,,,1,3554
+🐔,1F414,animals-nature,animal-bird,chicken,"animal, bird, ornithology",,Selina Bauder,2018-04-18,,,,,0.6,3555
+🐓,1F413,animals-nature,animal-bird,rooster,"animal, bird, ornithology",,Selina Bauder,2018-04-18,,,,,1,3556
+🐣,1F423,animals-nature,animal-bird,hatching chick,"animal, baby, bird, chick, egg, hatching",,Selina Bauder,2018-04-18,,,,,0.6,3557
+🐤,1F424,animals-nature,animal-bird,baby chick,"animal, baby, bird, chick, ornithology",,Selina Bauder,2018-04-18,,,,,0.6,3558
+🐥,1F425,animals-nature,animal-bird,front-facing baby chick,"animal, baby, bird, chick, front-facing, newborn, ornithology",,Selina Bauder,2018-04-18,,,,,0.6,3559
+🐦️,1F426,animals-nature,animal-bird,bird,"animal, ornithology",,Selina Bauder,2018-04-18,,,,,0.6,3560
+🐧,1F427,animals-nature,animal-bird,penguin,"animal, antarctica, bird, ornithology",,Selina Bauder,2018-04-18,,,,,0.6,3561
+🕊️,1F54A,animals-nature,animal-bird,dove,"bird, fly, ornithology, peace",,Selina Bauder,2018-04-18,,,,,0.7,3563
+🦅,1F985,animals-nature,animal-bird,eagle,"animal, bird, ornithology",,Selina Bauder,2018-04-18,,,,,3,3564
+🦆,1F986,animals-nature,animal-bird,duck,"animal, bird, ornithology",,Selina Bauder,2018-04-18,,,,,3,3565
+🦢,1F9A2,animals-nature,animal-bird,swan,"animal, bird, cygnet, duckling, ornithology, ugly",,Laura Schießer,2019-05-06,,,,,11,3566
+🦉,1F989,animals-nature,animal-bird,owl,"animal, bird, ornithology, wise",,Selina Bauder,2018-04-18,,,,,3,3567
+🦤,1F9A4,animals-nature,animal-bird,dodo,"animal, bird, extinction, large, ornithology",,Liz Bravo,2020-10-07,,,,,13,3568
+🪶,1FAB6,animals-nature,animal-bird,feather,"bird, flight, light, plumage",,Liz Bravo,2020-03-26,,,,,13,3569
+🦩,1F9A9,animals-nature,animal-bird,flamingo,"animal, bird, flamboyant, ornithology, tropical",,Mariella Steeb,2018-04-18,,,,,12,3570
+🦚,1F99A,animals-nature,animal-bird,peacock,"animal, bird, colorful, ornithology, ostentatious, peahen, pretty, proud",,Laura Schießer,2019-05-06,,,,,11,3571
+🦜,1F99C,animals-nature,animal-bird,parrot,"animal, bird, ornithology, pirate, talk",,Ricarda Krejci,2019-05-07,,,,,11,3572
+🪽,1FABD,animals-nature,animal-bird,wing,"angelic, ascend, aviation, bird, fly, flying, heavenly, mythology, soar",,Kathrin Gerold,2023-10-25,,,,,15,3573
+🐦‍⬛,1F426-200D-2B1B,animals-nature,animal-bird,black bird,"animal, beak, bird, black, caw, corvid, crow, ornithology, raven, rook",,Jasmin Fassler,2023-10-06,,,,,15,3574
+🪿,1FABF,animals-nature,animal-bird,goose,"animal, bird, duck, flock, fowl, gaggle, gander, geese, honk, ornithology, silly",,Paul Gabriel,2023-10-25,,,,,15,3575
+🐦‍🔥,1F426-200D-1F525,animals-nature,animal-bird,phoenix,"ascend, ascension, emerge, fantasy, firebird, glory, immortal, rebirth, reincarnation, reinvent, renewal, revival, revive, rise, transform",,Vanessa Stoessinger,2024-10-03,,,,,15.1,3576
+🐸,1F438,animals-nature,animal-amphibian,frog,"animal, face",,Selina Bauder,2018-04-18,,,,,0.6,3577
+🐊,1F40A,animals-nature,animal-reptile,crocodile,"animal, zoo",,Selina Bauder,2018-04-18,,,,,1,3578
+🐢,1F422,animals-nature,animal-reptile,turtle,"animal, terrapin, tortoise",,Robert Winslow,2022-03-29,,,,,0.6,3579
+🦎,1F98E,animals-nature,animal-reptile,lizard,"animal, reptile",,Selina Bauder,2018-04-18,,,,,3,3580
+🐍,1F40D,animals-nature,animal-reptile,snake,"animal, bearer, ophiuchus, serpent, zodiac",,Selina Bauder,2018-04-18,,,,,0.6,3581
+🐲,1F432,animals-nature,animal-reptile,dragon face,"animal, dragon, face, fairy, fairytale, tale",,Selina Bauder,2018-04-18,,,,,0.6,3582
+🐉,1F409,animals-nature,animal-reptile,dragon,"animal, fairy, fairytale, knights, tale",,Selina Bauder,2018-04-18,,,,,1,3583
+🦕,1F995,animals-nature,animal-reptile,sauropod,"brachiosaurus, brontosaurus, dinosaur, diplodocus",,Selina Bauder,2018-04-18,,,,,5,3584
+🦖,1F996,animals-nature,animal-reptile,T-Rex,"dinosaur, rex, t, t-rex, tyrannosaurus",,Selina Bauder,2018-04-18,,,,,5,3585
+🐳,1F433,animals-nature,animal-marine,spouting whale,"animal, beach, face, ocean, spouting, whale",,Kris Kowal,2020-04-04,,,,,0.6,3586
+🐋,1F40B,animals-nature,animal-marine,whale,"animal, beach, ocean",,Kris Kowal,2020-04-04,,,,,1,3587
+🐬,1F42C,animals-nature,animal-marine,dolphin,"animal, beach, flipper, ocean",,Kris Kowal,2020-04-04,,,,,0.6,3588
+🦭,1F9AD,animals-nature,animal-marine,seal,"animal, lion, ocean, sea",,Liz Bravo,2020-09-26,,,,,13,3589
+🐟️,1F41F,animals-nature,animal-marine,fish,"animal, dinner, fishes, fishing, pisces, zodiac",,Selina Bauder,2018-04-18,,,,,0.6,3590
+🐠,1F420,animals-nature,animal-marine,tropical fish,"animal, fish, fishes, tropical",,Selina Bauder,2018-04-18,,,,,0.6,3591
+🐡,1F421,animals-nature,animal-marine,blowfish,"animal, fish",,Selina Bauder,2018-04-18,,,,,0.6,3592
+🦈,1F988,animals-nature,animal-marine,shark,"animal, fish",,Selina Bauder,2018-04-18,,,,,3,3593
+🐙,1F419,animals-nature,animal-marine,octopus,"animal, creature, ocean",,Selina Bauder,2018-04-18,,,,,0.6,3594
+🐚,1F41A,animals-nature,animal-marine,spiral shell,"animal, beach, conch, sea, shell, spiral",,Selina Bauder,2018-04-18,,,,,0.6,3595
+🪸,1FAB8,animals-nature,animal-marine,coral,"change, climate, ocean, reef, sea",,Alena Peichl,2022-05-09,,,,,14,3596
+🪼,1FABC,animals-nature,animal-marine,jellyfish,"animal, aquarium, burn, invertebrate, jelly, life, marine, ocean, ouch, plankton, sea, sting, stinger, tentacles",,Raluca Maniu,2023-10-25,,,,,15,3597
+🦀,1F980,animals-nature,animal-marine,crab,"cancer, zodiac",,Liz Bravo,2021-04-28,,,,,1,3598
+🦞,1F99E,animals-nature,animal-marine,lobster,"animal, bisque, claws, seafood",,Ricarda Krejci,2019-05-07,,,,,11,3599
+🦐,1F990,animals-nature,animal-marine,shrimp,"food, shellfish, small",,Robert Winslow,2022-03-29,,,,,3,3600
+🦑,1F991,animals-nature,animal-marine,squid,"animal, food, mollusk",,Selina Bauder,2018-04-18,,,,,3,3601
+🦪,1F9AA,animals-nature,animal-marine,oyster,"diving, pearl",,Liz Bravo,2021-04-28,,,,,12,3602
+🐌,1F40C,animals-nature,animal-bug,snail,"animal, escargot, garden, nature, slug",,Selina Bauder,2018-04-18,,,,,0.6,3603
+🦋,1F98B,animals-nature,animal-bug,butterfly,"insect, pretty",,Robert Winslow,2022-03-29,,,,,3,3604
+🐛,1F41B,animals-nature,animal-bug,bug,"animal, garden, insect",,Liz Bravo,2020-12-22,,,,,0.6,3605
+🐜,1F41C,animals-nature,animal-bug,ant,"animal, garden, insect",,Selina Bauder,2018-04-18,,,,,0.6,3606
+🐝,1F41D,animals-nature,animal-bug,honeybee,"animal, bee, bumblebee, honey, insect, nature, spring",,Selina Bauder,2018-04-18,,,,,0.6,3607
+🪲,1FAB2,animals-nature,animal-bug,beetle,"animal, bug, insect",,Liz Bravo,2020-09-26,,,,,13,3608
+🐞,1F41E,animals-nature,animal-bug,lady beetle,"animal, beetle, garden, insect, lady, ladybird, ladybug, nature",,Liz Bravo,2020-12-22,,,,,0.6,3609
+🦗,1F997,animals-nature,animal-bug,cricket,"animal, bug, grasshopper, insect, orthoptera",,Selina Bauder,2018-04-18,,,,,5,3610
+🪳,1FAB3,animals-nature,animal-bug,cockroach,"animal, insect, pest, roach",,Liz Bravo,2020-09-26,,,,,13,3611
+🕷️,1F577,animals-nature,animal-bug,spider,"animal, insect",,Selina Bauder,2018-04-18,,,,,0.7,3613
+🕸️,1F578,animals-nature,animal-bug,spider web,"spider, web",,Selina Bauder,2018-04-18,,,,,0.7,3615
+🦂,1F982,animals-nature,animal-bug,scorpion,"scorpio, scorpius, zodiac",,Selina Bauder,2018-04-18,,,,,1,3616
+🦟,1F99F,animals-nature,animal-bug,mosquito,"bite, disease, fever, insect, malaria, pest, virus",,Liz Bravo,2020-12-22,,,,,11,3617
+🪰,1FAB0,animals-nature,animal-bug,fly,"animal, disease, insect, maggot, pest, rotting",,Liz Bravo,2020-03-07,,,,,13,3618
+🪱,1FAB1,animals-nature,animal-bug,worm,"animal, annelid, earthworm, parasite",,Liz Bravo,2020-03-07,,,,,13,3619
+🦠,1F9A0,animals-nature,animal-bug,microbe,"amoeba, bacteria, science, virus",,Benedikt Groß,2020-07-07,,,,,11,3620
+💐,1F490,animals-nature,plant-flower,bouquet,"anniversary, birthday, date, flower, love, plant, romance",,Liz Bravo,2021-05-04,,,,,0.6,3621
+🌸,1F338,animals-nature,plant-flower,cherry blossom,"blossom, cherry, flower, plant, spring, springtime",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3622
+💮,1F4AE,animals-nature,plant-flower,white flower,"flower, white",,Ricarda Krejci,2019-05-07,,,,,0.6,3623
+🪷,1FAB7,animals-nature,plant-flower,lotus,"beauty, buddhism, calm, flower, hinduism, peace, purity, serenity",,Max Isele,2022-05-09,,,,,14,3624
+🏵️,1F3F5,animals-nature,plant-flower,rosette,plant,,Ricarda Krejci,2019-05-07,,,,,0.7,3626
+🌹,1F339,animals-nature,plant-flower,rose,"beauty, elegant, flower, love, plant, red, valentine",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3627
+🥀,1F940,animals-nature,plant-flower,wilted flower,"dying, flower, wilted",,Hilda Kalyoncu,2018-04-18,,,,,3,3628
+🌺,1F33A,animals-nature,plant-flower,hibiscus,"flower, plant",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3629
+🌻,1F33B,animals-nature,plant-flower,sunflower,"flower, outdoors, plant, sun",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3630
+🌼,1F33C,animals-nature,plant-flower,blossom,"buttercup, dandelion, flower, plant",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3631
+🌷,1F337,animals-nature,plant-flower,tulip,"blossom, flower, growth, plant",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3632
+🪻,1FABB,animals-nature,plant-flower,hyacinth,"bloom, bluebonnet, flower, indigo, lavender, lilac, lupine, plant, purple, shrub, snapdragon, spring, violet",,Simon Rutsch,2023-10-25,,,,,15,3633
+🌱,1F331,animals-nature,plant-other,seedling,"plant, sapling, sprout, young",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3634
+🪴,1FAB4,animals-nature,plant-other,potted plant,"decor, grow, house, nurturing, plant, pot, potted",,Liz Bravo,2020-03-26,,,,,13,3635
+🌲,1F332,animals-nature,plant-other,evergreen tree,"christmas, evergreen, forest, pine, tree",,Hilda Kalyoncu,2018-04-18,,,,,1,3636
+🌳,1F333,animals-nature,plant-other,deciduous tree,"deciduous, forest, green, habitat, shedding, tree",,Hilda Kalyoncu,2018-04-18,,,,,1,3637
+🌴,1F334,animals-nature,plant-other,palm tree,"beach, palm, plant, tree, tropical",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3638
+🌵,1F335,animals-nature,plant-other,cactus,"desert, drought, nature, plant",,Liz Bravo,2020-12-22,,,,,0.6,3639
+🌾,1F33E,animals-nature,plant-other,sheaf of rice,"ear, grain, grains, plant, rice, sheaf",,Hend Hourani,2018-11-16,,,,,0.6,3640
+🌿,1F33F,animals-nature,plant-other,herb,"leaf, plant",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3641
+☘️,2618,animals-nature,plant-other,shamrock,"irish, plant",,Hilda Kalyoncu,2018-04-18,,,,,1,3643
+🍀,1F340,animals-nature,plant-other,four leaf clover,"4, clover, four, four-leaf, irish, leaf, lucky, plant",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3644
+🍁,1F341,animals-nature,plant-other,maple leaf,"falling, leaf, maple",,Hilda Kalyoncu,2018-04-18,,,,,0.6,3645
+🍂,1F342,animals-nature,plant-other,fallen leaf,"autumn, fall, fallen, falling, leaf",,Ricarda Krejci,2019-05-07,,,,,0.6,3646
+🍃,1F343,animals-nature,plant-other,leaf fluttering in wind,"blow, flutter, fluttering, leaf, wind",,Ricarda Krejci,2019-05-07,,,,,0.6,3647
+🪹,1FAB9,animals-nature,plant-other,empty nest,"branch, empty, home, nest, nesting",,Alena Peichl,2022-05-09,,,,,14,3648
+🪺,1FABA,animals-nature,plant-other,nest with eggs,"bird, branch, egg, eggs, nest, nesting",,Alena Peichl,2022-05-09,,,,,14,3649
+🍄,1F344,animals-nature,plant-other,mushroom,"fungus, toadstool",,Marius Schnabel,2018-04-18,,,,,0.6,3650
+🪾,1FABE,animals-nature,plant-other,leafless tree,"bare, barren, branches, dead, drought, leafless, tree, trunk, winter, wood",,Daniel Utz,2025-02-18,,,,,16,3651
+🍇,1F347,food-drink,food-fruit,grapes,"dionysus, fruit, grape",,Hend Hourani,2018-11-16,,,,,0.6,3652
+🍈,1F348,food-drink,food-fruit,melon,"cantaloupe, fruit",,Hend Hourani,2018-11-16,,,,,0.6,3653
+🍉,1F349,food-drink,food-fruit,watermelon,fruit,,Marius Schnabel,2018-04-18,,,,,0.6,3654
+🍊,1F34A,food-drink,food-fruit,tangerine,"c, citrus, fruit, nectarine, orange, vitamin",,Liz Bravo,2021-05-04,,,,,0.6,3655
+🍋,1F34B,food-drink,food-fruit,lemon,"citrus, fruit, sour",,Marius Schnabel,2018-04-18,,,,,1,3656
+🍋‍🟩,1F34B-200D-1F7E9,food-drink,food-fruit,lime,"acidity, citrus, cocktail, fruit, garnish, key, margarita, mojito, refreshing, salsa, sour, tangy, tequila, tropical, zest",,Annika Raue,2024-10-03,,,,,15.1,3657
+🍌,1F34C,food-drink,food-fruit,banana,"fruit, potassium",,Marius Schnabel,2018-04-18,,,,,0.6,3658
+🍍,1F34D,food-drink,food-fruit,pineapple,"colada, fruit, pina, tropical",,Marius Schnabel,2018-04-18,,,,,0.6,3659
+🥭,1F96D,food-drink,food-fruit,mango,"food, fruit, tropical",,Ricarda Krejci,2019-05-07,,,,,11,3660
+🍎,1F34E,food-drink,food-fruit,red apple,"apple, diet, food, fruit, health, red, ripe",,Liz Bravo,2021-05-04,,,,,0.6,3661
+🍏,1F34F,food-drink,food-fruit,green apple,"apple, fruit, green",,Marius Schnabel,2018-04-18,,,,,0.6,3662
+🍐,1F350,food-drink,food-fruit,pear,fruit,,Marius Schnabel,2018-04-18,,,,,1,3663
+🍑,1F351,food-drink,food-fruit,peach,fruit,,Marius Schnabel,2018-04-18,,,,,0.6,3664
+🍒,1F352,food-drink,food-fruit,cherries,"berries, cherry, fruit, red",,Marius Schnabel,2018-04-18,,,,,0.6,3665
+🍓,1F353,food-drink,food-fruit,strawberry,"berry, fruit",,Liz Bravo,2021-05-04,,,,,0.6,3666
+🫐,1FAD0,food-drink,food-fruit,blueberries,"berries, berry, bilberry, blue, blueberry, food, fruit",,Liz Bravo,2020-03-03,,,,,13,3667
+🥝,1F95D,food-drink,food-fruit,kiwi fruit,"food, fruit, kiwi",,Marius Schnabel,2018-04-18,,,,,3,3668
+🍅,1F345,food-drink,food-fruit,tomato,"food, fruit, vegetable",,Marius Schnabel,2018-04-18,,,,,0.6,3669
+🫒,1FAD2,food-drink,food-fruit,olive,food,,Liz Bravo,2020-03-07,,,,,13,3670
+🥥,1F965,food-drink,food-fruit,coconut,"colada, palm, piña",,Marius Schnabel,2018-04-18,,,,,5,3671
+🥑,1F951,food-drink,food-vegetable,avocado,"food, fruit",,Marius Schnabel,2018-04-18,,,,,3,3672
+🍆,1F346,food-drink,food-vegetable,eggplant,"aubergine, vegetable",,Marius Schnabel,2018-04-18,,,,,0.6,3673
+🥔,1F954,food-drink,food-vegetable,potato,"food, vegetable",,Marius Schnabel,2018-04-18,,,,,3,3674
+🥕,1F955,food-drink,food-vegetable,carrot,"food, vegetable",,Marius Schnabel,2018-04-18,,,,,3,3675
+🌽,1F33D,food-drink,food-vegetable,ear of corn,"corn, crops, ear, farm, maize, maze",,Marius Schnabel,2018-04-18,,,,,0.6,3676
+🌶️,1F336,food-drink,food-vegetable,hot pepper,"hot, pepper",,Marius Schnabel,2018-04-18,,,,,0.7,3678
+🫑,1FAD1,food-drink,food-vegetable,bell pepper,"bell, capsicum, food, pepper, vegetable",,Liz Bravo,2020-07-21,,,,,13,3679
+🥒,1F952,food-drink,food-vegetable,cucumber,"food, pickle, vegetable",,Liz Bravo,2021-05-04,,,,,3,3680
+🥬,1F96C,food-drink,food-vegetable,leafy green,"bok, burgers, cabbage, choy, green, kale, leafy, lettuce, salad",,Ricarda Krejci,2019-05-07,,,,,11,3681
+🥦,1F966,food-drink,food-vegetable,broccoli,"cabbage, wild",,Marius Schnabel,2018-04-18,,,,,5,3682
+🧄,1F9C4,food-drink,food-vegetable,garlic,flavoring,,Yasmin Abdullahi,2019-05-07,,,,,12,3683
+🧅,1F9C5,food-drink,food-vegetable,onion,flavoring,,Yasmin Abdullahi,2019-05-07,,,,,12,3684
+🥜,1F95C,food-drink,food-vegetable,peanuts,"food, nut, peanut, vegetable",,Marius Schnabel,2018-04-18,,,,,3,3685
+🫘,1FAD8,food-drink,food-vegetable,beans,"food, kidney, legume, small",,Jana Junk,2022-05-09,,,,,14,3686
+🌰,1F330,food-drink,food-vegetable,chestnut,"almond, plant",,Hend Hourani,2018-11-16,,,,,0.6,3687
+🫚,1FADA,food-drink,food-vegetable,ginger root,"beer, ginger, health, herb, natural, root, spice",,Jennifer Zhu,2023-10-25,,,,,15,3688
+🫛,1FADB,food-drink,food-vegetable,pea pod,"beans, beanstalk, edamame, legume, pea, pod, soybean, vegetable, veggie",,Sonja Partheymüller,2023-10-25,,,,,15,3689
+🍄‍🟫,1F344-200D-1F7EB,food-drink,food-vegetable,brown mushroom,"food, fungi, fungus, mushroom, nature, pizza, portobello, shiitake, shroom, spore, sprout, toppings, truffle, vegetable, vegetarian, veggie",,Annika Raue,2024-10-03,,,,,15.1,3690
+🫜,1FADC,food-drink,food-vegetable,root vegetable,"beet, food, garden, radish, root, salad, turnip, vegetable, vegetarian",,Daniel Utz,2025-02-18,,,,,16,3691
+🍞,1F35E,food-drink,food-prepared,bread,"carbs, food, grain, loaf, restaurant, toast, wheat",,Miriam Vollmeier,2018-04-18,,,,,0.6,3692
+🥐,1F950,food-drink,food-prepared,croissant,"bread, breakfast, crescent, food, french, roll",,Miriam Vollmeier,2018-04-18,,,,,3,3693
+🥖,1F956,food-drink,food-prepared,baguette bread,"baguette, bread, food, french",,Miriam Vollmeier,2018-04-18,,,,,3,3694
+🫓,1FAD3,food-drink,food-prepared,flatbread,"arepa, bread, food, gordita, lavash, naan, pita",,Liz Bravo,2020-03-03,,,,,13,3695
+🥨,1F968,food-drink,food-prepared,pretzel,"convoluted, twisted",,Miriam Vollmeier,2018-04-18,,,,,5,3696
+🥯,1F96F,food-drink,food-prepared,bagel,"bakery, bread, breakfast, schmear",,Ricarda Krejci,2019-05-07,,,,,11,3697
+🥞,1F95E,food-drink,food-prepared,pancakes,"breakfast, crêpe, food, hotcake, pancake",,Ricarda Krejci,2019-05-07,,,,,3,3698
+🧇,1F9C7,food-drink,food-prepared,waffle,"breakfast, indecisive, iron",,Liz Bravo,2021-04-28,,,,,12,3699
+🧀,1F9C0,food-drink,food-prepared,cheese wedge,"cheese, wedge",,Miriam Vollmeier,2018-04-18,,,,,1,3700
+🍖,1F356,food-drink,food-prepared,meat on bone,"bone, meat",,Miriam Vollmeier,2018-04-18,,,,,0.6,3701
+🍗,1F357,food-drink,food-prepared,poultry leg,"bone, chicken, drumstick, hungry, leg, poultry, turkey",,Miriam Vollmeier,2018-04-18,,,,,0.6,3702
+🥩,1F969,food-drink,food-prepared,cut of meat,"chop, cut, lambchop, meat, porkchop, red, steak",,Miriam Vollmeier,2018-04-18,,,,,5,3703
+🥓,1F953,food-drink,food-prepared,bacon,"breakfast, food, meat",,Miriam Vollmeier,2018-04-18,,,,,3,3704
+🍔,1F354,food-drink,food-prepared,hamburger,"burger, eat, fast, food, hungry",,Miriam Vollmeier,2018-04-18,,,,,0.6,3705
+🍟,1F35F,food-drink,food-prepared,french fries,"fast, food, french, fries",,Miriam Vollmeier,2018-04-18,,,,,0.6,3706
+🍕,1F355,food-drink,food-prepared,pizza,"cheese, food, hungry, pepperoni, slice",,Miriam Vollmeier,2018-04-18,,,,,0.6,3707
+🌭,1F32D,food-drink,food-prepared,hot dog,"dog, frankfurter, hot, hotdog, sausage",,Miriam Vollmeier,2018-04-18,,,,,1,3708
+🥪,1F96A,food-drink,food-prepared,sandwich,bread,,Miriam Vollmeier,2018-04-18,,,,,5,3709
+🌮,1F32E,food-drink,food-prepared,taco,mexican,,Miriam Vollmeier,2018-04-18,,,,,1,3710
+🌯,1F32F,food-drink,food-prepared,burrito,"mexican, wrap",,Miriam Vollmeier,2018-04-18,,,,,1,3711
+🫔,1FAD4,food-drink,food-prepared,tamale,"food, mexican, pamonha, wrapped",,Liz Bravo,2020-03-03,,,,,13,3712
+🥙,1F959,food-drink,food-prepared,stuffed flatbread,"falafel, flatbread, food, gyro, kebab, stuffed",,Ricarda Krejci,2019-05-07,,,,,3,3713
+🧆,1F9C6,food-drink,food-prepared,falafel,"chickpea, meatball",,Corvin Kraasch,2020-03-06,,,,,12,3714
+🥚,1F95A,food-drink,food-prepared,egg,"breakfast, food",,Niklas Kuntz,2022-07-01,,,,,3,3715
+🍳,1F373,food-drink,food-prepared,cooking,"breakfast, easy, egg, fry, frying, over, pan, restaurant, side, sunny, up",,Miriam Vollmeier,2018-04-18,,,,,0.6,3716
+🥘,1F958,food-drink,food-prepared,shallow pan of food,"casserole, food, paella, pan, shallow",,Ricarda Krejci,2019-05-07,,,,,3,3717
+🍲,1F372,food-drink,food-prepared,pot of food,"food, pot, soup, stew",,Miriam Vollmeier,2018-04-18,,,,,0.6,3718
+🫕,1FAD5,food-drink,food-prepared,fondue,"cheese, chocolate, food, melted, pot, ski",,Liz Bravo,2020-07-21,,,,,13,3719
+🥣,1F963,food-drink,food-prepared,bowl with spoon,"bowl, breakfast, cereal, congee, oatmeal, porridge, spoon",,Liz Bravo,2020-12-22,,,,,5,3720
+🥗,1F957,food-drink,food-prepared,green salad,"food, green, salad",,Ricarda Krejci,2019-05-07,,,,,3,3721
+🍿,1F37F,food-drink,food-prepared,popcorn,"corn, movie, pop",,Miriam Vollmeier,2018-04-18,,,,,1,3722
+🧈,1F9C8,food-drink,food-prepared,butter,dairy,,Evelyn Soos,2019-05-04,,,,,12,3723
+🧂,1F9C2,food-drink,food-prepared,salt,"condiment, flavor, mad, salty, shaker, taste, upset",,Ricarda Krejci,2019-05-07,,,,,11,3724
+🥫,1F96B,food-drink,food-prepared,canned food,"can, canned, food",,Daniel Quiros,2018-11-16,,,,,5,3725
+🍱,1F371,food-drink,food-asian,bento box,"bento, box, food",,Miriam Vollmeier,2018-04-18,,,,,0.6,3726
+🍘,1F358,food-drink,food-asian,rice cracker,"cracker, food, rice",,Miriam Vollmeier,2018-04-18,,,,,0.6,3727
+🍙,1F359,food-drink,food-asian,rice ball,"ball, food, japanese, rice",,Miriam Vollmeier,2018-04-18,,,,,0.6,3728
+🍚,1F35A,food-drink,food-asian,cooked rice,"cooked, food, rice",,Miriam Vollmeier,2018-04-18,,,,,0.6,3729
+🍛,1F35B,food-drink,food-asian,curry rice,"curry, food, rice",,Ricarda Krejci,2019-05-07,,,,,0.6,3730
+🍜,1F35C,food-drink,food-asian,steaming bowl,"bowl, chopsticks, food, noodle, pho, ramen, soup, steaming",,Hend Hourani,2018-11-16,,,,,0.6,3731
+🍝,1F35D,food-drink,food-asian,spaghetti,"food, meatballs, pasta, restaurant",,Liz Bravo,2021-05-04,,,,,0.6,3732
+🍠,1F360,food-drink,food-asian,roasted sweet potato,"food, potato, roasted, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3733
+🍢,1F362,food-drink,food-asian,oden,"food, kebab, restaurant, seafood, skewer, stick",,Miriam Vollmeier,2018-04-18,,,,,0.6,3734
+🍣,1F363,food-drink,food-asian,sushi,food,,Miriam Vollmeier,2018-04-18,,,,,0.6,3735
+🍤,1F364,food-drink,food-asian,fried shrimp,"fried, prawn, shrimp, tempura",,Miriam Vollmeier,2018-04-18,,,,,0.6,3736
+🍥,1F365,food-drink,food-asian,fish cake with swirl,"cake, fish, food, pastry, restaurant, swirl",,Hend Hourani,2018-11-16,,,,,0.6,3737
+🥮,1F96E,food-drink,food-asian,moon cake,"autumn, cake, festival, moon, yuèbǐng",,Ricarda Krejci,2019-05-07,,,,,11,3738
+🍡,1F361,food-drink,food-asian,dango,"dessert, japanese, skewer, stick, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3739
+🥟,1F95F,food-drink,food-asian,dumpling,"empanada, gyōza, jiaozi, pierogi, potsticker",,Ricarda Krejci,2019-05-07,,,,,5,3740
+🥠,1F960,food-drink,food-asian,fortune cookie,"cookie, fortune, prophecy",,Ricarda Krejci,2019-05-07,,,,,5,3741
+🥡,1F961,food-drink,food-asian,takeout box,"box, chopsticks, delivery, food, oyster, pail, takeout",,Daniel Quiros,2018-11-16,,,,,5,3742
+🍦,1F366,food-drink,food-sweet,soft ice cream,"cream, dessert, food, ice, icecream, restaurant, serve, soft, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3743
+🍧,1F367,food-drink,food-sweet,shaved ice,"dessert, ice, restaurant, shaved, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3744
+🍨,1F368,food-drink,food-sweet,ice cream,"cream, dessert, food, ice, restaurant, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3745
+🍩,1F369,food-drink,food-sweet,doughnut,"breakfast, dessert, donut, food, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3746
+🍪,1F36A,food-drink,food-sweet,cookie,"chip, chocolate, dessert, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3747
+🎂,1F382,food-drink,food-sweet,birthday cake,"bday, birthday, cake, celebration, dessert, happy, pastry, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3748
+🍰,1F370,food-drink,food-sweet,shortcake,"cake, dessert, pastry, slice, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3749
+🧁,1F9C1,food-drink,food-sweet,cupcake,"bakery, dessert, sprinkles, sugar, sweet, treat",,Jonas Dunkel,2019-05-07,,,,,11,3750
+🥧,1F967,food-drink,food-sweet,pie,"apple, filling, fruit, meat, pastry, pumpkin, slice",,Miriam Vollmeier,2018-04-18,,,,,5,3751
+🍫,1F36B,food-drink,food-sweet,chocolate bar,"bar, candy, chocolate, dessert, halloween, sweet, tooth",,Miriam Vollmeier,2018-04-18,,,,,0.6,3752
+🍬,1F36C,food-drink,food-sweet,candy,"cavities, dessert, halloween, restaurant, sweet, tooth, wrapper",,Miriam Vollmeier,2018-04-18,,,,,0.6,3753
+🍭,1F36D,food-drink,food-sweet,lollipop,"candy, dessert, food, restaurant, sweet",,Carlin MacKenzie,2020-05-20,,,,,0.6,3754
+🍮,1F36E,food-drink,food-sweet,custard,"dessert, pudding, sweet",,Liz Bravo,2021-05-04,,,,,0.6,3755
+🍯,1F36F,food-drink,food-sweet,honey pot,"barrel, bear, food, honey, honeypot, jar, pot, sweet",,Miriam Vollmeier,2018-04-18,,,,,0.6,3756
+🍼,1F37C,food-drink,drink,baby bottle,"babies, baby, birth, born, bottle, drink, infant, milk, newborn",,Laura Humpfer,2018-04-18,,,,,1,3757
+🥛,1F95B,food-drink,drink,glass of milk,"drink, glass, milk",,Laura Humpfer,2018-04-18,,,,,3,3758
+☕️,2615,food-drink,drink,hot beverage,"beverage, cafe, caffeine, chai, coffee, drink, hot, morning, steaming, tea",,Alexander Müller,2020-05-11,,,,,0.6,3759
+🫖,1FAD6,food-drink,drink,teapot,"brew, drink, food, pot, tea",,Andrew Luckett,2023-05-16,,,,,13,3760
+🍵,1F375,food-drink,drink,teacup without handle,"beverage, cup, drink, handle, oolong, tea, teacup",,Laura Humpfer,2018-04-18,,,,,0.6,3761
+🍶,1F376,food-drink,drink,sake,"bar, beverage, bottle, cup, drink, restaurant",,Laura Humpfer,2018-04-18,,,,,0.6,3762
+🍾,1F37E,food-drink,drink,bottle with popping cork,"bar, bottle, cork, drink, popping",,Laura Humpfer,2018-04-18,,,,,1,3763
+🍷,1F377,food-drink,drink,wine glass,"alcohol, bar, beverage, booze, club, drink, drinking, drinks, glass, restaurant, wine",,Laura Humpfer,2018-04-18,,,,,0.6,3764
+🍸️,1F378,food-drink,drink,cocktail glass,"alcohol, bar, booze, club, cocktail, drink, drinking, drinks, glass, mad, martini, men",,Laura Humpfer,2018-04-18,,,,,0.6,3765
+🍹,1F379,food-drink,drink,tropical drink,"alcohol, bar, booze, club, cocktail, drink, drinking, drinks, drunk, mai, party, tai, tropical, tropics",,Laura Humpfer,2018-04-18,,,,,0.6,3766
+🍺,1F37A,food-drink,drink,beer mug,"alcohol, ale, bar, beer, booze, drink, drinking, drinks, mug, octoberfest, oktoberfest, pint, stein, summer",,Laura Humpfer,2018-04-18,,,,,0.6,3767
+🍻,1F37B,food-drink,drink,clinking beer mugs,"alcohol, bar, beer, booze, bottoms, cheers, clink, clinking, drinking, drinks, mugs",,Laura Humpfer,2018-04-18,,,,,0.6,3768
+🥂,1F942,food-drink,drink,clinking glasses,"celebrate, clink, clinking, drink, glass, glasses",,Laura Humpfer,2018-04-18,,,,,3,3769
+🥃,1F943,food-drink,drink,tumbler glass,"glass, liquor, scotch, shot, tumbler, whiskey, whisky",,Laura Humpfer,2018-04-18,,,,,3,3770
+🫗,1FAD7,food-drink,drink,pouring liquid,"accident, drink, empty, glass, liquid, oops, pour, pouring, spill, water",,Klara Schöninger,2022-05-09,,,,,14,3771
+🥤,1F964,food-drink,drink,cup with straw,"cup, drink, juice, malt, soda, soft, straw, water",,Laura Humpfer,2018-04-18,,,,,5,3772
+🧋,1F9CB,food-drink,drink,bubble tea,"boba, bubble, food, milk, pearl, tea",,Liz Bravo,2020-07-21,,,,,13,3773
+🧃,1F9C3,food-drink,drink,beverage box,"beverage, box, juice, straw, sweet",,Evelyn Soos,2019-05-04,,,,,12,3774
+🧉,1F9C9,food-drink,drink,mate,drink,,Evelyn Soos,2019-05-04,,,,,12,3775
+🧊,1F9CA,food-drink,drink,ice,"cold, cube, iceberg",,Evelyn Soos,2019-05-04,,,,,12,3776
+🥢,1F962,food-drink,dishware,chopsticks,"hashi, jeotgarak, kuaizi",,Jonas Roßner,2018-04-18,,,,,5,3777
+🍽️,1F37D,food-drink,dishware,fork and knife with plate,"cooking, dinner, eat, fork, knife, plate",,Jonas Roßner,2018-04-18,,,,,0.7,3779
+🍴,1F374,food-drink,dishware,fork and knife,"breakfast, breaky, cooking, cutlery, delicious, dinner, eat, feed, food, fork, hungry, knife, lunch, restaurant, yum, yummy",,Jonas Roßner,2018-04-18,,,,,0.6,3780
+🥄,1F944,food-drink,dishware,spoon,"eat, tableware",,Jonas Roßner,2018-04-18,,,,,3,3781
+🔪,1F52A,food-drink,dishware,kitchen knife,"chef, cooking, hocho, kitchen, knife, tool, weapon",,Jonas Roßner,2018-04-18,,,,,0.6,3782
+🫙,1FAD9,food-drink,dishware,jar,"condiment, container, empty, nothing, sauce, store",,Alexander Müller,2021-05-09,,,,,14,3783
+🏺,1F3FA,food-drink,dishware,amphora,"aquarius, cooking, drink, jug, tool, weapon, zodiac",,Liz Bravo,2020-12-22,,,,,1,3784
+🌍️,1F30D,travel-places,place-map,globe showing Europe-Africa,"africa, earth, europe, europe-africa, globe, showing, world",,Martin Wehl,2018-04-18,,,,,0.7,3785
+🌎️,1F30E,travel-places,place-map,globe showing Americas,"americas, earth, globe, showing, world",,Martin Wehl,2018-04-18,,,,,0.7,3786
+🌏️,1F30F,travel-places,place-map,globe showing Asia-Australia,"asia, asia-australia, australia, earth, globe, showing, world",,Martin Wehl,2018-04-18,,,,,0.6,3787
+🌐,1F310,travel-places,place-map,globe with meridians,"earth, globe, internet, meridians, web, world, worldwide",,Martin Wehl,2018-04-18,,,,,1,3788
+🗺️,1F5FA,travel-places,place-map,world map,"map, world",,Martin Wehl,2018-04-18,,,,,0.7,3790
+🗾,1F5FE,travel-places,place-map,map of Japan,"japan, map",,Louisa Mantsch,2018-11-16,,,,,0.6,3791
+🧭,1F9ED,travel-places,place-map,compass,"direction, magnetic, navigation, orienteering",,Kai Magnus Müller,2018-04-18,,,,,11,3792
+🏔️,1F3D4,travel-places,place-geographic,snow-capped mountain,"cold, mountain, snow, snow-capped",,Martin Wehl,2018-04-18,,,,,0.7,3794
+⛰️,26F0,travel-places,place-geographic,mountain,mountain,,Martin Wehl,2018-04-18,,,,,0.7,3796
+🌋,1F30B,travel-places,place-geographic,volcano,"eruption, mountain, nature",,Guemil Project,2019-01-14,,,,,0.6,3797
+🗻,1F5FB,travel-places,place-geographic,mount fuji,"fuji, mount, mountain, nature",,Martin Wehl,2018-04-18,,,,,0.6,3798
+🏕️,1F3D5,travel-places,place-geographic,camping,camping,,Martin Wehl,2018-04-18,,,,,0.7,3800
+🏖️,1F3D6,travel-places,place-geographic,beach with umbrella,"beach, umbrella",,Martin Wehl,2018-04-18,,,,,0.7,3802
+🏜️,1F3DC,travel-places,place-geographic,desert,desert,,Martin Wehl,2018-04-18,,,,,0.7,3804
+🏝️,1F3DD,travel-places,place-geographic,desert island,"desert, island",,Martin Wehl,2018-04-18,,,,,0.7,3806
+🏞️,1F3DE,travel-places,place-geographic,national park,"national, park",,Martin Wehl,2018-04-18,,,,,0.7,3808
+🏟️,1F3DF,travel-places,place-building,stadium,stadium,,Martin Wehl,2018-04-18,,,,,0.7,3810
+🏛️,1F3DB,travel-places,place-building,classical building,"building, classical",,Martin Wehl,2018-04-18,,,,,0.7,3812
+🏗️,1F3D7,travel-places,place-building,building construction,"building, construction, crane",,Martin Wehl,2018-04-18,,,,,0.7,3814
+🧱,1F9F1,travel-places,place-building,brick,"bricks, clay, mortar, wall",,Jonas Dunkel,2019-05-07,,,,,11,3815
+🪨,1FAA8,travel-places,place-building,rock,"boulder, heavy, solid, stone, tough",,Liz Bravo,2020-10-07,,,,,13,3816
+🪵,1FAB5,travel-places,place-building,wood,"log, lumber, timber",,Liz Bravo,2020-09-26,,,,,13,3817
+🛖,1F6D6,travel-places,place-building,hut,"home, house, roundhouse, shelter, yurt",,Liz Bravo,2020-09-26,,,,,13,3818
+🏘️,1F3D8,travel-places,place-building,houses,house,,Martin Wehl,2018-04-18,,,,,0.7,3820
+🏚️,1F3DA,travel-places,place-building,derelict house,"derelict, home, house",,Martin Wehl,2018-04-18,,,,,0.7,3822
+🏠️,1F3E0,travel-places,place-building,house,"building, country, heart, home, ranch, settle, simple, suburban, suburbia, where",,Martin Wehl,2018-04-18,,,,,0.6,3823
+🏡,1F3E1,travel-places,place-building,house with garden,"building, country, garden, heart, home, house, ranch, settle, simple, suburban, suburbia, where",,Martin Wehl,2018-04-18,,,,,0.6,3824
+🏢,1F3E2,travel-places,place-building,office building,"building, city, cubical, job, office",,Martin Wehl,2018-04-18,,,,,0.6,3825
+🏣,1F3E3,travel-places,place-building,Japanese post office,"building, japanese, office, post",,Martin Wehl,2018-04-18,,,,,0.6,3826
+🏤,1F3E4,travel-places,place-building,post office,"building, european, office, post",,Martin Wehl,2018-04-18,,,,,1,3827
+🏥,1F3E5,travel-places,place-building,hospital,"building, doctor, medicine",,Martin Wehl,2018-04-18,,,,,0.6,3828
+🏦,1F3E6,travel-places,place-building,bank,building,,Martin Wehl,2018-04-18,,,,,0.6,3829
+🏨,1F3E8,travel-places,place-building,hotel,building,,Martin Wehl,2018-04-18,,,,,0.6,3830
+🏩,1F3E9,travel-places,place-building,love hotel,"building, hotel, love",,Martin Wehl,2018-04-18,,,,,0.6,3831
+🏪,1F3EA,travel-places,place-building,convenience store,"24, building, convenience, hours, store",,Martin Wehl,2018-04-18,,,,,0.6,3832
+🏫,1F3EB,travel-places,place-building,school,building,,Niklas Kuntz,2022-07-01,,,,,0.6,3833
+🏬,1F3EC,travel-places,place-building,department store,"building, department, store",,Martin Wehl,2018-04-18,,,,,0.6,3834
+🏭️,1F3ED,travel-places,place-building,factory,building,,Martin Wehl,2018-04-18,,,,,0.6,3835
+🏯,1F3EF,travel-places,place-building,Japanese castle,"building, castle, japanese",,Martin Wehl,2018-04-18,,,,,0.6,3836
+🏰,1F3F0,travel-places,place-building,castle,"building, european",,Martin Wehl,2018-04-18,,,,,0.6,3837
+💒,1F492,travel-places,place-building,wedding,"chapel, hitched, nuptials, romance",,Martin Wehl,2018-04-18,,,,,0.6,3838
+🗼,1F5FC,travel-places,place-building,Tokyo tower,"tokyo, tower",,Louisa Mantsch,2018-11-16,,,,,0.6,3839
+🗽,1F5FD,travel-places,place-building,Statue of Liberty,"liberty, new, ny, nyc, statue, york",,Louisa Mantsch,2018-11-16,,,,,0.6,3840
+⛪️,26EA,travel-places,place-religious,church,"bless, chapel, christian, cross, religion",,Martin Wehl,2018-04-18,,,,,0.6,3841
+🕌,1F54C,travel-places,place-religious,mosque,"islam, masjid, muslim, religion",,Liz Bravo,2020-12-22,,,,,1,3842
+🛕,1F6D5,travel-places,place-religious,hindu temple,"hindu, temple",,Evelyn Soos,2019-05-04,,,,,12,3843
+🕍,1F54D,travel-places,place-religious,synagogue,"jew, jewish, judaism, religion, temple",,Martin Wehl,2018-04-18,,,,,1,3844
+⛩️,26E9,travel-places,place-religious,shinto shrine,"religion, shinto, shrine",,Martin Wehl,2018-04-18,,,,,0.7,3846
+🕋,1F54B,travel-places,place-religious,kaaba,"hajj, islam, muslim, religion, umrah",,Martin Wehl,2018-04-18,,,,,1,3847
+⛲️,26F2,travel-places,place-other,fountain,fountain,,Louisa Mantsch,2018-11-16,,,,,0.6,3848
+⛺️,26FA,travel-places,place-other,tent,camping,,Martin Wehl,2018-04-18,,,,,0.6,3849
+🌁,1F301,travel-places,place-other,foggy,fog,,Nelly Nieter,2021-04-23,,,,,0.6,3850
+🌃,1F303,travel-places,place-other,night with stars,"night, star, stars",,Louisa Mantsch,2018-11-16,,,,,0.6,3851
+🏙️,1F3D9,travel-places,place-other,cityscape,city,,Martin Wehl,2018-04-18,,,,,0.7,3853
+🌄,1F304,travel-places,place-other,sunrise over mountains,"morning, mountains, over, sun, sunrise",,Louisa Mantsch,2018-11-16,,,,,0.6,3854
+🌅,1F305,travel-places,place-other,sunrise,"morning, nature, sun",,Louisa Mantsch,2018-11-16,,,,,0.6,3855
+🌆,1F306,travel-places,place-other,cityscape at dusk,"at, building, city, cityscape, dusk, evening, landscape, sun, sunset",,Louisa Mantsch,2018-11-16,,,,,0.6,3856
+🌇,1F307,travel-places,place-other,sunset,"building, dusk, sun",,Louisa Mantsch,2018-11-16,,,,,0.6,3857
+🌉,1F309,travel-places,place-other,bridge at night,"at, bridge, night",,Jonas Dunkel,2019-05-07,,,,,0.6,3858
+♨️,2668,travel-places,place-other,hot springs,"hot, hotsprings, springs, steaming",,Louisa Mantsch,2018-11-16,,,,,0.6,3860
+🎠,1F3A0,travel-places,place-other,carousel horse,"carousel, entertainment, horse",,Louisa Mantsch,2018-11-16,,,,,0.6,3861
+🛝,1F6DD,travel-places,place-other,playground slide,"amusement, park, play, playground, playing, slide, sliding, theme",,Niklas Kuntz,2022-05-09,,,,,14,3862
+🎡,1F3A1,travel-places,place-other,ferris wheel,"amusement, ferris, park, theme, wheel",,Louisa Mantsch,2018-11-16,,,,,0.6,3863
+🎢,1F3A2,travel-places,place-other,roller coaster,"amusement, coaster, park, roller, theme",,Louisa Mantsch,2018-11-16,,,,,0.6,3864
+💈,1F488,travel-places,place-other,barber pole,"barber, cut, fresh, haircut, pole, shave",,Martin Wehl,2018-04-18,,,,,0.6,3865
+🎪,1F3AA,travel-places,place-other,circus tent,"circus, tent",,Martin Wehl,2018-04-18,,,,,0.6,3866
+🚂,1F682,travel-places,transport-ground,locomotive,"caboose, engine, railway, steam, train, trains, travel",,Ronja Bäurlen,2018-04-18,,,,,1,3867
+🚃,1F683,travel-places,transport-ground,railway car,"car, electric, railway, train, tram, travel, trolleybus",,Liz Bravo,2020-12-22,,,,,0.6,3868
+🚄,1F684,travel-places,transport-ground,high-speed train,"high-speed, railway, shinkansen, speed, train",,Jonas Dunkel,2019-05-07,,,,,0.6,3869
+🚅,1F685,travel-places,transport-ground,bullet train,"bullet, high-speed, nose, railway, shinkansen, speed, train, travel",,Ronja Bäurlen,2018-04-18,,,,,0.6,3870
+🚆,1F686,travel-places,transport-ground,train,"arrived, choo, railway",,Nadja Grün,2018-11-16,,,,,1,3871
+🚇️,1F687,travel-places,transport-ground,metro,"subway, travel",,Nadja Grün,2018-11-16,,,,,0.6,3872
+🚈,1F688,travel-places,transport-ground,light rail,"arrived, light, monorail, rail, railway",,Nadja Grün,2018-11-16,,,,,1,3873
+🚉,1F689,travel-places,transport-ground,station,"railway, train",,Ronja Bäurlen,2018-04-18,,,,,0.6,3874
+🚊,1F68A,travel-places,transport-ground,tram,trolleybus,,Nadja Grün,2018-11-16,,,,,1,3875
+🚝,1F69D,travel-places,transport-ground,monorail,vehicle,,Ronja Bäurlen,2018-04-18,,,,,1,3876
+🚞,1F69E,travel-places,transport-ground,mountain railway,"car, mountain, railway, trip",,Nadja Grün,2018-11-16,,,,,1,3877
+🚋,1F68B,travel-places,transport-ground,tram car,"bus, car, tram, trolley, trolleybus",,Nadja Grün,2018-11-16,,,,,1,3878
+🚌,1F68C,travel-places,transport-ground,bus,"school, vehicle",,Ronja Bäurlen,2018-04-18,,,,,0.6,3879
+🚍️,1F68D,travel-places,transport-ground,oncoming bus,"bus, cars, oncoming",,Nadja Grün,2018-11-16,,,,,0.7,3880
+🚎,1F68E,travel-places,transport-ground,trolleybus,"bus, tram, trolley",,Nadja Grün,2018-11-16,,,,,1,3881
+🚐,1F690,travel-places,transport-ground,minibus,"bus, drive, van, vehicle",,Ronja Bäurlen,2018-04-18,,,,,1,3882
+🚑️,1F691,travel-places,transport-ground,ambulance,"emergency, vehicle",,Ronja Bäurlen,2018-04-18,,,,,0.6,3883
+🚒,1F692,travel-places,transport-ground,fire engine,"engine, fire, truck",,Ronja Bäurlen,2018-04-18,,,,,0.6,3884
+🚓,1F693,travel-places,transport-ground,police car,"5–0, car, cops, patrol, police",,Ronja Bäurlen,2018-04-18,,,,,0.6,3885
+🚔️,1F694,travel-places,transport-ground,oncoming police car,"car, oncoming, police",,Nadja Grün,2018-11-16,,,,,0.7,3886
+🚕,1F695,travel-places,transport-ground,taxi,"cab, cabbie, car, drive, vehicle, yellow",,Ronja Bäurlen,2018-04-18,,,,,0.6,3887
+🚖,1F696,travel-places,transport-ground,oncoming taxi,"cab, cabbie, cars, drove, hail, oncoming, taxi, yellow",,Nadja Grün,2018-11-16,,,,,1,3888
+🚗,1F697,travel-places,transport-ground,automobile,"car, driving, vehicle",,Ronja Bäurlen,2018-04-18,,,,,0.6,3889
+🚘️,1F698,travel-places,transport-ground,oncoming automobile,"automobile, car, cars, drove, oncoming, vehicle",,Nadja Grün,2018-11-16,,,,,0.7,3890
+🚙,1F699,travel-places,transport-ground,sport utility vehicle,"car, drive, recreational, sport, sportutility, utility, vehicle",,Ronja Bäurlen,2018-04-18,,,,,0.6,3891
+🛻,1F6FB,travel-places,transport-ground,pickup truck,"automobile, car, flatbed, pick-up, pickup, transportation, truck",,Liz Bravo,2020-03-07,,,,,13,3892
+🚚,1F69A,travel-places,transport-ground,delivery truck,"car, delivery, drive, truck, vehicle",,Ronja Bäurlen,2018-04-18,,,,,0.6,3893
+🚛,1F69B,travel-places,transport-ground,articulated lorry,"articulated, car, drive, lorry, move, semi, truck, vehicle",,Ronja Bäurlen,2018-04-18,,,,,1,3894
+🚜,1F69C,travel-places,transport-ground,tractor,vehicle,,Ronja Bäurlen,2018-04-18,,,,,1,3895
+🏎️,1F3CE,travel-places,transport-ground,racing car,"car, racing, zoom",,Johanna Wellnitz,2018-04-18,,,,,0.7,3897
+🏍️,1F3CD,travel-places,transport-ground,motorcycle,racing,,Johanna Wellnitz,2018-04-18,,,,,0.7,3899
+🛵,1F6F5,travel-places,transport-ground,motor scooter,"motor, scooter",,Ronja Bäurlen,2018-04-18,,,,,3,3900
+🦽,1F9BD,travel-places,transport-ground,manual wheelchair,"accessibility, manual, wheelchair",,Evelyn Soos,2019-05-04,,,,,12,3901
+🦼,1F9BC,travel-places,transport-ground,motorized wheelchair,"accessibility, motorized, wheelchair",,Evelyn Soos,2019-05-04,,,,,12,3902
+🛺,1F6FA,travel-places,transport-ground,auto rickshaw,"auto, rickshaw, tuk",,Evelyn Soos,2019-05-04,,,,,12,3903
+🚲️,1F6B2,travel-places,transport-ground,bicycle,"bike, class, cycle, cycling, cyclist, gang, ride, spin, spinning",,Ronja Bäurlen,2018-04-18,,,,,0.6,3904
+🛴,1F6F4,travel-places,transport-ground,kick scooter,"kick, scooter",,Ronja Bäurlen,2018-04-18,,,,,3,3905
+🛹,1F6F9,travel-places,transport-ground,skateboard,"board, skate, skater, wheels",,Jonas Dunkel,2019-05-07,,,,,11,3906
+🛼,1F6FC,travel-places,transport-ground,roller skate,"blades, roller, skate, skates, sport",,Liz Bravo,2020-03-11,,,,,13,3907
+🚏,1F68F,travel-places,transport-ground,bus stop,"bus, busstop, stop",,Ronja Bäurlen,2018-04-18,,,,,0.6,3908
+🛣️,1F6E3,travel-places,transport-ground,motorway,"highway, road",,Nadja Grün,2018-11-16,,,,,0.7,3910
+🛤️,1F6E4,travel-places,transport-ground,railway track,"railway, track, train",,Nadja Grün,2018-11-16,,,,,0.7,3912
+🛢️,1F6E2,travel-places,transport-ground,oil drum,"drum, oil",,Nadja Grün,2018-11-16,,,,,0.7,3914
+⛽️,26FD,travel-places,transport-ground,fuel pump,"diesel, fuel, fuelpump, gas, gasoline, pump, station",,Ronja Bäurlen,2018-04-18,,,,,0.6,3915
+🛞,1F6DE,travel-places,transport-ground,wheel,"car, circle, tire, turn, vehicle",,Niklas Kuntz,2022-05-09,,,,,14,3916
+🚨,1F6A8,travel-places,transport-ground,police car light,"alarm, alert, beacon, car, emergency, light, police, revolving, siren",,Nadja Grün,2018-11-16,,,,,0.6,3917
+🚥,1F6A5,travel-places,transport-ground,horizontal traffic light,"horizontal, intersection, light, signal, stop, stoplight, traffic",,Ronja Bäurlen,2018-04-18,,,,,0.6,3918
+🚦,1F6A6,travel-places,transport-ground,vertical traffic light,"drove, intersection, light, signal, stop, stoplight, traffic, vertical",,Ronja Bäurlen,2018-04-18,,,,,1,3919
+🛑,1F6D1,travel-places,transport-ground,stop sign,"octagonal, sign, stop",,Ronja Bäurlen,2018-04-18,,,,,3,3920
+🚧,1F6A7,travel-places,transport-ground,construction,barrier,,Carlin MacKenzie,2020-09-13,,,,,0.6,3921
+⚓️,2693,travel-places,transport-water,anchor,"ship, tool",,Ronja Bäurlen,2018-04-18,,,,,0.6,3922
+🛟,1F6DF,travel-places,transport-water,ring buoy,"buoy, float, life, lifesaver, preserver, rescue, ring, safety, save, saver, swim",,Liz Bravo,2022-02-10,,,,,14,3923
+⛵️,26F5,travel-places,transport-water,sailboat,"boat, resort, sailing, sea, yacht",,Ronja Bäurlen,2018-04-18,,,,,0.6,3924
+🛶,1F6F6,travel-places,transport-water,canoe,boat,,Jonas Dunkel,2019-05-07,,,,,3,3925
+🚤,1F6A4,travel-places,transport-water,speedboat,"billionaire, boat, lake, luxury, millionaire, summer, travel",,Ronja Bäurlen,2018-04-18,,,,,0.6,3926
+🛳️,1F6F3,travel-places,transport-water,passenger ship,"passenger, ship",,Ronja Bäurlen,2018-04-18,,,,,0.7,3928
+⛴️,26F4,travel-places,transport-water,ferry,"boat, passenger",,Lois Proksch,2018-11-16,,,,,0.7,3930
+🛥️,1F6E5,travel-places,transport-water,motor boat,"boat, motor, motorboat",,Ronja Bäurlen,2018-04-18,,,,,0.7,3932
+🚢,1F6A2,travel-places,transport-water,ship,"boat, passenger, travel",,Ronja Bäurlen,2018-04-18,,,,,0.6,3933
+✈️,2708,travel-places,transport-air,airplane,"aeroplane, fly, flying, jet, plane, travel",,Ronja Bäurlen,2018-04-18,,,,,0.6,3935
+🛩️,1F6E9,travel-places,transport-air,small airplane,"aeroplane, airplane, plane, small",,Liz Bravo,2021-05-04,,,,,0.7,3937
+🛫,1F6EB,travel-places,transport-air,airplane departure,"aeroplane, airplane, check-in, departure, departures, plane",,Ronja Bäurlen,2018-04-18,,,,,1,3938
+🛬,1F6EC,travel-places,transport-air,airplane arrival,"aeroplane, airplane, arrival, arrivals, arriving, landing, plane",,Ronja Bäurlen,2018-04-18,,,,,1,3939
+🪂,1FA82,travel-places,transport-air,parachute,"hang-glide, parasail, skydive",,Evelyn Soos,2019-05-04,,,,,12,3940
+💺,1F4BA,travel-places,transport-air,seat,chair,,Ronja Bäurlen,2018-04-18,,,,,0.6,3941
+🚁,1F681,travel-places,transport-air,helicopter,"copter, roflcopter, travel, vehicle",,Ronja Bäurlen,2018-04-18,,,,,1,3942
+🚟,1F69F,travel-places,transport-air,suspension railway,"railway, suspension",,Lois Proksch,2018-11-16,,,,,1,3943
+🚠,1F6A0,travel-places,transport-air,mountain cableway,"cable, cableway, gondola, lift, mountain, ski",,Ronja Bäurlen,2018-04-18,,,,,1,3944
+🚡,1F6A1,travel-places,transport-air,aerial tramway,"aerial, cable, car, gondola, ropeway, tramway",,Lois Proksch,2018-11-16,,,,,1,3945
+🛰️,1F6F0,travel-places,transport-air,satellite,space,,Ronja Bäurlen,2018-04-18,,,,,0.7,3947
+🚀,1F680,travel-places,transport-air,rocket,"launch, rockets, space, travel",,Kris Kowal,2020-01-20,,,,,0.6,3948
+🛸,1F6F8,travel-places,transport-air,flying saucer,"aliens, extra, flying, saucer, terrestrial, ufo",,Ronja Bäurlen,2018-04-18,,,,,5,3949
+🛎️,1F6CE,travel-places,hotel,bellhop bell,"bell, bellhop, hotel",,Lois Proksch,2018-11-16,,,,,0.7,3951
+🧳,1F9F3,travel-places,hotel,luggage,"bag, packing, roller, suitcase, travel",,Jonas Dunkel,2019-05-07,,,,,11,3952
+⌛️,231B,travel-places,time,hourglass done,"done, hourglass, sand, time, timer",,Rana Cakir,2018-04-18,,,,,0.6,3953
+⏳️,23F3,travel-places,time,hourglass not done,"done, flowing, hourglass, hours, not, sand, timer, waiting, yolo",,Rana Cakir,2018-04-18,,,,,0.6,3954
+⌚️,231A,travel-places,time,watch,"clock, time",,Rana Cakir,2018-04-18,,,,,0.6,3955
+⏰️,23F0,travel-places,time,alarm clock,"alarm, clock, hours, hrs, late, time, waiting",,Rana Cakir,2018-04-18,,,,,0.6,3956
+⏱️,23F1,travel-places,time,stopwatch,"clock, time",,Rana Cakir,2018-04-18,,,,,1,3958
+⏲️,23F2,travel-places,time,timer clock,"clock, timer",,Rana Cakir,2018-04-18,,,,,1,3960
+🕰️,1F570,travel-places,time,mantelpiece clock,"clock, mantelpiece, time",,Lois Proksch,2018-11-16,,,,,0.7,3962
+🕛️,1F55B,travel-places,time,twelve o’clock,"12, 12:00, clock, o’clock, time, twelve",,Rana Cakir,2018-04-18,,,,,0.6,3963
+🕧️,1F567,travel-places,time,twelve-thirty,"12, 12:30, 30, clock, thirty, time, twelve",,Rana Cakir,2018-04-18,,,,,0.7,3964
+🕐️,1F550,travel-places,time,one o’clock,"1, 1:00, clock, one, o’clock, time",,Rana Cakir,2018-04-18,,,,,0.6,3965
+🕜️,1F55C,travel-places,time,one-thirty,"1, 1:30, 30, clock, one, thirty, time",,Rana Cakir,2018-04-18,,,,,0.7,3966
+🕑️,1F551,travel-places,time,two o’clock,"2, 2:00, clock, o’clock, time, two",,Rana Cakir,2018-04-18,,,,,0.6,3967
+🕝️,1F55D,travel-places,time,two-thirty,"2, 2:30, 30, clock, thirty, time, two",,Rana Cakir,2018-04-18,,,,,0.7,3968
+🕒️,1F552,travel-places,time,three o’clock,"3, 3:00, clock, o’clock, three, time",,Rana Cakir,2018-04-18,,,,,0.6,3969
+🕞️,1F55E,travel-places,time,three-thirty,"3, 30, 3:30, clock, thirty, three, time",,Rana Cakir,2018-04-18,,,,,0.7,3970
+🕓️,1F553,travel-places,time,four o’clock,"4, 4:00, clock, four, o’clock, time",,Rana Cakir,2018-04-18,,,,,0.6,3971
+🕟️,1F55F,travel-places,time,four-thirty,"30, 4, 4:30, clock, four, thirty, time",,Rana Cakir,2018-04-18,,,,,0.7,3972
+🕔️,1F554,travel-places,time,five o’clock,"5, 5:00, clock, five, o’clock, time",,Rana Cakir,2018-04-18,,,,,0.6,3973
+🕠️,1F560,travel-places,time,five-thirty,"30, 5, 5:30, clock, five, thirty, time",,Rana Cakir,2018-04-18,,,,,0.7,3974
+🕕️,1F555,travel-places,time,six o’clock,"6, 6:00, clock, o’clock, six, time",,Rana Cakir,2018-04-18,,,,,0.6,3975
+🕡️,1F561,travel-places,time,six-thirty,"30, 6, 6:30, clock, six, thirty",,Rana Cakir,2018-04-18,,,,,0.7,3976
+🕖️,1F556,travel-places,time,seven o’clock,"0, 7, 7:00, clock, o’clock, seven",,Rana Cakir,2018-04-18,,,,,0.6,3977
+🕢️,1F562,travel-places,time,seven-thirty,"30, 7, 7:30, clock, seven, thirty",,Rana Cakir,2018-04-18,,,,,0.7,3978
+🕗️,1F557,travel-places,time,eight o’clock,"8, 8:00, clock, eight, o’clock, time",,Rana Cakir,2018-04-18,,,,,0.6,3979
+🕣️,1F563,travel-places,time,eight-thirty,"30, 8, 8:30, clock, eight, thirty, time",,Rana Cakir,2018-04-18,,,,,0.7,3980
+🕘️,1F558,travel-places,time,nine o’clock,"9, 9:00, clock, nine, o’clock, time",,Rana Cakir,2018-04-18,,,,,0.6,3981
+🕤️,1F564,travel-places,time,nine-thirty,"30, 9, 9:30, clock, nine, thirty, time",,Rana Cakir,2018-04-18,,,,,0.7,3982
+🕙️,1F559,travel-places,time,ten o’clock,"0, 10, 10:00, clock, o’clock, ten",,Rana Cakir,2018-04-18,,,,,0.6,3983
+🕥️,1F565,travel-places,time,ten-thirty,"10, 10:30, 30, clock, ten, thirty, time",,Rana Cakir,2018-04-18,,,,,0.7,3984
+🕚️,1F55A,travel-places,time,eleven o’clock,"11, 11:00, clock, eleven, o’clock, time",,Rana Cakir,2018-04-18,,,,,0.6,3985
+🕦️,1F566,travel-places,time,eleven-thirty,"11, 11:30, 30, clock, eleven, thirty, time",,Rana Cakir,2018-04-18,,,,,0.7,3986
+🌑,1F311,travel-places,sky-weather,new moon,"dark, moon, new, space",,Lois Proksch,2018-11-16,,,,,0.6,3987
+🌒,1F312,travel-places,sky-weather,waxing crescent moon,"crescent, dreams, moon, space, waxing",,Lois Proksch,2018-11-16,,,,,1,3988
+🌓,1F313,travel-places,sky-weather,first quarter moon,"first, moon, quarter, space",,Lois Proksch,2018-11-16,,,,,0.6,3989
+🌔,1F314,travel-places,sky-weather,waxing gibbous moon,"gibbous, moon, space, waxing",,Lois Proksch,2018-11-16,,,,,0.6,3990
+🌕️,1F315,travel-places,sky-weather,full moon,"full, moon, space",,Lois Proksch,2018-11-16,,,,,0.6,3991
+🌖,1F316,travel-places,sky-weather,waning gibbous moon,"gibbous, moon, space, waning",,Lois Proksch,2018-11-16,,,,,1,3992
+🌗,1F317,travel-places,sky-weather,last quarter moon,"last, moon, quarter, space",,Lois Proksch,2018-11-16,,,,,1,3993
+🌘,1F318,travel-places,sky-weather,waning crescent moon,"crescent, moon, space, waning",,Lois Proksch,2018-11-16,,,,,1,3994
+🌙,1F319,travel-places,sky-weather,crescent moon,"crescent, moon, ramadan, space",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3995
+🌚,1F31A,travel-places,sky-weather,new moon face,"face, moon, new, space",,Lois Proksch,2018-11-16,,,,,1,3996
+🌛,1F31B,travel-places,sky-weather,first quarter moon face,"face, first, moon, quarter, space",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,3997
+🌜️,1F31C,travel-places,sky-weather,last quarter moon face,"dreams, face, last, moon, quarter",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,3998
+🌡️,1F321,travel-places,sky-weather,thermometer,weather,,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4000
+☀️,2600,travel-places,sky-weather,sun,"bright, rays, space, sunny, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4002
+🌝,1F31D,travel-places,sky-weather,full moon face,"bright, face, full, moon",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4003
+🌞,1F31E,travel-places,sky-weather,sun with face,"beach, bright, day, face, heat, shine, sun, sunny, sunshine, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4004
+🪐,1FA90,travel-places,sky-weather,ringed planet,"planet, ringed, saturn, saturnine",,Liz Bravo,2021-04-28,,,,,12,4005
+⭐️,2B50,travel-places,sky-weather,star,"astronomy, medium, stars, white",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4006
+🌟,1F31F,travel-places,sky-weather,glowing star,"glittery, glow, glowing, night, shining, sparkle, star, win",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4007
+🌠,1F320,travel-places,sky-weather,shooting star,"falling, night, shooting, space, star",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4008
+🌌,1F30C,travel-places,sky-weather,milky way,"milky, space, way",,Jonas Dunkel,2019-05-07,,,,,0.6,4009
+☁️,2601,travel-places,sky-weather,cloud,weather,,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4011
+⛅️,26C5,travel-places,sky-weather,sun behind cloud,"behind, cloud, cloudy, sun, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4012
+⛈️,26C8,travel-places,sky-weather,cloud with lightning and rain,"cloud, lightning, rain, thunder, thunderstorm",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4014
+🌤️,1F324,travel-places,sky-weather,sun behind small cloud,"behind, cloud, sun, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4016
+🌥️,1F325,travel-places,sky-weather,sun behind large cloud,"behind, cloud, sun, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4018
+🌦️,1F326,travel-places,sky-weather,sun behind rain cloud,"behind, cloud, rain, sun, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4020
+🌧️,1F327,travel-places,sky-weather,cloud with rain,"cloud, rain, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4022
+🌨️,1F328,travel-places,sky-weather,cloud with snow,"cloud, cold, snow, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4024
+🌩️,1F329,travel-places,sky-weather,cloud with lightning,"cloud, lightning, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4026
+🌪️,1F32A,travel-places,sky-weather,tornado,"cloud, weather, whirlwind",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4028
+🌫️,1F32B,travel-places,sky-weather,fog,"cloud, weather",,Nelly Nieter,2021-04-23,,,,,0.7,4030
+🌬️,1F32C,travel-places,sky-weather,wind face,"blow, cloud, face, wind",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4032
+🌀,1F300,travel-places,sky-weather,cyclone,"dizzy, hurricane, twister, typhoon, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4033
+🌈,1F308,travel-places,sky-weather,rainbow,"gay, genderqueer, glbt, glbtq, lesbian, lgbt, lgbtq, lgbtqia, nature, pride, queer, rain, trans, transgender, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4034
+🌂,1F302,travel-places,sky-weather,closed umbrella,"closed, clothing, rain, umbrella",,Carlin MacKenzie,2020-05-21,,,,,0.6,4035
+☂️,2602,travel-places,sky-weather,umbrella,"clothing, rain",,Vanessa Boutzikoudi,2018-04-18,,,,,0.7,4037
+☔️,2614,travel-places,sky-weather,umbrella with rain drops,"clothing, drop, drops, rain, umbrella, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4038
+⛱️,26F1,travel-places,sky-weather,umbrella on ground,"ground, rain, sun, umbrella",,Lois Proksch,2018-11-16,,,,,0.7,4040
+⚡️,26A1,travel-places,sky-weather,high voltage,"danger, electric, electricity, high, lightning, nature, thunder, thunderbolt, voltage, zap",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4041
+❄️,2744,travel-places,sky-weather,snowflake,"cold, snow, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4043
+☃️,2603,travel-places,sky-weather,snowman,"cold, man, snow",,Lois Proksch,2018-11-16,,,,,0.7,4045
+⛄️,26C4,travel-places,sky-weather,snowman without snow,"cold, man, snow, snowman",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4046
+☄️,2604,travel-places,sky-weather,comet,space,,Lois Proksch,2018-11-16,,,,,1,4048
+🔥,1F525,travel-places,sky-weather,fire,"af, burn, flame, hot, lit, litaf, tool",,Guemil Project,2019-01-14,,,,,0.6,4049
+💧,1F4A7,travel-places,sky-weather,droplet,"cold, comic, drop, nature, sad, sweat, tear, water, weather",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4050
+🌊,1F30A,travel-places,sky-weather,water wave,"nature, ocean, surf, surfer, surfing, water, wave",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4051
+🎃,1F383,activities,event,jack-o-lantern,"celebration, halloween, jack, lantern, pumpkin",,Laura Humpfer,2018-04-18,,,,,0.6,4052
+🎄,1F384,activities,event,Christmas tree,"celebration, christmas, tree",,Liz Bravo,2021-04-28,,,,,0.6,4053
+🎆,1F386,activities,event,fireworks,"boom, celebration, entertainment, yolo",,Jonas Dunkel,2019-05-07,,,,,0.6,4054
+🎇,1F387,activities,event,sparkler,"boom, celebration, fireworks, sparkle",,Jonas Dunkel,2019-05-07,,,,,0.6,4055
+🧨,1F9E8,activities,event,firecracker,"dynamite, explosive, fire, fireworks, light, pop, popping, spark",,Jonas Dunkel,2019-05-07,,,,,11,4056
+✨️,2728,activities,event,sparkles,"*, magic, sparkle, star",,Laura Humpfer,2018-04-18,,,,,0.6,4057
+🎈,1F388,activities,event,balloon,"birthday, celebrate, celebration",,Laura Humpfer,2018-04-18,,,,,0.6,4058
+🎉,1F389,activities,event,party popper,"awesome, birthday, celebrate, celebration, excited, hooray, party, popper, tada, woohoo",,Laura Humpfer,2018-04-18,,,,,0.6,4059
+🎊,1F38A,activities,event,confetti ball,"ball, celebrate, celebration, confetti, party, woohoo",,Laura Humpfer,2018-04-18,,,,,0.6,4060
+🎋,1F38B,activities,event,tanabata tree,"banner, celebration, japanese, tanabata, tree",,Laura Humpfer,2018-04-18,,,,,0.6,4061
+🎍,1F38D,activities,event,pine decoration,"bamboo, celebration, decoration, japanese, pine, plant",,Jonas Dunkel,2019-05-07,,,,,0.6,4062
+🎎,1F38E,activities,event,Japanese dolls,"celebration, doll, dolls, festival, japanese",,Liz Bravo,2021-05-04,,,,,0.6,4063
+🎏,1F38F,activities,event,carp streamer,"carp, celebration, streamer",,Jonas Dunkel,2019-05-07,,,,,0.6,4064
+🎐,1F390,activities,event,wind chime,"bell, celebration, chime, wind",,Jonas Dunkel,2019-05-07,,,,,0.6,4065
+🎑,1F391,activities,event,moon viewing ceremony,"celebration, ceremony, moon, viewing",,Jonas Dunkel,2019-05-07,,,,,0.6,4066
+🧧,1F9E7,activities,event,red envelope,"envelope, gift, good, hóngbāo, lai, luck, money, red, see",,Jonas Dunkel,2019-05-07,,,,,11,4067
+🎀,1F380,activities,event,ribbon,celebration,,Laura Humpfer,2018-04-18,,,,,0.6,4068
+🎁,1F381,activities,event,wrapped gift,"birthday, bow, box, celebration, christmas, gift, present, surprise, wrapped",,Laura Humpfer,2018-04-18,,,,,0.6,4069
+🎗️,1F397,activities,event,reminder ribbon,"celebration, reminder, ribbon",,Laura Humpfer,2018-04-18,,,,,0.7,4071
+🎟️,1F39F,activities,event,admission tickets,"admission, ticket, tickets",,Laura Humpfer,2018-04-18,,,,,0.7,4073
+🎫,1F3AB,activities,event,ticket,"admission, stub",,Laura Humpfer,2018-04-18,,,,,0.6,4074
+🎖️,1F396,activities,award-medal,military medal,"award, celebration, medal, military",,Julian Grüneberg,2018-04-18,,,,,0.7,4076
+🏆️,1F3C6,activities,award-medal,trophy,"champion, champs, prize, slay, sport, victory, win, winning",,Julian Grüneberg,2018-04-18,,,,,0.6,4077
+🏅,1F3C5,activities,award-medal,sports medal,"award, gold, medal, sports, winner",,Julian Grüneberg,2018-04-18,,,,,1,4078
+🥇,1F947,activities,award-medal,1st place medal,"1st, first, gold, medal, place",,Julian Grüneberg,2018-04-18,,,,,3,4079
+🥈,1F948,activities,award-medal,2nd place medal,"2nd, medal, place, second, silver",,Julian Grüneberg,2018-04-18,,,,,3,4080
+🥉,1F949,activities,award-medal,3rd place medal,"3rd, bronze, medal, place, third",,Julian Grüneberg,2018-04-18,,,,,3,4081
+⚽️,26BD,activities,sport,soccer ball,"ball, football, futbol, soccer, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4082
+⚾️,26BE,activities,sport,baseball,"ball, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4083
+🥎,1F94E,activities,sport,softball,"ball, glove, sports, underarm",,Jonas Dunkel,2019-05-07,,,,,11,4084
+🏀,1F3C0,activities,sport,basketball,"ball, hoop, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4085
+🏐,1F3D0,activities,sport,volleyball,"ball, game",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4086
+🏈,1F3C8,activities,sport,american football,"american, ball, bowl, football, sport, super",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4087
+🏉,1F3C9,activities,sport,rugby football,"ball, football, rugby, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4088
+🎾,1F3BE,activities,sport,tennis,"ball, racquet, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4089
+🥏,1F94F,activities,sport,flying disc,"disc, flying, ultimate",,Nicole Kornhaas,2019-05-06,,,,,11,4090
+🎳,1F3B3,activities,sport,bowling,"ball, game, sport, strike",,Sarah Mager,2018-11-16,,,,,0.6,4091
+🏏,1F3CF,activities,sport,cricket game,"ball, bat, cricket, game",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4092
+🏑,1F3D1,activities,sport,field hockey,"ball, field, game, hockey, stick",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4093
+🏒,1F3D2,activities,sport,ice hockey,"game, hockey, ice, puck, stick",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4094
+🥍,1F94D,activities,sport,lacrosse,"ball, goal, sports, stick",,Nicole Kornhaas,2019-05-06,,,,,11,4095
+🏓,1F3D3,activities,sport,ping pong,"ball, bat, game, paddle, ping, pingpong, pong, table, tennis",,Vanessa Boutzikoudi,2018-04-18,,,,,1,4096
+🏸,1F3F8,activities,sport,badminton,"birdie, game, racquet, shuttlecock",,Sarah Mager,2018-11-16,,,,,1,4097
+🥊,1F94A,activities,sport,boxing glove,"boxing, glove",,Vanessa Boutzikoudi,2018-04-18,,,,,3,4098
+🥋,1F94B,activities,sport,martial arts uniform,"arts, judo, karate, martial, taekwondo, uniform",,Vanessa Boutzikoudi,2018-04-18,,,,,3,4099
+🥅,1F945,activities,sport,goal net,"goal, net",,Nicole Kornhaas,2019-05-06,,,,,3,4100
+⛳️,26F3,activities,sport,flag in hole,"flag, golf, hole, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4101
+⛸️,26F8,activities,sport,ice skate,"ice, skate, skating",,Sarah Mager,2018-11-16,,,,,0.7,4103
+🎣,1F3A3,activities,sport,fishing pole,"entertainment, fish, fishing, pole, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4104
+🤿,1F93F,activities,sport,diving mask,"diving, mask, scuba, snorkeling",,Evelyn Soos,2019-05-04,,,,,12,4105
+🎽,1F3BD,activities,sport,running shirt,"athletics, running, sash, shirt",,Sarah Mager,2018-11-16,,,,,0.6,4106
+🎿,1F3BF,activities,sport,skis,"ski, snow, sport",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4107
+🛷,1F6F7,activities,sport,sled,"luge, sledge, sleigh, snow, toboggan",,Nicole Kornhaas,2019-05-06,,,,,5,4108
+🥌,1F94C,activities,sport,curling stone,"curling, game, rock, stone",,Daniel Quiros,2018-11-16,,,,,5,4109
+🎯,1F3AF,activities,game,bullseye,"bull, dart, direct, entertainment, game, hit, target",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4110
+🪀,1FA80,activities,game,yo-yo,"fluctuate, toy",,Evelyn Soos,2019-05-04,,,,,12,4111
+🪁,1FA81,activities,game,kite,"fly, soar",,Evelyn Soos,2019-05-04,,,,,12,4112
+🔫,1F52B,activities,game,water pistol,"gun, handgun, pistol, revolver, tool, water, weapon",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4113
+🎱,1F3B1,activities,game,pool 8 ball,"8, 8ball, ball, billiard, eight, game, pool",,Vanessa Boutzikoudi,2018-04-18,,,,,0.6,4114
+🔮,1F52E,activities,game,crystal ball,"ball, crystal, fairy, fairytale, fantasy, fortune, future, magic, tale, tool",,Marius Schnabel,2018-04-18,,,,,0.6,4115
+🪄,1FA84,activities,game,magic wand,"magic, magician, wand, witch, wizard",,Liz Bravo,2020-03-11,,,,,13,4116
+🎮️,1F3AE,activities,game,video game,"controller, entertainment, game, video",,Lisa Schulz,2018-04-18,,,,,0.6,4117
+🕹️,1F579,activities,game,joystick,"game, video, videogame",,Lisa Schulz,2018-04-18,,,,,0.7,4119
+🎰,1F3B0,activities,game,slot machine,"casino, gamble, gambling, game, machine, slot, slots",,Nicole Kornhaas,2019-05-06,,,,,0.6,4120
+🎲,1F3B2,activities,game,game die,"dice, die, entertainment, game",,Lisa Schulz,2018-04-18,,,,,0.6,4121
+🧩,1F9E9,activities,game,puzzle piece,"clue, interlocking, jigsaw, piece, puzzle",,Nicole Kornhaas,2019-05-06,,,,,11,4122
+🧸,1F9F8,activities,game,teddy bear,"bear, plaything, plush, stuffed, teddy, toy",,Liz Bravo,2020-12-22,,,,,11,4123
+🪅,1FA85,activities,game,piñata,"candy, celebrate, celebration, cinco, de, festive, mayo, party, pinada, pinata",,Liz Bravo,2020-03-03,,,,,13,4124
+🪩,1FAA9,activities,game,mirror ball,"ball, dance, disco, glitter, mirror, party",,Liz Bravo,2022-02-10,,,,,14,4125
+🪆,1FA86,activities,game,nesting dolls,"babooshka, baboushka, babushka, doll, dolls, matryoshka, nesting, russia",,Liz Bravo,2020-03-11,,,,,13,4126
+♠️,2660,activities,game,spade suit,"card, game, spade, suit",,Nicole Kornhaas,2019-05-06,,,,,0.6,4128
+♥️,2665,activities,game,heart suit,"card, emotion, game, heart, hearts, suit",,Nicole Kornhaas,2019-05-06,,,,,0.6,4130
+♦️,2666,activities,game,diamond suit,"card, diamond, game, suit",,Nicole Kornhaas,2019-05-06,,,,,0.6,4132
+♣️,2663,activities,game,club suit,"card, club, clubs, game, suit",,Nicole Kornhaas,2019-05-06,,,,,0.6,4134
+♟️,265F,activities,game,chess pawn,"chess, dupe, expendable, pawn",,Nicole Kornhaas,2019-05-06,,,,,11,4136
+🃏,1F0CF,activities,game,joker,"card, game, wildcard",,Nicole Kornhaas,2019-05-06,,,,,0.6,4137
+🀄️,1F004,activities,game,mahjong red dragon,"dragon, game, mahjong, red",,Nicole Kornhaas,2019-05-06,,,,,0.6,4138
+🎴,1F3B4,activities,game,flower playing cards,"card, cards, flower, game, japanese, playing",,Abby Esquivel,2018-11-16,,,,,0.6,4139
+🎭️,1F3AD,activities,arts-crafts,performing arts,"actor, actress, art, arts, entertainment, mask, performing, theater, theatre, thespian",,Martin Wehl,2018-04-18,,,,,0.6,4140
+🖼️,1F5BC,activities,arts-crafts,framed picture,"art, frame, framed, museum, painting, picture",,Martin Wehl,2018-04-18,,,,,0.7,4142
+🎨,1F3A8,activities,arts-crafts,artist palette,"art, artist, artsy, arty, colorful, creative, entertainment, museum, painter, painting, palette",,Martin Wehl,2018-04-18,,,,,0.6,4143
+🧵,1F9F5,activities,arts-crafts,thread,"needle, sewing, spool, string",,Nicole Kornhaas,2019-05-06,,,,,11,4144
+🪡,1FAA1,activities,arts-crafts,sewing needle,"embroidery, needle, sew, sewing, stitches, sutures, tailoring, thread",,Liz Bravo,2020-03-28,,,,,13,4145
+🧶,1F9F6,activities,arts-crafts,yarn,"ball, crochet, knit",,Nicole Kornhaas,2019-05-06,,,,,11,4146
+🪢,1FAA2,activities,arts-crafts,knot,"cord, rope, tangled, tie, twine, twist",,Liz Bravo,2020-09-26,,,,,13,4147
+👓️,1F453,objects,clothing,glasses,"clothing, eye, eyeglasses, eyewear",,Jonas Roßner,2018-04-18,,,,,0.6,4148
+🕶️,1F576,objects,clothing,sunglasses,"dark, eye, eyewear, glasses",,Jonas Roßner,2018-04-18,,,,,0.7,4150
+🥽,1F97D,objects,clothing,goggles,"dive, eye, protection, scuba, swimming, welding",,Laura Schießer,2019-05-06,,,,,11,4151
+🥼,1F97C,objects,clothing,lab coat,"clothes, coat, doctor, dr, experiment, jacket, lab, scientist, white",,Laura Schießer,2019-05-06,,,,,11,4152
+🦺,1F9BA,objects,clothing,safety vest,"emergency, safety, vest",,Sam Eckert,2019-05-06,,,,,12,4153
+👔,1F454,objects,clothing,necktie,"clothing, employed, serious, shirt, tie",,Jonas Roßner,2018-04-18,,,,,0.6,4154
+👕,1F455,objects,clothing,t-shirt,"blue, casual, clothes, clothing, collar, dressed, shirt, shopping, tshirt, weekend",,Jonas Roßner,2018-04-18,,,,,0.6,4155
+👖,1F456,objects,clothing,jeans,"blue, casual, clothes, clothing, denim, dressed, pants, shopping, trousers, weekend",,Jonas Roßner,2018-04-18,,,,,0.6,4156
+🧣,1F9E3,objects,clothing,scarf,"bundle, cold, neck, up",,Laura Schießer,2019-05-06,,,,,5,4157
+🧤,1F9E4,objects,clothing,gloves,hand,,Laura Schießer,2019-05-06,,,,,5,4158
+🧥,1F9E5,objects,clothing,coat,"brr, bundle, cold, jacket, up",,Daniel Quiros,2018-11-16,,,,,5,4159
+🧦,1F9E6,objects,clothing,socks,stocking,,Laura Schießer,2019-05-06,,,,,5,4160
+👗,1F457,objects,clothing,dress,"clothes, clothing, dressed, fancy, shopping",,Jonas Roßner,2018-04-18,,,,,0.6,4161
+👘,1F458,objects,clothing,kimono,"clothing, comfortable",,Liz Bravo,2020-12-22,,,,,0.6,4162
+🥻,1F97B,objects,clothing,sari,"clothing, dress",,Carlin MacKenzie,2020-02-26,,,,,12,4163
+🩱,1FA71,objects,clothing,one-piece swimsuit,"bathing, one-piece, suit, swimsuit",,Sam Eckert,2019-05-06,,,,,12,4164
+🩲,1FA72,objects,clothing,briefs,"bathing, one-piece, suit, swimsuit, underwear",,Sam Eckert,2019-05-06,,,,,12,4165
+🩳,1FA73,objects,clothing,shorts,"bathing, pants, suit, swimsuit, underwear",,Sam Eckert,2019-05-06,,,,,12,4166
+👙,1F459,objects,clothing,bikini,"bathing, beach, clothing, pool, suit, swim",,Jonas Roßner,2018-04-18,,,,,0.6,4167
+👚,1F45A,objects,clothing,woman’s clothes,"blouse, clothes, clothing, collar, dress, dressed, lady, shirt, shopping, woman, woman’s",,Jonas Roßner,2018-04-18,,,,,0.6,4168
+🪭,1FAAD,objects,clothing,folding hand fan,"clack, clap, cool, cooling, dance, fan, flirt, flutter, folding, hand, hot, shy",,Anna Schneider,2023-10-25,,,,,15,4169
+👛,1F45B,objects,clothing,purse,"clothes, clothing, coin, dress, fancy, handbag, shopping",,Jonas Roßner,2018-04-18,,,,,0.6,4170
+👜,1F45C,objects,clothing,handbag,"bag, clothes, clothing, dress, lady, purse, shopping",,Jonas Roßner,2018-04-18,,,,,0.6,4171
+👝,1F45D,objects,clothing,clutch bag,"bag, clothes, clothing, clutch, dress, handbag, pouch, purse",,Jonas Roßner,2018-04-18,,,,,0.6,4172
+🛍️,1F6CD,objects,clothing,shopping bags,"bag, bags, hotel, shopping",,Jonas Roßner,2018-04-18,,,,,0.7,4174
+🎒,1F392,objects,clothing,backpack,"backpacking, bag, bookbag, education, rucksack, satchel, school",,Jonas Roßner,2018-04-18,,,,,0.6,4175
+🩴,1FA74,objects,clothing,thong sandal,"beach, flip, flop, sandal, sandals, shoe, thong, thongs, zōri",,Liz Bravo,2020-03-11,,,,,13,4176
+👞,1F45E,objects,clothing,man’s shoe,"brown, clothes, clothing, feet, foot, kick, man, man’s, shoe, shoes, shopping",,Jonas Roßner,2018-04-18,,,,,0.6,4177
+👟,1F45F,objects,clothing,running shoe,"athletic, clothes, clothing, fast, kick, running, shoe, shoes, shopping, sneaker, tennis",,Jonas Roßner,2018-04-18,,,,,0.6,4178
+🥾,1F97E,objects,clothing,hiking boot,"backpacking, boot, brown, camping, hiking, outdoors, shoe",,Laura Schießer,2019-05-06,,,,,11,4179
+🥿,1F97F,objects,clothing,flat shoe,"ballet, comfy, flat, flats, shoe, slip-on, slipper",,Laura Schießer,2019-05-06,,,,,11,4180
+👠,1F460,objects,clothing,high-heeled shoe,"clothes, clothing, dress, fashion, heel, heels, high-heeled, shoe, shoes, shopping, stiletto, woman",,Jonas Roßner,2018-04-18,,,,,0.6,4181
+👡,1F461,objects,clothing,woman’s sandal,"clothing, sandal, shoe, woman, woman’s",,Jonas Roßner,2018-04-18,,,,,0.6,4182
+🩰,1FA70,objects,clothing,ballet shoes,"ballet, dance, shoes",,Sam Eckert,2019-05-06,,,,,12,4183
+👢,1F462,objects,clothing,woman’s boot,"boot, clothes, clothing, dress, shoe, shoes, shopping, woman, woman’s",,Jonas Roßner,2018-04-18,,,,,0.6,4184
+🪮,1FAAE,objects,clothing,hair pick,"afro, comb, groom, hair, pick",,Linda Hartmann,2023-10-25,,,,,15,4185
+👑,1F451,objects,clothing,crown,"clothing, family, king, medieval, queen, royal, royalty, win",,Jonas Roßner,2018-04-18,,,,,0.6,4186
+👒,1F452,objects,clothing,woman’s hat,"clothes, clothing, garden, hat, hats, party, woman, woman’s",,Niklas Kuntz,2022-07-01,,,,,0.6,4187
+🎩,1F3A9,objects,clothing,top hat,"clothes, clothing, fancy, formal, hat, magic, top, tophat",,Jonas Roßner,2018-04-18,,,,,0.6,4188
+🎓️,1F393,objects,clothing,graduation cap,"cap, celebration, clothing, education, graduation, hat, scholar",,Jonas Roßner,2018-04-18,,,,,0.6,4189
+🧢,1F9E2,objects,clothing,billed cap,"baseball, bent, billed, cap, dad, hat",,Jennifer Pätzold,2022-07-01,,,,,5,4190
+🪖,1FA96,objects,clothing,military helmet,"army, helmet, military, soldier, war, warrior",,Liz Bravo,2020-09-26,,,,,13,4191
+⛑️,26D1,objects,clothing,rescue worker’s helmet,"aid, cross, face, hat, helmet, rescue, worker’s",,Anne Frauendorf,2018-11-16,,,,,0.7,4193
+📿,1F4FF,objects,clothing,prayer beads,"beads, clothing, necklace, prayer, religion",,Jonas Roßner,2018-04-18,,,,,1,4194
+💄,1F484,objects,clothing,lipstick,"cosmetics, date, makeup",,Anne Frauendorf,2018-11-16,,,,,0.6,4195
+💍,1F48D,objects,clothing,ring,"diamond, engaged, engagement, married, romance, shiny, sparkling, wedding",,Jonas Roßner,2018-04-18,,,,,0.6,4196
+💎,1F48E,objects,clothing,gem stone,"diamond, engagement, gem, jewel, money, romance, stone, wedding",,Jonas Roßner,2018-04-18,,,,,0.6,4197
+🔇,1F507,objects,sound,muted speaker,"mute, muted, quiet, silent, sound, speaker",,Rana Cakir,2018-04-18,,,,,1,4198
+🔈️,1F508,objects,sound,speaker low volume,"low, soft, sound, speaker, volume",,Rana Cakir,2018-04-18,,,,,0.7,4199
+🔉,1F509,objects,sound,speaker medium volume,"medium, sound, speaker, volume",,Rana Cakir,2018-04-18,,,,,1,4200
+🔊,1F50A,objects,sound,speaker high volume,"high, loud, music, sound, speaker, volume",,Rana Cakir,2018-04-18,,,,,0.6,4201
+📢,1F4E2,objects,sound,loudspeaker,"address, communication, loud, public, sound",,Rana Cakir,2018-04-18,,,,,0.6,4202
+📣,1F4E3,objects,sound,megaphone,"cheering, sound",,Abby Esquivel,2018-11-16,,,,,0.6,4203
+📯,1F4EF,objects,sound,postal horn,"horn, post, postal",,Rana Cakir,2018-04-18,,,,,1,4204
+🔔,1F514,objects,sound,bell,"break, church, sound",,Rana Cakir,2018-04-18,,,,,0.6,4205
+🔕,1F515,objects,sound,bell with slash,"bell, forbidden, mute, no, not, prohibited, quiet, silent, slash, sound",,Rana Cakir,2018-04-18,,,,,1,4206
+🎼,1F3BC,objects,music,musical score,"music, musical, note, score",,Sina Schulz,2018-04-18,,,,,0.6,4207
+🎵,1F3B5,objects,music,musical note,"music, musical, note, sound",,Sina Schulz,2018-04-18,,,,,0.6,4208
+🎶,1F3B6,objects,music,musical notes,"music, musical, note, notes, sound",,Sina Schulz,2018-04-18,,,,,0.6,4209
+🎙️,1F399,objects,music,studio microphone,"mic, microphone, music, studio",,Sina Schulz,2018-04-18,,,,,0.7,4211
+🎚️,1F39A,objects,music,level slider,"level, music, slider",,Sina Schulz,2018-04-18,,,,,0.7,4213
+🎛️,1F39B,objects,music,control knobs,"control, knobs, music",,Sina Schulz,2018-04-18,,,,,0.7,4215
+🎤,1F3A4,objects,music,microphone,"karaoke, mic, music, sing, sound",,Sina Schulz,2018-04-18,,,,,0.6,4216
+🎧️,1F3A7,objects,music,headphone,"earbud, sound",,Sina Schulz,2018-04-18,,,,,0.6,4217
+📻️,1F4FB,objects,music,radio,"entertainment, tbt, video",,Sina Schulz,2018-04-18,,,,,0.6,4218
+🎷,1F3B7,objects,musical-instrument,saxophone,"instrument, music, sax",,Sina Schulz,2018-04-18,,,,,0.6,4219
+🪗,1FA97,objects,musical-instrument,accordion,"box, concertina, instrument, music, squeeze, squeezebox",,Liz Bravo,2020-07-21,,,,,13,4220
+🎸,1F3B8,objects,musical-instrument,guitar,"instrument, music, strat",,Sina Schulz,2018-04-18,,,,,0.6,4221
+🎹,1F3B9,objects,musical-instrument,musical keyboard,"instrument, keyboard, music, musical, piano",,Sina Schulz,2018-04-18,,,,,0.6,4222
+🎺,1F3BA,objects,musical-instrument,trumpet,"instrument, music",,Sina Schulz,2018-04-18,,,,,0.6,4223
+🎻,1F3BB,objects,musical-instrument,violin,"instrument, music",,Sina Schulz,2018-04-18,,,,,0.6,4224
+🪕,1FA95,objects,musical-instrument,banjo,"music, stringed",,Sam Eckert,2019-05-06,,,,,12,4225
+🥁,1F941,objects,musical-instrument,drum,"drumsticks, music",,Sina Schulz,2018-04-18,,,,,3,4226
+🪘,1FA98,objects,musical-instrument,long drum,"beat, conga, drum, instrument, long, rhythm",,Liz Bravo,2020-03-03,,,,,13,4227
+🪇,1FA87,objects,musical-instrument,maracas,"cha, dance, instrument, music, party, percussion, rattle, shake, shaker",,Ben Engelhardt,2023-10-25,,,,,15,4228
+🪈,1FA88,objects,musical-instrument,flute,"band, fife, flautist, instrument, marching, music, orchestra, piccolo, pipe, recorder, woodwind",,Christian Engler,2023-10-25,,,,,15,4229
+🪉,1FA89,objects,musical-instrument,harp,"cupid, instrument, love, music, orchestra",,Daniel Utz,2025-02-18,,,,,16,4230
+📱,1F4F1,objects,phone,mobile phone,"cell, communication, mobile, phone, telephone",,Martin Wehl,2018-04-18,,,,,0.6,4231
+📲,1F4F2,objects,phone,mobile phone with arrow,"arrow, build, call, cell, communication, mobile, phone, receive, telephone",,Martin Wehl,2018-04-18,,,,,0.6,4232
+☎️,260E,objects,phone,telephone,phone,,Kai Wanschura,2018-04-18,,,,,0.6,4234
+📞,1F4DE,objects,phone,telephone receiver,"communication, phone, receiver, telephone, voip",,Kai Wanschura,2018-04-18,,,,,0.6,4235
+📟️,1F4DF,objects,phone,pager,communication,,Nicole Kornhaas,2019-05-06,,,,,0.6,4236
+📠,1F4E0,objects,phone,fax machine,"communication, fax, machine",,Martin Wehl,2018-04-18,,,,,0.6,4237
+🔋,1F50B,objects,computer,battery,battery,,Jonas Roßner,2018-04-18,,,,,0.6,4238
+🪫,1FAAB,objects,computer,low battery,"battery, drained, electronic, energy, low, power",,Alena Peichl,2022-05-09,,,,,14,4239
+🔌,1F50C,objects,computer,electric plug,"electric, electricity, plug",,Jonas Roßner,2018-04-18,,,,,0.6,4240
+💻️,1F4BB,objects,computer,laptop,"computer, office, pc, personal",,Jonas Roßner,2018-04-18,,,,,0.6,4241
+🖥️,1F5A5,objects,computer,desktop computer,"computer, desktop, monitor",,Jonas Roßner,2018-04-18,,,,,0.7,4243
+🖨️,1F5A8,objects,computer,printer,computer,,Jonas Roßner,2018-04-18,,,,,0.7,4245
+⌨️,2328,objects,computer,keyboard,computer,,Carlin MacKenzie,2020-05-12,,,,,1,4247
+🖱️,1F5B1,objects,computer,computer mouse,"computer, mouse",,Jonas Roßner,2018-04-18,,,,,0.7,4249
+🖲️,1F5B2,objects,computer,trackball,computer,,Nicole Kornhaas,2019-05-06,,,,,0.7,4251
+💽,1F4BD,objects,computer,computer disk,"computer, disk, minidisk, optical",,Jonas Roßner,2018-04-18,,,,,0.6,4252
+💾,1F4BE,objects,computer,floppy disk,"computer, disk, floppy",,Jonas Roßner,2018-04-18,,,,,0.6,4253
+💿️,1F4BF,objects,computer,optical disk,"blu-ray, cd, computer, disk, dvd, optical",,Jonas Roßner,2018-04-18,,,,,0.6,4254
+📀,1F4C0,objects,computer,dvd,"blu-ray, cd, computer, disk, optical",,Jonas Roßner,2018-04-18,,,,,0.6,4255
+🧮,1F9EE,objects,computer,abacus,"calculation, calculator",,Nicole Kornhaas,2019-05-06,,,,,11,4256
+🎥,1F3A5,objects,light-video,movie camera,"bollywood, camera, cinema, film, hollywood, movie, record",,Sina Schulz,2018-04-18,,,,,0.6,4257
+🎞️,1F39E,objects,light-video,film frames,"cinema, film, frames, movie",,Sina Schulz,2018-04-18,,,,,0.7,4259
+📽️,1F4FD,objects,light-video,film projector,"cinema, film, movie, projector, video",,Sina Schulz,2018-04-18,,,,,0.7,4261
+🎬️,1F3AC,objects,light-video,clapper board,"action, board, clapper, movie",,Sina Schulz,2018-04-18,,,,,0.6,4262
+📺️,1F4FA,objects,light-video,television,"tv, video",,Sina Schulz,2018-04-18,,,,,0.6,4263
+📷️,1F4F7,objects,light-video,camera,"photo, selfie, snap, tbt, trip, video",,Sina Schulz,2018-04-18,,,,,0.6,4264
+📸,1F4F8,objects,light-video,camera with flash,"camera, flash, video",,Sina Schulz,2018-04-18,,,,,1,4265
+📹️,1F4F9,objects,light-video,video camera,"camcorder, camera, tbt, video",,Sina Schulz,2018-04-18,,,,,0.6,4266
+📼,1F4FC,objects,light-video,videocassette,"old, school, tape, vcr, vhs, video",,Sina Schulz,2018-04-18,,,,,0.6,4267
+🔍️,1F50D,objects,light-video,magnifying glass tilted left,"glass, lab, left, left-pointing, magnifying, science, search, tilted, tool",,Sina Schulz,2018-04-18,,,,,0.6,4268
+🔎,1F50E,objects,light-video,magnifying glass tilted right,"contact, glass, lab, magnifying, right, right-pointing, science, search, tilted, tool",,Sina Schulz,2018-04-18,,,,,0.6,4269
+🕯️,1F56F,objects,light-video,candle,light,,Sina Schulz,2018-04-18,,,,,0.7,4271
+💡,1F4A1,objects,light-video,light bulb,"bulb, comic, electric, idea, light",,Sina Schulz,2018-04-18,,,,,0.6,4272
+🔦,1F526,objects,light-video,flashlight,"electric, light, tool, torch",,Sina Schulz,2018-04-18,,,,,0.6,4273
+🏮,1F3EE,objects,light-video,red paper lantern,"bar, lantern, light, paper, red, restaurant",,Abby Esquivel,2018-11-16,,,,,0.6,4274
+🪔,1FA94,objects,light-video,diya lamp,"diya, lamp, light, oil",,Sam Eckert,2019-05-06,,,,,12,4275
+📔,1F4D4,objects,book-paper,notebook with decorative cover,"book, cover, decorated, decorative, education, notebook, school, writing",,Abby Esquivel,2018-11-16,,,,,0.6,4276
+📕,1F4D5,objects,book-paper,closed book,"book, closed, education",,Jonas Roßner,2018-04-18,,,,,0.6,4277
+📖,1F4D6,objects,book-paper,open book,"book, education, fantasy, knowledge, library, novels, open, reading",,Jonas Roßner,2018-04-18,,,,,0.6,4278
+📗,1F4D7,objects,book-paper,green book,"book, education, fantasy, green, library, reading",,Abby Esquivel,2018-11-16,,,,,0.6,4279
+📘,1F4D8,objects,book-paper,blue book,"blue, book, education, fantasy, library, reading",,Abby Esquivel,2018-11-16,,,,,0.6,4280
+📙,1F4D9,objects,book-paper,orange book,"book, education, fantasy, library, orange, reading",,Abby Esquivel,2018-11-16,,,,,0.6,4281
+📚️,1F4DA,objects,book-paper,books,"book, education, fantasy, knowledge, library, novels, reading, school, study",,Liz Bravo,2020-12-22,,,,,0.6,4282
+📓,1F4D3,objects,book-paper,notebook,notebook,,Jonas Roßner,2018-04-18,,,,,0.6,4283
+📒,1F4D2,objects,book-paper,ledger,notebook,,Jonas Roßner,2018-04-18,,,,,0.6,4284
+📃,1F4C3,objects,book-paper,page with curl,"curl, document, page, paper",,Jonas Roßner,2018-04-18,,,,,0.6,4285
+📜,1F4DC,objects,book-paper,scroll,paper,,Jonas Roßner,2018-04-18,,,,,0.6,4286
+📄,1F4C4,objects,book-paper,page facing up,"document, facing, page, paper, up",,Jonas Roßner,2018-04-18,,,,,0.6,4287
+📰,1F4F0,objects,book-paper,newspaper,"communication, news, paper",,Jonas Roßner,2018-04-18,,,,,0.6,4288
+🗞️,1F5DE,objects,book-paper,rolled-up newspaper,"news, newspaper, paper, rolled, rolled-up",,Tonia Reinhardt,2019-05-07,,,,,0.7,4290
+📑,1F4D1,objects,book-paper,bookmark tabs,"bookmark, mark, marker, tabs",,Abby Esquivel,2018-11-16,,,,,0.6,4291
+🔖,1F516,objects,book-paper,bookmark,mark,,Jonas Roßner,2018-04-18,,,,,0.6,4292
+🏷️,1F3F7,objects,book-paper,label,tag,,Jonas Roßner,2018-04-18,,,,,0.7,4294
+💰️,1F4B0,objects,money,money bag,"bag, bank, bet, billion, cash, cost, dollar, gold, million, money, moneybag, paid, paying, pot, rich, win",,Marius Schnabel,2018-04-18,,,,,0.6,4295
+🪙,1FA99,objects,money,coin,"dollar, euro, gold, metal, money, rich, silver, treasure",,Liz Bravo,2020-07-21,,,,,13,4296
+💴,1F4B4,objects,money,yen banknote,"bank, banknote, bill, currency, money, note, yen",,Marius Schnabel,2018-04-18,,,,,0.6,4297
+💵,1F4B5,objects,money,dollar banknote,"bank, banknote, bill, currency, dollar, money, note",,Marius Schnabel,2018-04-18,,,,,0.6,4298
+💶,1F4B6,objects,money,euro banknote,"100, bank, banknote, bill, currency, euro, money, note, rich",,Marius Schnabel,2018-04-18,,,,,1,4299
+💷,1F4B7,objects,money,pound banknote,"bank, banknote, bill, billion, cash, currency, money, note, pound, pounds",,Marius Schnabel,2018-04-18,,,,,1,4300
+💸,1F4B8,objects,money,money with wings,"bank, banknote, bill, billion, cash, dollar, fly, million, money, note, pay, wings",,Marius Schnabel,2018-04-18,,,,,0.6,4301
+💳️,1F4B3,objects,money,credit card,"bank, card, cash, charge, credit, money, pay",,Marius Schnabel,2018-04-18,,,,,0.6,4302
+🧾,1F9FE,objects,money,receipt,"accounting, bookkeeping, evidence, invoice, proof",,Tonia Reinhardt,2019-05-07,,,,,11,4303
+💹,1F4B9,objects,money,chart increasing with yen,"bank, chart, currency, graph, growth, increasing, market, money, rise, trend, upward, yen",,Marleen Heine,2018-11-16,,,,,0.6,4304
+✉️,2709,objects,mail,envelope,"e-mail, email, letter",,Marius Schnabel,2018-04-18,,,,,0.6,4306
+📧,1F4E7,objects,mail,e-mail,"email, letter, mail",,Marius Schnabel,2018-04-18,,,,,0.6,4307
+📨,1F4E8,objects,mail,incoming envelope,"delivering, e-mail, email, envelope, incoming, letter, mail, receive, sent",,Marleen Heine,2018-11-16,,,,,0.6,4308
+📩,1F4E9,objects,mail,envelope with arrow,"arrow, communication, down, e-mail, email, envelope, letter, mail, outgoing, send, sent",,Marius Schnabel,2018-04-18,,,,,0.6,4309
+📤️,1F4E4,objects,mail,outbox tray,"box, email, letter, mail, outbox, sent, tray",,Marius Schnabel,2018-04-18,,,,,0.6,4310
+📥️,1F4E5,objects,mail,inbox tray,"box, email, inbox, letter, mail, receive, tray, zero",,Marius Schnabel,2018-04-18,,,,,0.6,4311
+📦️,1F4E6,objects,mail,package,"box, communication, delivery, parcel, shipping",,Liz Bravo,2021-04-28,,,,,0.6,4312
+📫️,1F4EB,objects,mail,closed mailbox with raised flag,"closed, communication, flag, mail, mailbox, postbox, raised",,Marius Schnabel,2018-04-18,,,,,0.6,4313
+📪️,1F4EA,objects,mail,closed mailbox with lowered flag,"closed, flag, lowered, mail, mailbox, postbox",,Marius Schnabel,2018-04-18,,,,,0.6,4314
+📬️,1F4EC,objects,mail,open mailbox with raised flag,"flag, mail, mailbox, open, postbox, raised",,Marleen Heine,2018-11-16,,,,,0.7,4315
+📭️,1F4ED,objects,mail,open mailbox with lowered flag,"flag, lowered, mail, mailbox, open, postbox",,Marleen Heine,2018-11-16,,,,,0.7,4316
+📮,1F4EE,objects,mail,postbox,"mail, mailbox",,Marius Schnabel,2018-04-18,,,,,0.6,4317
+🗳️,1F5F3,objects,mail,ballot box with ballot,"ballot, box",,Marleen Heine,2018-11-16,,,,,0.7,4319
+✏️,270F,objects,writing,pencil,pencil,,Rana Cakir,2018-04-18,,,,,0.6,4321
+✒️,2712,objects,writing,black nib,"black, nib, pen",,Liz Bravo,2021-05-04,,,,,0.6,4323
+🖋️,1F58B,objects,writing,fountain pen,"fountain, pen",,Rana Cakir,2018-04-18,,,,,0.7,4325
+🖊️,1F58A,objects,writing,pen,ballpoint,,Rana Cakir,2018-04-18,,,,,0.7,4327
+🖌️,1F58C,objects,writing,paintbrush,painting,,Rana Cakir,2018-04-18,,,,,0.7,4329
+🖍️,1F58D,objects,writing,crayon,crayon,,Rana Cakir,2018-04-18,,,,,0.7,4331
+📝,1F4DD,objects,writing,memo,"communication, media, notes, pencil",,Rana Cakir,2018-04-18,,,,,0.6,4332
+💼,1F4BC,objects,office,briefcase,office,,Sina Schulz,2018-04-18,,,,,0.6,4333
+📁,1F4C1,objects,office,file folder,"file, folder",,Sina Schulz,2018-04-18,,,,,0.6,4334
+📂,1F4C2,objects,office,open file folder,"file, folder, open",,Sina Schulz,2018-04-18,,,,,0.6,4335
+🗂️,1F5C2,objects,office,card index dividers,"card, dividers, index",,Marleen Heine,2018-11-16,,,,,0.7,4337
+📅,1F4C5,objects,office,calendar,date,,Sina Schulz,2018-04-18,,,,,0.6,4338
+📆,1F4C6,objects,office,tear-off calendar,"calendar, tear-off",,Sina Schulz,2018-04-18,,,,,0.6,4339
+🗒️,1F5D2,objects,office,spiral notepad,"note, notepad, pad, spiral",,Sina Schulz,2018-04-18,,,,,0.7,4341
+🗓️,1F5D3,objects,office,spiral calendar,"calendar, pad, spiral",,Sina Schulz,2018-04-18,,,,,0.7,4343
+📇,1F4C7,objects,office,card index,"card, index, old, rolodex, school",,Tonia Reinhardt,2019-05-07,,,,,0.6,4344
+📈,1F4C8,objects,office,chart increasing,"chart, data, graph, growth, increasing, right, trend, up, upward",,Sina Schulz,2018-04-18,,,,,0.6,4345
+📉,1F4C9,objects,office,chart decreasing,"chart, data, decreasing, down, downward, graph, negative, trend",,Sina Schulz,2018-04-18,,,,,0.6,4346
+📊,1F4CA,objects,office,bar chart,"bar, chart, data, graph",,Sina Schulz,2018-04-18,,,,,0.6,4347
+📋️,1F4CB,objects,office,clipboard,"do, list, notes",,Sina Schulz,2018-04-18,,,,,0.6,4348
+📌,1F4CC,objects,office,pushpin,"collage, pin",,Sina Schulz,2018-04-18,,,,,0.6,4349
+📍,1F4CD,objects,office,round pushpin,"location, map, pin, pushpin, round",,Sina Schulz,2018-04-18,,,,,0.6,4350
+📎,1F4CE,objects,office,paperclip,paperclip,,Sina Schulz,2018-04-18,,,,,0.6,4351
+🖇️,1F587,objects,office,linked paperclips,"link, linked, paperclip, paperclips",,Marleen Heine,2018-11-16,,,,,0.7,4353
+📏,1F4CF,objects,office,straight ruler,"angle, edge, math, ruler, straight, straightedge",,Sina Schulz,2018-04-18,,,,,0.6,4354
+📐,1F4D0,objects,office,triangular ruler,"angle, math, rule, ruler, set, slide, triangle, triangular",,Sina Schulz,2018-04-18,,,,,0.6,4355
+✂️,2702,objects,office,scissors,"cut, cutting, paper, tool",,Sina Schulz,2018-04-18,,,,,0.6,4357
+🗃️,1F5C3,objects,office,card file box,"box, card, file",,Sina Schulz,2018-04-18,,,,,0.7,4359
+🗄️,1F5C4,objects,office,file cabinet,"cabinet, file, filing, paper",,Sina Schulz,2018-04-18,,,,,0.7,4361
+🗑️,1F5D1,objects,office,wastebasket,"can, garbage, trash, waste",,Sina Schulz,2018-04-18,,,,,0.7,4363
+🔒️,1F512,objects,lock,locked,"closed, lock, private",,Lisa Schulz,2018-04-18,,,,,0.6,4364
+🔓️,1F513,objects,lock,unlocked,"cracked, lock, open, unlock",,Lisa Schulz,2018-04-18,,,,,0.6,4365
+🔏,1F50F,objects,lock,locked with pen,"ink, lock, locked, nib, pen, privacy",,Marleen Heine,2018-11-16,,,,,0.6,4366
+🔐,1F510,objects,lock,locked with key,"bike, closed, key, lock, locked, secure",,Lisa Schulz,2018-04-18,,,,,0.6,4367
+🔑,1F511,objects,lock,key,"keys, lock, major, password, unlock",,Lisa Schulz,2018-04-18,,,,,0.6,4368
+🗝️,1F5DD,objects,lock,old key,"clue, key, lock, old",,Lisa Schulz,2018-04-18,,,,,0.7,4370
+🔨,1F528,objects,tool,hammer,"home, improvement, repairs, tool",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4371
+🪓,1FA93,objects,tool,axe,"ax, chop, hatchet, split, wood",,Sam Eckert,2019-05-06,,,,,12,4372
+⛏️,26CF,objects,tool,pick,"hammer, mining, tool",,Hilda Kalyoncu,2018-04-18,,,,,0.7,4374
+⚒️,2692,objects,tool,hammer and pick,"hammer, pick, tool",,Marleen Heine,2018-11-16,,,,,1,4376
+🛠️,1F6E0,objects,tool,hammer and wrench,"hammer, spanner, tool, wrench",,Hilda Kalyoncu,2018-04-18,,,,,0.7,4378
+🗡️,1F5E1,objects,tool,dagger,"knife, weapon",,Liz Bravo,2020-12-22,,,,,0.7,4380
+⚔️,2694,objects,tool,crossed swords,"crossed, swords, weapon",,Marleen Heine,2018-11-16,,,,,1,4382
+💣️,1F4A3,objects,tool,bomb,"boom, comic, dangerous, explosion, hot",,Laura Humpfer,2018-04-18,,,,,0.6,4383
+🪃,1FA83,objects,tool,boomerang,"rebound, repercussion, weapon",,Liz Bravo,2020-03-26,,,,,13,4384
+🏹,1F3F9,objects,tool,bow and arrow,"archer, archery, arrow, bow, sagittarius, tool, weapon, zodiac",,Marleen Heine,2018-11-16,,,,,1,4385
+🛡️,1F6E1,objects,tool,shield,weapon,,Hilda Kalyoncu,2018-04-18,,,,,0.7,4387
+🪚,1FA9A,objects,tool,carpentry saw,"carpenter, carpentry, cut, lumber, saw, tool, trim",,Liz Bravo,2020-03-28,,,,,13,4388
+🔧,1F527,objects,tool,wrench,"home, improvement, spanner, tool",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4389
+🪛,1FA9B,objects,tool,screwdriver,"flathead, handy, screw, tool",,Liz Bravo,2020-03-28,,,,,13,4390
+🔩,1F529,objects,tool,nut and bolt,"bolt, home, improvement, nut, tool",,Marleen Heine,2018-11-16,,,,,0.6,4391
+⚙️,2699,objects,tool,gear,"cog, cogwheel, tool",,Hilda Kalyoncu,2018-04-18,,,,,1,4393
+🗜️,1F5DC,objects,tool,clamp,"compress, tool, vice",,Hilda Kalyoncu,2018-04-18,,,,,0.7,4395
+⚖️,2696,objects,tool,balance scale,"balance, justice, libra, scale, scales, tool, weight, zodiac",,Hilda Kalyoncu,2018-04-18,,,,,1,4397
+🦯,1F9AF,objects,tool,white cane,"accessibility, blind, cane, probing, white",,Sam Eckert,2019-05-06,,,,,12,4398
+🔗,1F517,objects,tool,link,links,,Hilda Kalyoncu,2018-04-18,,,,,0.6,4399
+⛓️‍💥,26D3-FE0F-200D-1F4A5,objects,tool,broken chain,"break, breaking, broken, chain, cuffs, freedom",,Vanessa Stoessinger,2024-10-03,,,,,15.1,4400
+⛓️,26D3,objects,tool,chains,chain,,Hilda Kalyoncu,2018-04-18,,,,,0.7,4403
+🪝,1FA9D,objects,tool,hook,"catch, crook, curve, ensnare, point, selling",,Liz Bravo,2020-04-11,,,,,13,4404
+🧰,1F9F0,objects,tool,toolbox,"box, chest, mechanic, red, tool",,Tonia Reinhardt,2019-05-07,,,,,11,4405
+🧲,1F9F2,objects,tool,magnet,"attraction, horseshoe, magnetic, negative, positive, shape, u",,Tonia Reinhardt,2019-05-07,,,,,11,4406
+🪜,1FA9C,objects,tool,ladder,"climb, rung, step",,Liz Bravo,2020-09-26,,,,,13,4407
+🪏,1FA8F,objects,tool,shovel,"bury, dig, garden, hole, plant, scoop, snow, spade",,Daniel Utz,2025-02-18,,,,,16,4408
+⚗️,2697,objects,science,alembic,"chemistry, tool",,Marleen Heine,2018-11-16,,,,,1,4410
+🧪,1F9EA,objects,science,test tube,"chemist, chemistry, experiment, lab, science, test, tube",,Tonia Reinhardt,2019-05-07,,,,,11,4411
+🧫,1F9EB,objects,science,petri dish,"bacteria, biologist, biology, culture, dish, lab, petri",,Tonia Reinhardt,2019-05-07,,,,,11,4412
+🧬,1F9EC,objects,science,dna,"biologist, evolution, gene, genetics, life",,Alan Seng,2022-07-01,,,,,11,4413
+🔬,1F52C,objects,science,microscope,"experiment, lab, science, tool",,Marleen Heine,2018-11-16,,,,,1,4414
+🔭,1F52D,objects,science,telescope,"contact, extraterrestrial, science, tool",,Sina Schulz,2018-04-18,,,,,1,4415
+📡,1F4E1,objects,science,satellite antenna,"aliens, antenna, contact, dish, satellite, science",,Sina Schulz,2018-04-18,,,,,0.6,4416
+💉,1F489,objects,medical,syringe,"doctor, flu, medicine, needle, shot, sick, tool, vaccination",,Tonia Reinhardt,2010-01-31,,,,,0.6,4417
+🩸,1FA78,objects,medical,drop of blood,"bleed, blood, donation, drop, injury, medicine, menstruation",,Sam Eckert,2019-05-06,,,,,12,4418
+💊,1F48A,objects,medical,pill,"doctor, drugs, medicated, medicine, pills, sick, vitamin",,Marius Schnabel,2018-04-18,,,,,0.6,4419
+🩹,1FA79,objects,medical,adhesive bandage,"adhesive, bandage",,Sam Eckert,2019-05-06,,,,,12,4420
+🩼,1FA7C,objects,medical,crutch,"aid, cane, disability, help, hurt, injured, mobility, stick",,Niklas Kuntz,2022-05-09,,,,,14,4421
+🩺,1FA7A,objects,medical,stethoscope,"doctor, heart, medicine",,Sam Eckert,2019-05-06,,,,,12,4422
+🩻,1FA7B,objects,medical,x-ray,"bones, doctor, medical, skeleton, skull, xray",,Tim Loose,2022-05-09,,,,,14,4423
+🚪,1F6AA,objects,household,door,"back, closet, front",,Lisa Schulz,2018-04-18,,,,,0.6,4424
+🛗,1F6D7,objects,household,elevator,"accessibility, hoist, lift",,Liz Bravo,2020-09-26,,,,,13,4425
+🪞,1FA9E,objects,household,mirror,"makeup, reflection, reflector, speculum",,Liz Bravo,2020-03-11,,,,,13,4426
+🪟,1FA9F,objects,household,window,"air, frame, fresh, opening, transparent, view",,Liz Bravo,2020-07-21,,,,,13,4427
+🛏️,1F6CF,objects,household,bed,"hotel, sleep",,Lisa Schulz,2018-04-18,,,,,0.7,4429
+🛋️,1F6CB,objects,household,couch and lamp,"couch, hotel, lamp",,Lisa Schulz,2018-04-18,,,,,0.7,4431
+🪑,1FA91,objects,household,chair,"seat, sit",,Sam Eckert,2019-05-06,,,,,12,4432
+🚽,1F6BD,objects,household,toilet,bathroom,,Lisa Schulz,2018-04-18,,,,,0.6,4433
+🪠,1FAA0,objects,household,plunger,"cup, force, plumber, poop, suction, toilet",,Liz Bravo,2020-03-11,,,,,13,4434
+🚿,1F6BF,objects,household,shower,water,,Lisa Schulz,2018-04-18,,,,,1,4435
+🛁,1F6C1,objects,household,bathtub,bath,,Lisa Schulz,2018-04-18,,,,,1,4436
+🪤,1FAA4,objects,household,mouse trap,"bait, cheese, lure, mouse, mousetrap, snare, trap",,Liz Bravo,2020-03-28,,,,,13,4437
+🪒,1FA92,objects,household,razor,"sharp, shave",,Sam Eckert,2019-05-06,,,,,12,4438
+🧴,1F9F4,objects,household,lotion bottle,"bottle, lotion, moisturizer, shampoo, sunscreen",,Tonia Reinhardt,2019-05-07,,,,,11,4439
+🧷,1F9F7,objects,household,safety pin,"diaper, pin, punk, rock, safety",,Tonia Reinhardt,2019-05-07,,,,,11,4440
+🧹,1F9F9,objects,household,broom,"cleaning, sweeping, witch",,Tonia Reinhardt,2019-05-07,,,,,11,4441
+🧺,1F9FA,objects,household,basket,"farming, laundry, picnic",,Tonia Reinhardt,2019-05-07,,,,,11,4442
+🧻,1F9FB,objects,household,roll of paper,"paper, roll, toilet, towels",,Tonia Reinhardt,2019-05-07,,,,,11,4443
+🪣,1FAA3,objects,household,bucket,"cask, pail, vat",,Liz Bravo,2020-03-26,,,,,13,4444
+🧼,1F9FC,objects,household,soap,"bar, bathing, clean, cleaning, lather, soapdish",,Tonia Reinhardt,2019-05-07,,,,,11,4445
+🫧,1FAE7,objects,household,bubbles,"bubble, burp, clean, floating, pearl, soap, underwater",,Alexander Müller,2021-11-27,,,,,14,4446
+🪥,1FAA5,objects,household,toothbrush,"bathroom, brush, clean, dental, hygiene, teeth, toiletry",,Liz Bravo,2020-03-11,,,,,13,4447
+🧽,1F9FD,objects,household,sponge,"absorbing, cleaning, porous, soak",,Tonia Reinhardt,2019-05-07,,,,,11,4448
+🧯,1F9EF,objects,household,fire extinguisher,"extinguish, extinguisher, fire, quench",,Tonia Reinhardt,2019-05-07,,,,,11,4449
+🛒,1F6D2,objects,household,shopping cart,"cart, shopping, trolley",,Marius Schnabel,2018-04-18,,,,,3,4450
+🚬,1F6AC,objects,other-object,cigarette,smoking,,Marius Schnabel,2018-04-18,,,,,0.6,4451
+⚰️,26B0,objects,other-object,coffin,"dead, death, vampire",,Marius Schnabel,2018-04-18,,,,,1,4453
+🪦,1FAA6,objects,other-object,headstone,"cemetery, dead, grave, graveyard, memorial, rip, tomb, tombstone",,Liz Bravo,2020-03-22,,,,,13,4454
+⚱️,26B1,objects,other-object,funeral urn,"ashes, death, funeral, urn",,Marleen Heine,2018-11-16,,,,,1,4456
+🧿,1F9FF,objects,other-object,nazar amulet,"amulet, bead, blue, charm, evil-eye, nazar, talisman",,Nicole Kornhaas,2019-05-06,,,,,11,4457
+🪬,1FAAC,objects,other-object,hamsa,"amulet, fatima, fortune, guide, hand, mary, miriam, palm, protect, protection",,Pia Stockhaus,2022-05-09,,,,,14,4458
+🗿,1F5FF,objects,other-object,moai,"face, moyai, statue, stoneface, travel",,Liz Bravo,2022-07-05,,,,,0.6,4459
+🪧,1FAA7,objects,other-object,placard,"card, demonstration, notice, picket, plaque, protest, sign",,Liz Bravo,2020-03-28,,,,,13,4460
+🪪,1FAAA,objects,other-object,identification card,"card, credentials, document, id, identification, license, security",,Niklas Kuntz,2022-05-09,,,,,14,4461
+🏧,1F3E7,symbols,transport-sign,ATM sign,"atm, automated, bank, cash, money, sign, teller",,Liz Bravo,2021-05-04,,,,,0.6,4462
+🚮,1F6AE,symbols,transport-sign,litter in bin sign,"bin, litter, litterbin, sign",,Ronja Bäurlen,2018-04-18,,,,,1,4463
+🚰,1F6B0,symbols,transport-sign,potable water,"drinking, potable, water",,Guemil Project,2019-01-14,,,,,1,4464
+♿️,267F,symbols,transport-sign,wheelchair symbol,"access, handicap, symbol, wheelchair",,Guemil Project,2019-01-14,,,,,0.6,4465
+🚹️,1F6B9,symbols,transport-sign,men’s room,"bathroom, lavatory, man, men’s, restroom, room, toilet, wc",,Ronja Bäurlen,2018-04-18,,,,,0.6,4466
+🚺️,1F6BA,symbols,transport-sign,women’s room,"bathroom, lavatory, restroom, room, toilet, wc, woman, women’s",,Ronja Bäurlen,2018-04-18,,,,,0.6,4467
+🚻,1F6BB,symbols,transport-sign,restroom,"bathroom, lavatory, toilet, wc",,Ronja Bäurlen,2018-04-18,,,,,0.6,4468
+🚼️,1F6BC,symbols,transport-sign,baby symbol,"baby, changing, symbol",,Ronja Bäurlen,2018-04-18,,,,,0.6,4469
+🚾,1F6BE,symbols,transport-sign,water closet,"bathroom, closet, lavatory, restroom, toilet, water, wc",,Ronja Bäurlen,2018-04-18,,,,,0.6,4470
+🛂,1F6C2,symbols,transport-sign,passport control,"control, passport",,Tonia Reinhardt,2019-05-07,,,,,1,4471
+🛃,1F6C3,symbols,transport-sign,customs,packing,,Tonia Reinhardt,2019-05-07,,,,,1,4472
+🛄,1F6C4,symbols,transport-sign,baggage claim,"arrived, baggage, bags, case, checked, claim, journey, packing, plane, ready, travel, trip",,Vincent Seitz,2018-11-16,,,,,1,4473
+🛅,1F6C5,symbols,transport-sign,left luggage,"baggage, case, left, locker, luggage",,Vincent Seitz,2018-11-16,,,,,1,4474
+⚠️,26A0,symbols,warning,warning,caution,,Miriam Vollmeier,2018-04-18,,,,,0.6,4476
+🚸,1F6B8,symbols,warning,children crossing,"child, children, crossing, pedestrian, traffic",,Tonia Reinhardt,2019-05-07,,,,,1,4477
+⛔️,26D4,symbols,warning,no entry,"do, entry, fail, forbidden, no, not, pass, prohibited, traffic",,Miriam Vollmeier,2018-04-18,,,,,0.6,4478
+🚫,1F6AB,symbols,warning,prohibited,"entry, forbidden, no, not, smoke",,Miriam Vollmeier,2018-04-18,,,,,0.6,4479
+🚳,1F6B3,symbols,warning,no bicycles,"bicycle, bicycles, bike, forbidden, no, not, prohibited",,Miriam Vollmeier,2018-04-18,,,,,1,4480
+🚭️,1F6AD,symbols,warning,no smoking,"forbidden, no, not, prohibited, smoke, smoking",,Miriam Vollmeier,2018-04-18,,,,,0.6,4481
+🚯,1F6AF,symbols,warning,no littering,"forbidden, litter, littering, no, not, prohibited",,Vincent Seitz,2018-11-16,,,,,1,4482
+🚱,1F6B1,symbols,warning,non-potable water,"dry, non-drinking, non-potable, prohibited, water",,Vincent Seitz,2018-11-16,,,,,1,4483
+🚷,1F6B7,symbols,warning,no pedestrians,"forbidden, no, not, pedestrian, pedestrians, prohibited",,Vincent Seitz,2018-11-16,,,,,1,4484
+📵,1F4F5,symbols,warning,no mobile phones,"cell, forbidden, mobile, no, not, phone, phones, prohibited, telephone",,Miriam Vollmeier,2018-04-18,,,,,1,4485
+🔞,1F51E,symbols,warning,no one under eighteen,"18, age, eighteen, forbidden, no, not, one, prohibited, restriction, underage",,Miriam Vollmeier,2018-04-18,,,,,0.6,4486
+☢️,2622,symbols,warning,radioactive,sign,,Vincent Seitz,2018-11-16,,,,,1,4488
+☣️,2623,symbols,warning,biohazard,sign,,Selina Lange,2019-05-06,,,,,1,4490
+⬆️,2B06,symbols,arrow,up arrow,"arrow, cardinal, direction, north, up",,Guemil Project,2019-01-14,,,,,0.6,4492
+↗️,2197,symbols,arrow,up-right arrow,"arrow, direction, intercardinal, northeast, up-right",,Guemil Project,2019-01-14,,,,,0.6,4494
+➡️,27A1,symbols,arrow,right arrow,"arrow, cardinal, direction, east, right",,Guemil Project,2019-01-14,,,,,0.6,4496
+↘️,2198,symbols,arrow,down-right arrow,"arrow, direction, down-right, intercardinal, southeast",,Guemil Project,2019-01-14,,,,,0.6,4498
+⬇️,2B07,symbols,arrow,down arrow,"arrow, cardinal, direction, down, south",,Guemil Project,2019-01-14,,,,,0.6,4500
+↙️,2199,symbols,arrow,down-left arrow,"arrow, direction, down-left, intercardinal, southwest",,Guemil Project,2019-01-14,,,,,0.6,4502
+⬅️,2B05,symbols,arrow,left arrow,"arrow, cardinal, direction, left, west",,Guemil Project,2019-01-14,,,,,0.6,4504
+↖️,2196,symbols,arrow,up-left arrow,"arrow, direction, intercardinal, northwest, up-left",,Guemil Project,2019-01-14,,,,,0.6,4506
+↕️,2195,symbols,arrow,up-down arrow,"arrow, up-down",,Jose Avila,2018-04-18,,,,,0.6,4508
+↔️,2194,symbols,arrow,left-right arrow,"arrow, left-right",,Jose Avila,2018-04-18,,,,,0.6,4510
+↩️,21A9,symbols,arrow,right arrow curving left,"arrow, curving, left, right",,Jose Avila,2018-04-18,,,,,0.6,4512
+↪️,21AA,symbols,arrow,left arrow curving right,"arrow, curving, left, right",,Jose Avila,2018-04-18,,,,,0.6,4514
+⤴️,2934,symbols,arrow,right arrow curving up,"arrow, curving, right, up",,Jose Avila,2018-04-18,,,,,0.6,4516
+⤵️,2935,symbols,arrow,right arrow curving down,"arrow, curving, down, right",,Jose Avila,2018-04-18,,,,,0.6,4518
+🔃,1F503,symbols,arrow,clockwise vertical arrows,"arrow, arrows, clockwise, refresh, reload, vertical",,Vincent Seitz,2018-11-16,,,,,0.6,4519
+🔄,1F504,symbols,arrow,counterclockwise arrows button,"again, anticlockwise, arrow, arrows, button, counterclockwise, deja, refresh, rewindershins, vu",,Jose Avila,2018-04-18,,,,,1,4520
+🔙,1F519,symbols,arrow,BACK arrow,"arrow, back",,Vincent Seitz,2018-11-16,,,,,0.6,4521
+🔚,1F51A,symbols,arrow,END arrow,"arrow, end",,Vincent Seitz,2018-11-16,,,,,0.6,4522
+🔛,1F51B,symbols,arrow,ON! arrow,"arrow, mark, on!",,Vincent Seitz,2018-11-16,,,,,0.6,4523
+🔜,1F51C,symbols,arrow,SOON arrow,"arrow, brb, omw, soon",,Vincent Seitz,2018-11-16,,,,,0.6,4524
+🔝,1F51D,symbols,arrow,TOP arrow,"arrow, homie, top, up",,Vincent Seitz,2018-11-16,,,,,0.6,4525
+🛐,1F6D0,symbols,religion,place of worship,"place, pray, religion, worship",,Jose Avila,2018-04-18,,,,,1,4526
+⚛️,269B,symbols,religion,atom symbol,"atheist, atom, symbol",,Jose Avila,2018-04-18,,,,,1,4528
+🕉️,1F549,symbols,religion,om,"hindu, religion",,Sina Chlod,2018-11-16,,,,,0.7,4530
+✡️,2721,symbols,religion,star of David,"david, jew, jewish, judaism, religion, star",,Sina Chlod,2018-11-16,,,,,0.7,4532
+☸️,2638,symbols,religion,wheel of dharma,"buddhist, dharma, religion, wheel",,Sina Chlod,2018-11-16,,,,,0.7,4534
+☯️,262F,symbols,religion,yin yang,"difficult, lives, religion, tao, taoist, total, yang, yin, yinyang",,Jose Avila,2018-04-18,,,,,0.7,4536
+✝️,271D,symbols,religion,latin cross,"christ, christian, cross, latin, religion",,Jose Avila,2018-04-18,,,,,0.7,4538
+☦️,2626,symbols,religion,orthodox cross,"christian, cross, orthodox, religion",,Sina Chlod,2018-11-16,,,,,1,4540
+☪️,262A,symbols,religion,star and crescent,"crescent, islam, muslim, ramadan, religion, star",,Jose Avila,2018-04-18,,,,,0.7,4542
+☮️,262E,symbols,religion,peace symbol,"healing, peace, peaceful, symbol",,Jose Avila,2018-04-18,,,,,1,4544
+🕎,1F54E,symbols,religion,menorah,"candelabrum, candlestick, hanukkah, jewish, judaism, religion",,Sina Chlod,2018-11-16,,,,,1,4545
+🔯,1F52F,symbols,religion,dotted six-pointed star,"dotted, fortune, jewish, judaism, six-pointed, star",,Sina Chlod,2018-11-16,,,,,0.6,4546
+🪯,1FAAF,symbols,religion,khanda,"deg, fateh, khalsa, religion, sikh, sikhism, tegh",,Katja Widmann,2023-10-31,,,,,15,4547
+♈️,2648,symbols,zodiac,Aries,"aries, horoscope, ram, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4548
+♉️,2649,symbols,zodiac,Taurus,"bull, horoscope, ox, taurus, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4549
+♊️,264A,symbols,zodiac,Gemini,"gemini, horoscope, twins, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4550
+♋️,264B,symbols,zodiac,Cancer,"cancer, crab, horoscope, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4551
+♌️,264C,symbols,zodiac,Leo,"horoscope, leo, lion, zodiac",,Selina Lange,2019-05-06,,,,,0.6,4552
+♍️,264D,symbols,zodiac,Virgo,"horoscope, virgo, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4553
+♎️,264E,symbols,zodiac,Libra,"balance, horoscope, justice, libra, scales, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4554
+♏️,264F,symbols,zodiac,Scorpio,"horoscope, scorpio, scorpion, scorpius, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4555
+♐️,2650,symbols,zodiac,Sagittarius,"archer, horoscope, sagittarius, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4556
+♑️,2651,symbols,zodiac,Capricorn,"capricorn, goat, horoscope, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4557
+♒️,2652,symbols,zodiac,Aquarius,"aquarius, bearer, horoscope, water, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4558
+♓️,2653,symbols,zodiac,Pisces,"fish, horoscope, pisces, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4559
+⛎️,26CE,symbols,zodiac,Ophiuchus,"bearer, ophiuchus, serpent, snake, zodiac",,Sina Chlod,2018-11-16,,,,,0.6,4560
+🔀,1F500,symbols,av-symbol,shuffle tracks button,"arrow, button, crossed, shuffle, tracks",,Jose Avila,2018-04-18,,,,,1,4561
+🔁,1F501,symbols,av-symbol,repeat button,"arrow, button, clockwise, repeat",,Jose Avila,2018-04-18,,,,,1,4562
+🔂,1F502,symbols,av-symbol,repeat single button,"arrow, button, clockwise, once, repeat, single",,Jose Avila,2018-04-18,,,,,1,4563
+▶️,25B6,symbols,av-symbol,play button,"arrow, button, play, right, triangle",,Jose Avila,2018-04-18,,,,,0.6,4565
+⏩️,23E9,symbols,av-symbol,fast-forward button,"arrow, button, double, fast, fast-forward, forward",,Jose Avila,2018-04-18,,,,,0.6,4566
+⏭️,23ED,symbols,av-symbol,next track button,"arrow, button, next, scene, track, triangle",,Jose Avila,2018-04-18,,,,,0.7,4568
+⏯️,23EF,symbols,av-symbol,play or pause button,"arrow, button, pause, play, right, triangle",,Jose Avila,2018-04-18,,,,,1,4570
+◀️,25C0,symbols,av-symbol,reverse button,"arrow, button, left, reverse, triangle",,Jose Avila,2018-04-18,,,,,0.6,4572
+⏪️,23EA,symbols,av-symbol,fast reverse button,"arrow, button, double, fast, reverse, rewind",,Jose Avila,2018-04-18,,,,,0.6,4573
+⏮️,23EE,symbols,av-symbol,last track button,"arrow, button, last, previous, scene, track, triangle",,Jose Avila,2018-04-18,,,,,0.7,4575
+🔼,1F53C,symbols,av-symbol,upwards button,"arrow, button, red, up, upwards",,Jose Avila,2018-04-18,,,,,0.6,4576
+⏫️,23EB,symbols,av-symbol,fast up button,"arrow, button, double, fast, up",,Jose Avila,2018-04-18,,,,,0.6,4577
+🔽,1F53D,symbols,av-symbol,downwards button,"arrow, button, down, downwards, red",,Jose Avila,2018-04-18,,,,,0.6,4578
+⏬️,23EC,symbols,av-symbol,fast down button,"arrow, button, double, down, fast",,Jose Avila,2018-04-18,,,,,0.6,4579
+⏸️,23F8,symbols,av-symbol,pause button,"bar, button, double, pause, vertical",,Jose Avila,2018-04-18,,,,,0.7,4581
+⏹️,23F9,symbols,av-symbol,stop button,"button, square, stop",,Jose Avila,2018-04-18,,,,,0.7,4583
+⏺️,23FA,symbols,av-symbol,record button,"button, circle, record",,Jose Avila,2018-04-18,,,,,0.7,4585
+⏏️,23CF,symbols,av-symbol,eject button,"button, eject",,Carlin MacKenzie,2020-06-05,,,,,1,4587
+🎦,1F3A6,symbols,av-symbol,cinema,"camera, film, movie",,Liz Bravo,2021-05-04,,,,,0.6,4588
+🔅,1F505,symbols,av-symbol,dim button,"brightness, button, dim, low",,Jose Avila,2018-04-18,,,,,1,4589
+🔆,1F506,symbols,av-symbol,bright button,"bright, brightness, button, light",,Jose Avila,2018-04-18,,,,,1,4590
+📶,1F4F6,symbols,av-symbol,antenna bars,"antenna, bar, bars, cell, communication, mobile, phone, signal, telephone",,Jose Avila,2018-04-18,,,,,0.6,4591
+🛜,1F6DC,symbols,av-symbol,wireless,"broadband, computer, connectivity, hotspot, internet, network, router, smartphone, wi-fi, wifi, wlan",,Linda Hartmann,2023-10-25,,,,,15,4592
+📳,1F4F3,symbols,av-symbol,vibration mode,"cell, communication, mobile, mode, phone, telephone, vibration",,Jose Avila,2018-04-18,,,,,0.6,4593
+📴,1F4F4,symbols,av-symbol,mobile phone off,"cell, mobile, off, phone, telephone",,Jose Avila,2018-04-18,,,,,0.6,4594
+♀️,2640,symbols,gender,female sign,"female, sign, woman",,Hilda Kalyoncu,2018-04-18,,,,,4,4596
+♂️,2642,symbols,gender,male sign,"male, man, sign",,Hilda Kalyoncu,2018-04-18,,,,,4,4598
+⚧️,26A7,symbols,gender,transgender symbol,"symbol, transgender",,Carlin MacKenzie,2020-03-12,,,,,13,4600
+✖️,2716,symbols,math,multiply,"cancel, multiplication, sign, x, ×",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4602
+➕️,2795,symbols,math,plus,+,,Hilda Kalyoncu,2018-04-18,,,,,0.6,4603
+➖️,2796,symbols,math,minus,"-, heavy, math, sign, −",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4604
+➗️,2797,symbols,math,divide,"division, heavy, math, sign, ÷",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4605
+🟰,1F7F0,symbols,math,heavy equals sign,"answer, equal, equality, equals, heavy, math, sign",,Aileen Gedrat,2022-05-09,,,,,14,4606
+♾️,267E,symbols,math,infinity,"forever, unbounded, universal",,Selina Lange,2019-05-06,,,,,11,4608
+‼️,203C,symbols,punctuation,double exclamation mark,"!, !!, bangbang, double, exclamation, mark, punctuation",,Selina Lange,2019-05-06,,,,,0.6,4610
+⁉️,2049,symbols,punctuation,exclamation question mark,"!, !?, ?, exclamation, interrobang, mark, punctuation, question",,Selina Lange,2019-05-06,,,,,0.6,4612
+❓️,2753,symbols,punctuation,red question mark,"?, mark, punctuation, question, red",,Selina Lange,2019-05-06,,,,,0.6,4613
+❔️,2754,symbols,punctuation,white question mark,"?, mark, outlined, punctuation, question, white",,Selina Lange,2019-05-06,,,,,0.6,4614
+❕️,2755,symbols,punctuation,white exclamation mark,"!, exclamation, mark, outlined, punctuation, white",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4615
+❗️,2757,symbols,punctuation,red exclamation mark,"!, exclamation, mark, punctuation, red",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4616
+〰️,3030,symbols,punctuation,wavy dash,"dash, punctuation, wavy",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4618
+💱,1F4B1,symbols,currency,currency exchange,"bank, currency, exchange, money",,Marleen Heine,2018-11-16,,,,,0.6,4619
+💲,1F4B2,symbols,currency,heavy dollar sign,"billion, cash, charge, currency, dollar, heavy, million, money, pay, sign",,Marleen Heine,2018-11-16,,,,,0.6,4620
+⚕️,2695,symbols,other-symbol,medical symbol,"aesculapius, medical, medicine, staff, symbol",,Hilda Kalyoncu,2018-04-18,,,,,4,4622
+♻️,267B,symbols,other-symbol,recycling symbol,"recycle, recycling, symbol",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4624
+⚜️,269C,symbols,other-symbol,fleur-de-lis,knights,,Selina Lange,2019-05-06,,,,,1,4626
+🔱,1F531,symbols,other-symbol,trident emblem,"anchor, emblem, poseidon, ship, tool, trident",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4627
+📛,1F4DB,symbols,other-symbol,name badge,"badge, name",,Selina Lange,2019-05-06,,,,,0.6,4628
+🔰,1F530,symbols,other-symbol,Japanese symbol for beginner,"beginner, chevron, green, japanese, leaf, symbol, tool, yellow",,Selina Lange,2019-05-06,,,,,0.6,4629
+⭕️,2B55,symbols,other-symbol,hollow red circle,"circle, heavy, hollow, large, o, red",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4630
+✅️,2705,symbols,other-symbol,check mark button,"button, check, checked, checkmark, complete, completed, done, fixed, mark, tick, ✓",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4631
+☑️,2611,symbols,other-symbol,check box with check,"ballot, box, check, checked, done, off, tick, ✓",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4633
+✔️,2714,symbols,other-symbol,check mark,"check, checked, checkmark, done, heavy, mark, tick, ✓",,Carlin MacKenzie,2020-05-12,,,,,0.6,4635
+❌️,274C,symbols,other-symbol,cross mark,"cancel, cross, mark, multiplication, multiply, x, ×",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4636
+❎️,274E,symbols,other-symbol,cross mark button,"button, cross, mark, multiplication, multiply, square, x, ×",,Hilda Kalyoncu,2018-04-18,,,,,0.6,4637
+➰️,27B0,symbols,other-symbol,curly loop,"curl, curly, loop",,Selina Lange,2019-05-06,,,,,0.6,4638
+➿️,27BF,symbols,other-symbol,double curly loop,"curl, curly, double, loop",,Selina Lange,2019-05-06,,,,,1,4639
+〽️,303D,symbols,other-symbol,part alternation mark,"alternation, mark, part",,Selina Lange,2019-05-06,,,,,0.6,4641
+✳️,2733,symbols,other-symbol,eight-spoked asterisk,"*, asterisk, eight-spoked",,Selina Lange,2019-05-06,,,,,0.6,4643
+✴️,2734,symbols,other-symbol,eight-pointed star,"*, eight-pointed, star",,Selina Lange,2019-05-06,,,,,0.6,4645
+❇️,2747,symbols,other-symbol,sparkle,*,,Selina Lange,2019-05-06,,,,,0.6,4647
+©️,00A9,symbols,other-symbol,copyright,c,,Carlin MacKenzie,2020-06-06,,,,,0.6,4649
+®️,00AE,symbols,other-symbol,registered,r,,Carlin MacKenzie,2020-06-06,,,,,0.6,4651
+™️,2122,symbols,other-symbol,trade mark,"mark, tm, trade, trademark",,Carlin MacKenzie,2020-06-06,,,,,0.6,4653
+🫟,1FADF,symbols,other-symbol,splatter,"drip, holi, ink, liquid, mess, paint, spill, stain",,Daniel Utz,2025-02-18,,,,,16,4654
+#️⃣,0023-FE0F-20E3,symbols,keycap,keycap: #,keycap,,Selina Lange,2019-05-06,,,,,0.6,4655
+*️⃣,002A-FE0F-20E3,symbols,keycap,keycap: *,keycap,,Selina Lange,2019-05-06,,,,,2,4657
+0️⃣,0030-FE0F-20E3,symbols,keycap,keycap: 0,keycap,,Selina Lange,2019-05-06,,,,,0.6,4659
+1️⃣,0031-FE0F-20E3,symbols,keycap,keycap: 1,keycap,,Selina Lange,2019-05-06,,,,,0.6,4661
+2️⃣,0032-FE0F-20E3,symbols,keycap,keycap: 2,keycap,,Selina Lange,2019-05-06,,,,,0.6,4663
+3️⃣,0033-FE0F-20E3,symbols,keycap,keycap: 3,keycap,,Selina Lange,2019-05-06,,,,,0.6,4665
+4️⃣,0034-FE0F-20E3,symbols,keycap,keycap: 4,keycap,,Selina Lange,2019-05-06,,,,,0.6,4667
+5️⃣,0035-FE0F-20E3,symbols,keycap,keycap: 5,keycap,,Selina Lange,2019-05-06,,,,,0.6,4669
+6️⃣,0036-FE0F-20E3,symbols,keycap,keycap: 6,keycap,,Selina Lange,2019-05-06,,,,,0.6,4671
+7️⃣,0037-FE0F-20E3,symbols,keycap,keycap: 7,keycap,,Selina Lange,2019-05-06,,,,,0.6,4673
+8️⃣,0038-FE0F-20E3,symbols,keycap,keycap: 8,keycap,,Selina Lange,2019-05-06,,,,,0.6,4675
+9️⃣,0039-FE0F-20E3,symbols,keycap,keycap: 9,keycap,,Selina Lange,2019-05-06,,,,,0.6,4677
+🔟,1F51F,symbols,keycap,keycap: 10,keycap,,Selina Lange,2019-05-06,,,,,0.6,4679
+🔠,1F520,symbols,alphanum,input latin uppercase,"abcd, input, latin, letters, uppercase",,Jose Avila,2018-04-18,,,,,0.6,4680
+🔡,1F521,symbols,alphanum,input latin lowercase,"abcd, input, latin, letters, lowercase",,Jose Avila,2018-04-18,,,,,0.6,4681
+🔢,1F522,symbols,alphanum,input numbers,"1234, input, numbers",,Jose Avila,2018-04-18,,,,,0.6,4682
+🔣,1F523,symbols,alphanum,input symbols,"%, &, input, symbols, ♪, 〒",,Jose Avila,2018-04-18,,,,,0.6,4683
+🔤,1F524,symbols,alphanum,input latin letters,"abc, alphabet, input, latin, letters",,Jose Avila,2018-04-18,,,,,0.6,4684
+🅰️,1F170,symbols,alphanum,A button (blood type),"blood, button, type",,Laura Dworatschek,2019-05-06,,,,,0.6,4686
+🆎,1F18E,symbols,alphanum,AB button (blood type),"ab, blood, button, type",,Laura Dworatschek,2019-05-06,,,,,0.6,4687
+🅱️,1F171,symbols,alphanum,B button (blood type),"b, blood, button, type",,Laura Dworatschek,2019-05-06,,,,,0.6,4689
+🆑,1F191,symbols,alphanum,CL button,"button, cl",,Laura Dworatschek,2019-05-06,,,,,0.6,4690
+🆒,1F192,symbols,alphanum,COOL button,"button, cool",,Jose Avila,2018-04-18,,,,,0.6,4691
+🆓,1F193,symbols,alphanum,FREE button,"button, free",,Laura Dworatschek,2019-05-06,,,,,0.6,4692
+ℹ️,2139,symbols,alphanum,information,i,,Jose Avila,2018-04-18,,,,,0.6,4694
+🆔,1F194,symbols,alphanum,ID button,"button, id, identity",,Jose Avila,2018-04-18,,,,,0.6,4695
+Ⓜ️,24C2,symbols,alphanum,circled M,"circle, circled, m",,Laura Dworatschek,2019-05-06,,,,,0.6,4697
+🆕,1F195,symbols,alphanum,NEW button,"button, new",,Jose Avila,2018-04-18,,,,,0.6,4698
+🆖,1F196,symbols,alphanum,NG button,"button, ng",,Laura Dworatschek,2019-05-06,,,,,0.6,4699
+🅾️,1F17E,symbols,alphanum,O button (blood type),"blood, button, o, type",,Laura Dworatschek,2019-05-06,,,,,0.6,4701
+🆗,1F197,symbols,alphanum,OK button,"button, ok, okay",,Jose Avila,2018-04-18,,,,,0.6,4702
+🅿️,1F17F,symbols,alphanum,P button,"button, p, parking",,Jose Avila,2018-04-18,,,,,0.6,4704
+🆘,1F198,symbols,alphanum,SOS button,"button, help, sos",,Jose Avila,2018-04-18,,,,,0.6,4705
+🆙,1F199,symbols,alphanum,UP! button,"button, mark, up, up!",,Laura Dworatschek,2019-05-06,,,,,0.6,4706
+🆚,1F19A,symbols,alphanum,VS button,"button, versus, vs",,Jose Avila,2018-04-18,,,,,0.6,4707
+🈁,1F201,symbols,alphanum,Japanese “here” button,"button, here, japanese, katakana",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4708
+🈂️,1F202,symbols,alphanum,Japanese “service charge” button,"button, charge, japanese, katakana, service",,Jose Avila,2018-04-18,,,,,0.6,4710
+🈷️,1F237,symbols,alphanum,Japanese “monthly amount” button,"amount, button, ideograph, japanese, monthly",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4712
+🈶,1F236,symbols,alphanum,Japanese “not free of charge” button,"button, charge, free, ideograph, japanese, not",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4713
+🈯️,1F22F,symbols,alphanum,Japanese “reserved” button,"button, ideograph, japanese, reserved",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4714
+🉐,1F250,symbols,alphanum,Japanese “bargain” button,"bargain, button, ideograph, japanese",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4715
+🈹,1F239,symbols,alphanum,Japanese “discount” button,"button, discount, ideograph, japanese",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4716
+🈚️,1F21A,symbols,alphanum,Japanese “free of charge” button,"button, charge, free, ideograph, japanese",,Yasmin Abdullahi,2019-05-07,,,,,0.6,4717
+🈲,1F232,symbols,alphanum,Japanese “prohibited” button,"button, ideograph, japanese, prohibited",,Evelyn Soos,2019-05-04,,,,,0.6,4718
+🉑,1F251,symbols,alphanum,Japanese “acceptable” button,"acceptable, button, ideograph, japanese",,Evelyn Soos,2019-05-04,,,,,0.6,4719
+🈸,1F238,symbols,alphanum,Japanese “application” button,"application, button, ideograph, japanese",,Evelyn Soos,2019-05-04,,,,,0.6,4720
+🈴,1F234,symbols,alphanum,Japanese “passing grade” button,"button, grade, ideograph, japanese, passing",,Evelyn Soos,2019-05-04,,,,,0.6,4721
+🈳,1F233,symbols,alphanum,Japanese “vacancy” button,"button, ideograph, japanese, vacancy",,Evelyn Soos,2019-05-04,,,,,0.6,4722
+㊗️,3297,symbols,alphanum,Japanese “congratulations” button,"button, congratulations, ideograph, japanese",,Jose Avila,2018-04-18,,,,,0.6,4724
+㊙️,3299,symbols,alphanum,Japanese “secret” button,"button, ideograph, japanese, secret",,Jose Avila,2018-04-18,,,,,0.6,4726
+🈺,1F23A,symbols,alphanum,Japanese “open for business” button,"business, button, ideograph, japanese, open",,Evelyn Soos,2019-05-04,,,,,0.6,4727
+🈵,1F235,symbols,alphanum,Japanese “no vacancy” button,"button, ideograph, japanese, no, vacancy",,Evelyn Soos,2019-05-04,,,,,0.6,4728
+🔴,1F534,symbols,geometric,red circle,"circle, geometric, red",,Ricarda Krejci,2019-05-07,,,,,0.6,4729
+🟠,1F7E0,symbols,geometric,orange circle,"circle, orange",,Sam Eckert,2019-05-06,,,,,12,4730
+🟡,1F7E1,symbols,geometric,yellow circle,"circle, yellow",,Sam Eckert,2019-05-06,,,,,12,4731
+🟢,1F7E2,symbols,geometric,green circle,"circle, green",,Sam Eckert,2019-05-06,,,,,12,4732
+🔵,1F535,symbols,geometric,blue circle,"blue, circle, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4733
+🟣,1F7E3,symbols,geometric,purple circle,"circle, purple",,Sam Eckert,2019-05-06,,,,,12,4734
+🟤,1F7E4,symbols,geometric,brown circle,"brown, circle",,Sam Eckert,2019-05-06,,,,,12,4735
+⚫️,26AB,symbols,geometric,black circle,"black, circle, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4736
+⚪️,26AA,symbols,geometric,white circle,"circle, geometric, white",,Ricarda Krejci,2019-05-07,,,,,0.6,4737
+🟥,1F7E5,symbols,geometric,red square,"card, penalty, red, square",,Sam Eckert,2019-05-06,,,,,12,4738
+🟧,1F7E7,symbols,geometric,orange square,"orange, square",,Sam Eckert,2019-05-06,,,,,12,4739
+🟨,1F7E8,symbols,geometric,yellow square,"card, penalty, square, yellow",,Sam Eckert,2019-05-06,,,,,12,4740
+🟩,1F7E9,symbols,geometric,green square,"green, square",,Sam Eckert,2019-05-06,,,,,12,4741
+🟦,1F7E6,symbols,geometric,blue square,"blue, square",,Sam Eckert,2019-05-06,,,,,12,4742
+🟪,1F7EA,symbols,geometric,purple square,"purple, square",,Sam Eckert,2019-05-06,,,,,12,4743
+🟫,1F7EB,symbols,geometric,brown square,"brown, square",,Sam Eckert,2019-05-06,,,,,12,4744
+⬛️,2B1B,symbols,geometric,black large square,"black, geometric, large, square",,Laura Schießer,2019-05-06,,,,,0.6,4745
+⬜️,2B1C,symbols,geometric,white large square,"geometric, large, square, white",,Laura Schießer,2019-05-06,,,,,0.6,4746
+◼️,25FC,symbols,geometric,black medium square,"black, geometric, medium, square",,Laura Schießer,2019-05-06,,,,,0.6,4748
+◻️,25FB,symbols,geometric,white medium square,"geometric, medium, square, white",,Laura Schießer,2019-05-06,,,,,0.6,4750
+◾️,25FE,symbols,geometric,black medium-small square,"black, geometric, medium-small, square",,Laura Schießer,2019-05-06,,,,,0.6,4751
+◽️,25FD,symbols,geometric,white medium-small square,"geometric, medium-small, square, white",,Laura Schießer,2019-05-06,,,,,0.6,4752
+▪️,25AA,symbols,geometric,black small square,"black, geometric, small, square",,Laura Schießer,2019-05-06,,,,,0.6,4754
+▫️,25AB,symbols,geometric,white small square,"geometric, small, square, white",,Laura Schießer,2019-05-06,,,,,0.6,4756
+🔶,1F536,symbols,geometric,large orange diamond,"diamond, geometric, large, orange",,Laura Schießer,2019-05-06,,,,,0.6,4757
+🔷,1F537,symbols,geometric,large blue diamond,"blue, diamond, geometric, large",,Ricarda Krejci,2019-05-07,,,,,0.6,4758
+🔸,1F538,symbols,geometric,small orange diamond,"diamond, geometric, orange, small",,Ricarda Krejci,2019-05-07,,,,,0.6,4759
+🔹,1F539,symbols,geometric,small blue diamond,"blue, diamond, geometric, small",,Ricarda Krejci,2019-05-07,,,,,0.6,4760
+🔺,1F53A,symbols,geometric,red triangle pointed up,"geometric, pointed, red, triangle, up",,Lisa Schulz,2018-04-18,,,,,0.6,4761
+🔻,1F53B,symbols,geometric,red triangle pointed down,"down, geometric, pointed, red, triangle",,Lisa Schulz,2018-04-18,,,,,0.6,4762
+💠,1F4A0,symbols,geometric,diamond with a dot,"comic, diamond, dot, geometric",,Ricarda Krejci,2019-05-07,,,,,0.6,4763
+🔘,1F518,symbols,geometric,radio button,"button, geometric, radio",,Lisa Schulz,2018-04-18,,,,,0.6,4764
+🔳,1F533,symbols,geometric,white square button,"button, geometric, outlined, square, white",,Ricarda Krejci,2019-05-07,,,,,0.6,4765
+🔲,1F532,symbols,geometric,black square button,"black, button, geometric, square",,Ricarda Krejci,2019-05-07,,,,,0.6,4766
+🏁,1F3C1,flags,flag,chequered flag,"checkered, chequered, finish, flag, flags, game, race, racing, sport, win",,Aileen Gedrat,2018-11-16,,,,,0.6,4767
+🚩,1F6A9,flags,flag,triangular flag,"construction, flag, golf, post, triangular",,Aileen Gedrat,2018-11-16,,,,,0.6,4768
+🎌,1F38C,flags,flag,crossed flags,"celebration, cross, crossed, flags, japanese",,Laura Dworatschek,2019-05-06,,,,,0.6,4769
+🏴,1F3F4,flags,flag,black flag,"black, flag, waving",,Aileen Gedrat,2018-11-16,,,,,1,4770
+🏳️,1F3F3,flags,flag,white flag,"flag, waving, white",,Aileen Gedrat,2018-11-16,,,,,0.7,4772
+🏳️‍🌈,1F3F3-FE0F-200D-1F308,flags,flag,rainbow flag,"bisexual, flag, gay, genderqueer, glbt, glbtq, lesbian, lgbt, lgbtq, lgbtqia, pride, queer, rainbow, trans, transgender",,Romain Bazile,2019-09-11,,,,,4,4773
+🏳️‍⚧️,1F3F3-FE0F-200D-26A7-FE0F,flags,flag,transgender flag,"blue, flag, light, pink, transgender, white",,Carlin MacKenzie,2020-01-09,,,,,13,4775
+🏴‍☠️,1F3F4-200D-2620-FE0F,flags,flag,pirate flag,"flag, jolly, pirate, plunder, roger, treasure",,Aileen Gedrat,2018-11-16,,,,,11,4779
+🇦🇨,1F1E6-1F1E8,flags,country-flag,flag: Ascension Island,"AC, flag",,Aileen Gedrat,2019-02-13,,,,,2,4781
+🇦🇩,1F1E6-1F1E9,flags,country-flag,flag: Andorra,"AD, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4782
+🇦🇪,1F1E6-1F1EA,flags,country-flag,flag: United Arab Emirates,"AE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4783
+🇦🇫,1F1E6-1F1EB,flags,country-flag,flag: Afghanistan,"AF, flag",,Aileen Gedrat,2019-02-13,,,,,2,4784
+🇦🇬,1F1E6-1F1EC,flags,country-flag,flag: Antigua & Barbuda,"AG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4785
+🇦🇮,1F1E6-1F1EE,flags,country-flag,flag: Anguilla,"AI, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4786
+🇦🇱,1F1E6-1F1F1,flags,country-flag,flag: Albania,"AL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4787
+🇦🇲,1F1E6-1F1F2,flags,country-flag,flag: Armenia,"AM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4788
+🇦🇴,1F1E6-1F1F4,flags,country-flag,flag: Angola,"AO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4789
+🇦🇶,1F1E6-1F1F6,flags,country-flag,flag: Antarctica,"AQ, flag",,Carlin MacKenzie,2020-03-29,,,,,2,4790
+🇦🇷,1F1E6-1F1F7,flags,country-flag,flag: Argentina,"AR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4791
+🇦🇸,1F1E6-1F1F8,flags,country-flag,flag: American Samoa,"AS, flag",,Aileen Gedrat,2019-02-13,,,,,2,4792
+🇦🇹,1F1E6-1F1F9,flags,country-flag,flag: Austria,"AT, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4793
+🇦🇺,1F1E6-1F1FA,flags,country-flag,flag: Australia,"AU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4794
+🇦🇼,1F1E6-1F1FC,flags,country-flag,flag: Aruba,"AW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4795
+🇦🇽,1F1E6-1F1FD,flags,country-flag,flag: Åland Islands,"AX, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4796
+🇦🇿,1F1E6-1F1FF,flags,country-flag,flag: Azerbaijan,"AZ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4797
+🇧🇦,1F1E7-1F1E6,flags,country-flag,flag: Bosnia & Herzegovina,"BA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4798
+🇧🇧,1F1E7-1F1E7,flags,country-flag,flag: Barbados,"BB, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4799
+🇧🇩,1F1E7-1F1E9,flags,country-flag,flag: Bangladesh,"BD, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4800
+🇧🇪,1F1E7-1F1EA,flags,country-flag,flag: Belgium,"BE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4801
+🇧🇫,1F1E7-1F1EB,flags,country-flag,flag: Burkina Faso,"BF, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4802
+🇧🇬,1F1E7-1F1EC,flags,country-flag,flag: Bulgaria,"BG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4803
+🇧🇭,1F1E7-1F1ED,flags,country-flag,flag: Bahrain,"BH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4804
+🇧🇮,1F1E7-1F1EE,flags,country-flag,flag: Burundi,"BI, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4805
+🇧🇯,1F1E7-1F1EF,flags,country-flag,flag: Benin,"BJ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4806
+🇧🇱,1F1E7-1F1F1,flags,country-flag,flag: St. Barthélemy,"BL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4807
+🇧🇲,1F1E7-1F1F2,flags,country-flag,flag: Bermuda,"BM, flag",,Aileen Gedrat,2019-02-13,,,,,2,4808
+🇧🇳,1F1E7-1F1F3,flags,country-flag,flag: Brunei,"BN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4809
+🇧🇴,1F1E7-1F1F4,flags,country-flag,flag: Bolivia,"BO, flag",,Aileen Gedrat,2019-02-13,,,,,2,4810
+🇧🇶,1F1E7-1F1F6,flags,country-flag,flag: Caribbean Netherlands,"BQ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4811
+🇧🇷,1F1E7-1F1F7,flags,country-flag,flag: Brazil,"BR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4812
+🇧🇸,1F1E7-1F1F8,flags,country-flag,flag: Bahamas,"BS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4813
+🇧🇹,1F1E7-1F1F9,flags,country-flag,flag: Bhutan,"BT, flag",,Aileen Gedrat,2019-02-13,,,,,2,4814
+🇧🇻,1F1E7-1F1FB,flags,country-flag,flag: Bouvet Island,"BV, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4815
+🇧🇼,1F1E7-1F1FC,flags,country-flag,flag: Botswana,"BW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4816
+🇧🇾,1F1E7-1F1FE,flags,country-flag,flag: Belarus,"BY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4817
+🇧🇿,1F1E7-1F1FF,flags,country-flag,flag: Belize,"BZ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4818
+🇨🇦,1F1E8-1F1E6,flags,country-flag,flag: Canada,"CA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4819
+🇨🇨,1F1E8-1F1E8,flags,country-flag,flag: Cocos (Keeling) Islands,"CC, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4820
+🇨🇩,1F1E8-1F1E9,flags,country-flag,flag: Congo - Kinshasa,"CD, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4821
+🇨🇫,1F1E8-1F1EB,flags,country-flag,flag: Central African Republic,"CF, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4822
+🇨🇬,1F1E8-1F1EC,flags,country-flag,flag: Congo - Brazzaville,"CG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4823
+🇨🇭,1F1E8-1F1ED,flags,country-flag,flag: Switzerland,"CH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4824
+🇨🇮,1F1E8-1F1EE,flags,country-flag,flag: Côte d’Ivoire,"CI, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4825
+🇨🇰,1F1E8-1F1F0,flags,country-flag,flag: Cook Islands,"CK, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4826
+🇨🇱,1F1E8-1F1F1,flags,country-flag,flag: Chile,"CL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4827
+🇨🇲,1F1E8-1F1F2,flags,country-flag,flag: Cameroon,"CM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4828
+🇨🇳,1F1E8-1F1F3,flags,country-flag,flag: China,"CN, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,4829
+🇨🇴,1F1E8-1F1F4,flags,country-flag,flag: Colombia,"CO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4830
+🇨🇵,1F1E8-1F1F5,flags,country-flag,flag: Clipperton Island,"CP, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4831
+🇨🇶,1F1E8-1F1F6,flags,country-flag,flag: Sark,"CQ, flag",,Daniel Utz,2025-02-27,,,,,16,4832
+🇨🇷,1F1E8-1F1F7,flags,country-flag,flag: Costa Rica,"CR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4833
+🇨🇺,1F1E8-1F1FA,flags,country-flag,flag: Cuba,"CU, flag",,Carlin MacKenzie,2020-05-15,,,,,2,4834
+🇨🇻,1F1E8-1F1FB,flags,country-flag,flag: Cape Verde,"CV, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4835
+🇨🇼,1F1E8-1F1FC,flags,country-flag,flag: Curaçao,"CW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4836
+🇨🇽,1F1E8-1F1FD,flags,country-flag,flag: Christmas Island,"CX, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4837
+🇨🇾,1F1E8-1F1FE,flags,country-flag,flag: Cyprus,"CY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4838
+🇨🇿,1F1E8-1F1FF,flags,country-flag,flag: Czechia,"CZ, flag",,Carlin MacKenzie,2020-05-15,,,,,2,4839
+🇩🇪,1F1E9-1F1EA,flags,country-flag,flag: Germany,"DE, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,4840
+🇩🇬,1F1E9-1F1EC,flags,country-flag,flag: Diego Garcia,"DG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4841
+🇩🇯,1F1E9-1F1EF,flags,country-flag,flag: Djibouti,"DJ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4842
+🇩🇰,1F1E9-1F1F0,flags,country-flag,flag: Denmark,"DK, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4843
+🇩🇲,1F1E9-1F1F2,flags,country-flag,flag: Dominica,"DM, flag",,Aileen Gedrat,2019-02-13,,,,,2,4844
+🇩🇴,1F1E9-1F1F4,flags,country-flag,flag: Dominican Republic,"DO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4845
+🇩🇿,1F1E9-1F1FF,flags,country-flag,flag: Algeria,"DZ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4846
+🇪🇦,1F1EA-1F1E6,flags,country-flag,flag: Ceuta & Melilla,"EA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4847
+🇪🇨,1F1EA-1F1E8,flags,country-flag,flag: Ecuador,"EC, flag",,Daniel Utz,2019-02-13,,,,,2,4848
+🇪🇪,1F1EA-1F1EA,flags,country-flag,flag: Estonia,"EE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4849
+🇪🇬,1F1EA-1F1EC,flags,country-flag,flag: Egypt,"EG, flag",,Daniel Utz,2019-02-13,,,,,2,4850
+🇪🇭,1F1EA-1F1ED,flags,country-flag,flag: Western Sahara,"EH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4851
+🇪🇷,1F1EA-1F1F7,flags,country-flag,flag: Eritrea,"ER, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4852
+🇪🇸,1F1EA-1F1F8,flags,country-flag,flag: Spain,"ES, flag",,Daniel Utz,2019-02-13,,,,,0.6,4853
+🇪🇹,1F1EA-1F1F9,flags,country-flag,flag: Ethiopia,"ET, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4854
+🇪🇺,1F1EA-1F1FA,flags,country-flag,flag: European Union,"EU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4855
+🇫🇮,1F1EB-1F1EE,flags,country-flag,flag: Finland,"FI, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4856
+🇫🇯,1F1EB-1F1EF,flags,country-flag,flag: Fiji,"FJ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4857
+🇫🇰,1F1EB-1F1F0,flags,country-flag,flag: Falkland Islands,"FK, flag",,Daniel Utz,2019-02-13,,,,,2,4858
+🇫🇲,1F1EB-1F1F2,flags,country-flag,flag: Micronesia,"FM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4859
+🇫🇴,1F1EB-1F1F4,flags,country-flag,flag: Faroe Islands,"FO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4860
+🇫🇷,1F1EB-1F1F7,flags,country-flag,flag: France,"FR, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,4861
+🇬🇦,1F1EC-1F1E6,flags,country-flag,flag: Gabon,"GA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4862
+🇬🇧,1F1EC-1F1E7,flags,country-flag,flag: United Kingdom,"GB, flag",,Daniel Utz,2019-02-13,,,,,0.6,4863
+🇬🇩,1F1EC-1F1E9,flags,country-flag,flag: Grenada,"GD, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4864
+🇬🇪,1F1EC-1F1EA,flags,country-flag,flag: Georgia,"GE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4865
+🇬🇫,1F1EC-1F1EB,flags,country-flag,flag: French Guiana,"GF, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4866
+🇬🇬,1F1EC-1F1EC,flags,country-flag,flag: Guernsey,"GG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4867
+🇬🇭,1F1EC-1F1ED,flags,country-flag,flag: Ghana,"GH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4868
+🇬🇮,1F1EC-1F1EE,flags,country-flag,flag: Gibraltar,"GI, flag",,Daniel Utz,2019-02-13,,,,,2,4869
+🇬🇱,1F1EC-1F1F1,flags,country-flag,flag: Greenland,"GL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4870
+🇬🇲,1F1EC-1F1F2,flags,country-flag,flag: Gambia,"GM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4871
+🇬🇳,1F1EC-1F1F3,flags,country-flag,flag: Guinea,"GN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4872
+🇬🇵,1F1EC-1F1F5,flags,country-flag,flag: Guadeloupe,"GP, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4873
+🇬🇶,1F1EC-1F1F6,flags,country-flag,flag: Equatorial Guinea,"GQ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4874
+🇬🇷,1F1EC-1F1F7,flags,country-flag,flag: Greece,"GR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4875
+🇬🇸,1F1EC-1F1F8,flags,country-flag,flag: South Georgia & South Sandwich Islands,"GS, flag",,Daniel Utz,2019-02-13,,,,,2,4876
+🇬🇹,1F1EC-1F1F9,flags,country-flag,flag: Guatemala,"GT, flag",,Daniel Utz,2019-02-13,,,,,2,4877
+🇬🇺,1F1EC-1F1FA,flags,country-flag,flag: Guam,"GU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4878
+🇬🇼,1F1EC-1F1FC,flags,country-flag,flag: Guinea-Bissau,"GW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4879
+🇬🇾,1F1EC-1F1FE,flags,country-flag,flag: Guyana,"GY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4880
+🇭🇰,1F1ED-1F1F0,flags,country-flag,flag: Hong Kong SAR China,"HK, flag",,Carlin MacKenzie,2020-03-30,,,,,2,4881
+🇭🇲,1F1ED-1F1F2,flags,country-flag,flag: Heard & McDonald Islands,"HM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4882
+🇭🇳,1F1ED-1F1F3,flags,country-flag,flag: Honduras,"HN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4883
+🇭🇷,1F1ED-1F1F7,flags,country-flag,flag: Croatia,"HR, flag",,Benedikt Groß,2020-07-09,,,,,2,4884
+🇭🇹,1F1ED-1F1F9,flags,country-flag,flag: Haiti,"HT, flag",,Daniel Utz,2019-02-13,,,,,2,4885
+🇭🇺,1F1ED-1F1FA,flags,country-flag,flag: Hungary,"HU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4886
+🇮🇨,1F1EE-1F1E8,flags,country-flag,flag: Canary Islands,"IC, flag",,Daniel Utz,2019-02-13,,,,,2,4887
+🇮🇩,1F1EE-1F1E9,flags,country-flag,flag: Indonesia,"ID, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4888
+🇮🇪,1F1EE-1F1EA,flags,country-flag,flag: Ireland,"IE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4889
+🇮🇱,1F1EE-1F1F1,flags,country-flag,flag: Israel,"IL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4890
+🇮🇲,1F1EE-1F1F2,flags,country-flag,flag: Isle of Man,"IM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4891
+🇮🇳,1F1EE-1F1F3,flags,country-flag,flag: India,"IN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4892
+🇮🇴,1F1EE-1F1F4,flags,country-flag,flag: British Indian Ocean Territory,"IO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4893
+🇮🇶,1F1EE-1F1F6,flags,country-flag,flag: Iraq,"IQ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4894
+🇮🇷,1F1EE-1F1F7,flags,country-flag,flag: Iran,"IR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4895
+🇮🇸,1F1EE-1F1F8,flags,country-flag,flag: Iceland,"IS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4896
+🇮🇹,1F1EE-1F1F9,flags,country-flag,flag: Italy,"IT, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,4897
+🇯🇪,1F1EF-1F1EA,flags,country-flag,flag: Jersey,"JE, flag",,Daniel Utz,2019-02-13,,,,,2,4898
+🇯🇲,1F1EF-1F1F2,flags,country-flag,flag: Jamaica,"JM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4899
+🇯🇴,1F1EF-1F1F4,flags,country-flag,flag: Jordan,"JO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4900
+🇯🇵,1F1EF-1F1F5,flags,country-flag,flag: Japan,"JP, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,4901
+🇰🇪,1F1F0-1F1EA,flags,country-flag,flag: Kenya,"KE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4902
+🇰🇬,1F1F0-1F1EC,flags,country-flag,flag: Kyrgyzstan,"KG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4903
+🇰🇭,1F1F0-1F1ED,flags,country-flag,flag: Cambodia,"KH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4904
+🇰🇮,1F1F0-1F1EE,flags,country-flag,flag: Kiribati,"KI, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4905
+🇰🇲,1F1F0-1F1F2,flags,country-flag,flag: Comoros,"KM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4906
+🇰🇳,1F1F0-1F1F3,flags,country-flag,flag: St. Kitts & Nevis,"KN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4907
+🇰🇵,1F1F0-1F1F5,flags,country-flag,flag: North Korea,"KP, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4908
+🇰🇷,1F1F0-1F1F7,flags,country-flag,flag: South Korea,"KR, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,4909
+🇰🇼,1F1F0-1F1FC,flags,country-flag,flag: Kuwait,"KW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4910
+🇰🇾,1F1F0-1F1FE,flags,country-flag,flag: Cayman Islands,"KY, flag",,Daniel Utz,2019-02-13,,,,,2,4911
+🇰🇿,1F1F0-1F1FF,flags,country-flag,flag: Kazakhstan,"KZ, flag",,Carlin MacKenzie,2020-03-29,,,,,2,4912
+🇱🇦,1F1F1-1F1E6,flags,country-flag,flag: Laos,"LA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4913
+🇱🇧,1F1F1-1F1E7,flags,country-flag,flag: Lebanon,"LB, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4914
+🇱🇨,1F1F1-1F1E8,flags,country-flag,flag: St. Lucia,"LC, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4915
+🇱🇮,1F1F1-1F1EE,flags,country-flag,flag: Liechtenstein,"LI, flag",,Daniel Utz,2019-02-13,,,,,2,4916
+🇱🇰,1F1F1-1F1F0,flags,country-flag,flag: Sri Lanka,"LK, flag",,Daniel Utz,2019-02-13,,,,,2,4917
+🇱🇷,1F1F1-1F1F7,flags,country-flag,flag: Liberia,"LR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4918
+🇱🇸,1F1F1-1F1F8,flags,country-flag,flag: Lesotho,"LS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4919
+🇱🇹,1F1F1-1F1F9,flags,country-flag,flag: Lithuania,"LT, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4920
+🇱🇺,1F1F1-1F1FA,flags,country-flag,flag: Luxembourg,"LU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4921
+🇱🇻,1F1F1-1F1FB,flags,country-flag,flag: Latvia,"LV, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4922
+🇱🇾,1F1F1-1F1FE,flags,country-flag,flag: Libya,"LY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4923
+🇲🇦,1F1F2-1F1E6,flags,country-flag,flag: Morocco,"MA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4924
+🇲🇨,1F1F2-1F1E8,flags,country-flag,flag: Monaco,"MC, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4925
+🇲🇩,1F1F2-1F1E9,flags,country-flag,flag: Moldova,"MD, flag",,Pascal Ligon,2019-02-13,,,,,2,4926
+🇲🇪,1F1F2-1F1EA,flags,country-flag,flag: Montenegro,"ME, flag",,Daniel Utz,2019-02-13,,,,,2,4927
+🇲🇫,1F1F2-1F1EB,flags,country-flag,flag: St. Martin,"MF, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4928
+🇲🇬,1F1F2-1F1EC,flags,country-flag,flag: Madagascar,"MG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4929
+🇲🇭,1F1F2-1F1ED,flags,country-flag,flag: Marshall Islands,"MH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4930
+🇲🇰,1F1F2-1F1F0,flags,country-flag,flag: North Macedonia,"MK, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4931
+🇲🇱,1F1F2-1F1F1,flags,country-flag,flag: Mali,"ML, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4932
+🇲🇲,1F1F2-1F1F2,flags,country-flag,flag: Myanmar (Burma),"MM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4933
+🇲🇳,1F1F2-1F1F3,flags,country-flag,flag: Mongolia,"MN, flag",,Pascal Ligon,2019-02-13,,,,,2,4934
+🇲🇴,1F1F2-1F1F4,flags,country-flag,flag: Macao SAR China,"MO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4935
+🇲🇵,1F1F2-1F1F5,flags,country-flag,flag: Northern Mariana Islands,"MP, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4936
+🇲🇶,1F1F2-1F1F6,flags,country-flag,flag: Martinique,"MQ, flag",,Natalia Kenig,2024-10-07,,,,,2,4937
+🇲🇷,1F1F2-1F1F7,flags,country-flag,flag: Mauritania,"MR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4938
+🇲🇸,1F1F2-1F1F8,flags,country-flag,flag: Montserrat,"MS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4939
+🇲🇹,1F1F2-1F1F9,flags,country-flag,flag: Malta,"MT, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4940
+🇲🇺,1F1F2-1F1FA,flags,country-flag,flag: Mauritius,"MU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4941
+🇲🇻,1F1F2-1F1FB,flags,country-flag,flag: Maldives,"MV, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4942
+🇲🇼,1F1F2-1F1FC,flags,country-flag,flag: Malawi,"MW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4943
+🇲🇽,1F1F2-1F1FD,flags,country-flag,flag: Mexico,"MX, flag",,Daniel Utz,2019-02-13,,,,,2,4944
+🇲🇾,1F1F2-1F1FE,flags,country-flag,flag: Malaysia,"MY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4945
+🇲🇿,1F1F2-1F1FF,flags,country-flag,flag: Mozambique,"MZ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4946
+🇳🇦,1F1F3-1F1E6,flags,country-flag,flag: Namibia,"NA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4947
+🇳🇨,1F1F3-1F1E8,flags,country-flag,flag: New Caledonia,"NC, flag",,Carlin MacKenzie,2020-06-18,,,,,2,4948
+🇳🇪,1F1F3-1F1EA,flags,country-flag,flag: Niger,"NE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4949
+🇳🇫,1F1F3-1F1EB,flags,country-flag,flag: Norfolk Island,"NF, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4950
+🇳🇬,1F1F3-1F1EC,flags,country-flag,flag: Nigeria,"NG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4951
+🇳🇮,1F1F3-1F1EE,flags,country-flag,flag: Nicaragua,"NI, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4952
+🇳🇱,1F1F3-1F1F1,flags,country-flag,flag: Netherlands,"NL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4953
+🇳🇴,1F1F3-1F1F4,flags,country-flag,flag: Norway,"NO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4954
+🇳🇵,1F1F3-1F1F5,flags,country-flag,flag: Nepal,"NP, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4955
+🇳🇷,1F1F3-1F1F7,flags,country-flag,flag: Nauru,"NR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4956
+🇳🇺,1F1F3-1F1FA,flags,country-flag,flag: Niue,"NU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4957
+🇳🇿,1F1F3-1F1FF,flags,country-flag,flag: New Zealand,"NZ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4958
+🇴🇲,1F1F4-1F1F2,flags,country-flag,flag: Oman,"OM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4959
+🇵🇦,1F1F5-1F1E6,flags,country-flag,flag: Panama,"PA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4960
+🇵🇪,1F1F5-1F1EA,flags,country-flag,flag: Peru,"PE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4961
+🇵🇫,1F1F5-1F1EB,flags,country-flag,flag: French Polynesia,"PF, flag",,Pascal Ligon,2019-02-13,,,,,2,4962
+🇵🇬,1F1F5-1F1EC,flags,country-flag,flag: Papua New Guinea,"PG, flag",,Daniel Utz,2019-02-13,,,,,2,4963
+🇵🇭,1F1F5-1F1ED,flags,country-flag,flag: Philippines,"PH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4964
+🇵🇰,1F1F5-1F1F0,flags,country-flag,flag: Pakistan,"PK, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4965
+🇵🇱,1F1F5-1F1F1,flags,country-flag,flag: Poland,"PL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4966
+🇵🇲,1F1F5-1F1F2,flags,country-flag,flag: St. Pierre & Miquelon,"PM, flag",,Daniel Utz,2019-02-13,,,,,2,4967
+🇵🇳,1F1F5-1F1F3,flags,country-flag,flag: Pitcairn Islands,"PN, flag",,Daniel Utz,2019-02-13,,,,,2,4968
+🇵🇷,1F1F5-1F1F7,flags,country-flag,flag: Puerto Rico,"PR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4969
+🇵🇸,1F1F5-1F1F8,flags,country-flag,flag: Palestinian Territories,"PS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4970
+🇵🇹,1F1F5-1F1F9,flags,country-flag,flag: Portugal,"PT, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4971
+🇵🇼,1F1F5-1F1FC,flags,country-flag,flag: Palau,"PW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4972
+🇵🇾,1F1F5-1F1FE,flags,country-flag,flag: Paraguay,"PY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4973
+🇶🇦,1F1F6-1F1E6,flags,country-flag,flag: Qatar,"QA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4974
+🇷🇪,1F1F7-1F1EA,flags,country-flag,flag: Réunion,"RE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4975
+🇷🇴,1F1F7-1F1F4,flags,country-flag,flag: Romania,"RO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4976
+🇷🇸,1F1F7-1F1F8,flags,country-flag,flag: Serbia,"RS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4977
+🇷🇺,1F1F7-1F1FA,flags,country-flag,flag: Russia,"RU, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,4978
+🇷🇼,1F1F7-1F1FC,flags,country-flag,flag: Rwanda,"RW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4979
+🇸🇦,1F1F8-1F1E6,flags,country-flag,flag: Saudi Arabia,"SA, flag",,Daniel Utz,2019-02-13,,,,,2,4980
+🇸🇧,1F1F8-1F1E7,flags,country-flag,flag: Solomon Islands,"SB, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4981
+🇸🇨,1F1F8-1F1E8,flags,country-flag,flag: Seychelles,"SC, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4982
+🇸🇩,1F1F8-1F1E9,flags,country-flag,flag: Sudan,"SD, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4983
+🇸🇪,1F1F8-1F1EA,flags,country-flag,flag: Sweden,"SE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4984
+🇸🇬,1F1F8-1F1EC,flags,country-flag,flag: Singapore,"SG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4985
+🇸🇭,1F1F8-1F1ED,flags,country-flag,flag: St. Helena,"SH, flag",,Pascal Ligon,2019-02-13,,,,,2,4986
+🇸🇮,1F1F8-1F1EE,flags,country-flag,flag: Slovenia,"SI, flag",,Pascal Ligon,2019-02-13,,,,,2,4987
+🇸🇯,1F1F8-1F1EF,flags,country-flag,flag: Svalbard & Jan Mayen,"SJ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4988
+🇸🇰,1F1F8-1F1F0,flags,country-flag,flag: Slovakia,"SK, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4989
+🇸🇱,1F1F8-1F1F1,flags,country-flag,flag: Sierra Leone,"SL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4990
+🇸🇲,1F1F8-1F1F2,flags,country-flag,flag: San Marino,"SM, flag",,Daniel Utz,2019-02-13,,,,,2,4991
+🇸🇳,1F1F8-1F1F3,flags,country-flag,flag: Senegal,"SN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4992
+🇸🇴,1F1F8-1F1F4,flags,country-flag,flag: Somalia,"SO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4993
+🇸🇷,1F1F8-1F1F7,flags,country-flag,flag: Suriname,"SR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4994
+🇸🇸,1F1F8-1F1F8,flags,country-flag,flag: South Sudan,"SS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4995
+🇸🇹,1F1F8-1F1F9,flags,country-flag,flag: São Tomé & Príncipe,"ST, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4996
+🇸🇻,1F1F8-1F1FB,flags,country-flag,flag: El Salvador,"SV, flag",,Pascal Ligon,2019-02-13,,,,,2,4997
+🇸🇽,1F1F8-1F1FD,flags,country-flag,flag: Sint Maarten,"SX, flag",,Pascal Ligon,2019-02-13,,,,,2,4998
+🇸🇾,1F1F8-1F1FE,flags,country-flag,flag: Syria,"SY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,4999
+🇸🇿,1F1F8-1F1FF,flags,country-flag,flag: Eswatini,"SZ, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5000
+🇹🇦,1F1F9-1F1E6,flags,country-flag,flag: Tristan da Cunha,"TA, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5001
+🇹🇨,1F1F9-1F1E8,flags,country-flag,flag: Turks & Caicos Islands,"TC, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5002
+🇹🇩,1F1F9-1F1E9,flags,country-flag,flag: Chad,"TD, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5003
+🇹🇫,1F1F9-1F1EB,flags,country-flag,flag: French Southern Territories,"TF, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5004
+🇹🇬,1F1F9-1F1EC,flags,country-flag,flag: Togo,"TG, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5005
+🇹🇭,1F1F9-1F1ED,flags,country-flag,flag: Thailand,"TH, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5006
+🇹🇯,1F1F9-1F1EF,flags,country-flag,flag: Tajikistan,"TJ, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5007
+🇹🇰,1F1F9-1F1F0,flags,country-flag,flag: Tokelau,"TK, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5008
+🇹🇱,1F1F9-1F1F1,flags,country-flag,flag: Timor-Leste,"TL, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5009
+🇹🇲,1F1F9-1F1F2,flags,country-flag,flag: Turkmenistan,"TM, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5010
+🇹🇳,1F1F9-1F1F3,flags,country-flag,flag: Tunisia,"TN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5011
+🇹🇴,1F1F9-1F1F4,flags,country-flag,flag: Tonga,"TO, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5012
+🇹🇷,1F1F9-1F1F7,flags,country-flag,flag: Türkiye,"TR, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5013
+🇹🇹,1F1F9-1F1F9,flags,country-flag,flag: Trinidad & Tobago,"TT, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5014
+🇹🇻,1F1F9-1F1FB,flags,country-flag,flag: Tuvalu,"TV, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5015
+🇹🇼,1F1F9-1F1FC,flags,country-flag,flag: Taiwan,"TW, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5016
+🇹🇿,1F1F9-1F1FF,flags,country-flag,flag: Tanzania,"TZ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5017
+🇺🇦,1F1FA-1F1E6,flags,country-flag,flag: Ukraine,"UA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5018
+🇺🇬,1F1FA-1F1EC,flags,country-flag,flag: Uganda,"UG, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5019
+🇺🇲,1F1FA-1F1F2,flags,country-flag,flag: U.S. Outlying Islands,"UM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5020
+🇺🇳,1F1FA-1F1F3,flags,country-flag,flag: United Nations,"UN, flag",,Daniela Ivandikov,2019-02-13,,,,,4,5021
+🇺🇸,1F1FA-1F1F8,flags,country-flag,flag: United States,"US, flag",,Ferdinand Sorg,2019-02-13,,,,,0.6,5022
+🇺🇾,1F1FA-1F1FE,flags,country-flag,flag: Uruguay,"UY, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5023
+🇺🇿,1F1FA-1F1FF,flags,country-flag,flag: Uzbekistan,"UZ, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5024
+🇻🇦,1F1FB-1F1E6,flags,country-flag,flag: Vatican City,"VA, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5025
+🇻🇨,1F1FB-1F1E8,flags,country-flag,flag: St. Vincent & Grenadines,"VC, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5026
+🇻🇪,1F1FB-1F1EA,flags,country-flag,flag: Venezuela,"VE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5027
+🇻🇬,1F1FB-1F1EC,flags,country-flag,flag: British Virgin Islands,"VG, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5028
+🇻🇮,1F1FB-1F1EE,flags,country-flag,flag: U.S. Virgin Islands,"VI, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5029
+🇻🇳,1F1FB-1F1F3,flags,country-flag,flag: Vietnam,"VN, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5030
+🇻🇺,1F1FB-1F1FA,flags,country-flag,flag: Vanuatu,"VU, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5031
+🇼🇫,1F1FC-1F1EB,flags,country-flag,flag: Wallis & Futuna,"WF, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5032
+🇼🇸,1F1FC-1F1F8,flags,country-flag,flag: Samoa,"WS, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5033
+🇽🇰,1F1FD-1F1F0,flags,country-flag,flag: Kosovo,"XK, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5034
+🇾🇪,1F1FE-1F1EA,flags,country-flag,flag: Yemen,"YE, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5035
+🇾🇹,1F1FE-1F1F9,flags,country-flag,flag: Mayotte,"YT, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5036
+🇿🇦,1F1FF-1F1E6,flags,country-flag,flag: South Africa,"ZA, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5037
+🇿🇲,1F1FF-1F1F2,flags,country-flag,flag: Zambia,"ZM, flag",,Ferdinand Sorg,2019-02-13,,,,,2,5038
+🇿🇼,1F1FF-1F1FC,flags,country-flag,flag: Zimbabwe,"ZW, flag",,Daniela Ivandikov,2019-02-13,,,,,2,5039
+🏴󠁧󠁢󠁥󠁮󠁧󠁿,1F3F4-E0067-E0062-E0065-E006E-E0067-E007F,flags,subdivision-flag,flag: England,"flag, gbeng",,Ferdinand Sorg,2019-02-13,,,,,5,5040
+🏴󠁧󠁢󠁳󠁣󠁴󠁿,1F3F4-E0067-E0062-E0073-E0063-E0074-E007F,flags,subdivision-flag,flag: Scotland,"flag, gbsct",,Ferdinand Sorg,2019-02-13,,,,,5,5041
+🏴󠁧󠁢󠁷󠁬󠁳󠁿,1F3F4-E0067-E0062-E0077-E006C-E0073-E007F,flags,subdivision-flag,flag: Wales,"flag, gbwls",,Daniel Utz,2019-02-13,,,,,5,5042
+,E000,extras-openmoji,animals-nature,goldfish,,"goldfish, fish, water",Kai Magnus Müller,2018-04-18,,,,,,
+,E001,extras-openmoji,animals-nature,donkey,,,Baris Camli,2018-04-18,,,,,,
+,E002,extras-openmoji,animals-nature,poppy,,"poppy, remembrance, veterans",Carlin MacKenzie,2019-12-20,,,,,,
+,E003,extras-openmoji,animals-nature,doe,,"forest, hunt, antler, deer",Carlin MacKenzie,2020-03-21,,,,,,
+,E004,extras-openmoji,animals-nature,spouting-orca,,"cetacean, whale, spouting, orca, killer whale, blackfish, swim, animal, water",Selina Bauder,2018-04-18,,,,,,
+,E005,extras-openmoji,animals-nature,orca,,"cetacean, whale, orca, killer whale, blackfish, swim, animal, water",Selina Bauder,2018-04-18,,,,,,
+,E006,extras-openmoji,animals-nature,narwhal,,"cetacean, whale, swim, animal, water",Kris Kowal,2020-04-04,,,,,,
+,E007,extras-openmoji,animals-nature,beluga,,"cetacean, whale, swim, animal, water",Kris Kowal,2020-04-04,,,,,,
+,E008,extras-openmoji,animals-nature,porpoise,,"cetacean, swim, animal, water",Kris Kowal,2020-04-04,,,,,,
+,E009,extras-openmoji,animals-nature,pigeon,,"vermin, rock dove, bird, city",Carlin MacKenzie,2020-06-13,,,,,,
+,E010,extras-openmoji,animals-nature,macaw,,"tropical, jungle, exotic, parrots",Carlin MacKenzie,2020-06-13,,,,,,
+,E011,extras-openmoji,animals-nature,microbe,,"amoeba, bacteria, virus",Ricarda Krejci,2019-05-07,,,,,,
+,E040,extras-openmoji,brand,Twitter,,,Baris Camli,2018-04-18,,,,,,
+,E041,extras-openmoji,brand,pinterest,,"social, platform, pins",Kai Wanschura,2018-04-18,,,,,,
+,E042,extras-openmoji,brand,facebook,,"facebook, company, social-media",Kai Magnus Müller,2018-04-18,,,,,,
+,E043,extras-openmoji,brand,instagram,,"instagram, facebook, company, social-media",Kai Magnus Müller,2018-04-18,,,,,,
+,E044,extras-openmoji,brand,youtube,,"social, platform, video, brand",Romain Bazile,2019-09-03,,,,,,
+,E045,extras-openmoji,brand,github,,"social, platform, code, git, brand",Romain Bazile,2019-09-06,,,,,,
+,E046,extras-openmoji,brand,linkedin,,business,Daniel Utz,2020-04-25,,,,,,
+,E047,extras-openmoji,brand,android,,google play,Alexander Müller,2020-04-26,,,,,,
+,E048,extras-openmoji,brand,musicbrainz,,music metadata,Alexander Müller,2020-10-03,,,,,,
+,E049,extras-openmoji,brand,openfoodfact,,nutrition data,Alexander Müller,2020-10-03,,,,,,
+,E04A,extras-openmoji,brand,openstreetmap,,"map, osm, geodata",Alexander Müller,2020-10-03,,,,,,
+,E04B,extras-openmoji,brand,wikidata,,open knowledge graph,Alexander Müller,2020-10-03,,,,,,
+,E04C,extras-openmoji,brand,dotnet,,"logo, net, dotnet, programming, framework",Xavier Martinez,2024-04-08,,,,,,
+,E04D,extras-openmoji,brand,golang,,"logo, go, golang, google, programming, language",Xavier Martinez,2024-06-16,,,,,,
+,E04E,extras-openmoji,brand,kotlin,,"logo, kotlin, jvm, programming, language",Xavier Martinez,2024-04-08,,,,,,
+,E04F,extras-openmoji,brand,ruby,,"logo, ruby, programming, language",Xavier Martinez,2024-04-08,,,,,,
+,E050,extras-openmoji,brand,Firefox,,"browser, fire, fox",Alexander Müller,2020-11-04,,,,,,
+,E051,extras-openmoji,brand,Safari,,"browser, compass, webkit, apple",Alexander Müller,2020-11-04,,,,,,
+,E052,extras-openmoji,brand,Opera,,browser,Alexander Müller,2020-11-04,,,,,,
+,E053,extras-openmoji,brand,Chromium,,browser,Alexander Müller,2020-11-04,,,,,,
+,E054,extras-openmoji,brand,Chrome,,"browser, google",Alexander Müller,2020-11-04,,,,,,
+,E055,extras-openmoji,brand,Netscape Navigator,,browser,Alexander Müller,2020-11-04,,,,,,
+,E056,extras-openmoji,brand,Internet Explorer,,"browser, ie, microsoft",Alexander Müller,2020-11-04,,,,,,
+,E057,extras-openmoji,brand,Edge,,"browser, microsoft",Alexander Müller,2020-11-04,,,,,,
+,E058,extras-openmoji,brand,iNaturalist,,"opendata, nature, observation",Alexander Müller,2020-11-04,,,,,,
+,E059,extras-openmoji,brand,gitlab,,"git, code",Liz Bravo,2022-03-07,,,,,,
+,E05A,extras-openmoji,brand,mastodon,,"social media, twitter",Liz Bravo,2022-03-07,,,,,,
+,E05B,extras-openmoji,brand,peertube,,"social media, youtube",Liz Bravo,2022-03-07,,,,,,
+,E05C,extras-openmoji,brand,pixelfed,,"social media, image sharing platform, photo",Liz Bravo,2022-03-07,,,,,,
+,E05D,extras-openmoji,brand,signal,,"social media, messenger, whatsapp, app",Liz Bravo,2022-03-07,,,,,,
+,E05E,extras-openmoji,brand,element,,"social media, messenger, whatsapp, app",Seth Falco,2023-05-23,,,,,,
+,E05F,extras-openmoji,brand,jellyfin,,"media, app",Jennifer Falco,2023-05-26,,,,,,
+,E060,extras-openmoji,brand,reddit,,"social, app, discussion",Allison Fister,2023-09-28,,,,,,
+,E061,extras-openmoji,brand,discord,,"social, app, video, voice, chat",Allison Fister,2023-09-28,,,,,,
+,E062,extras-openmoji,brand,c,,"logo, c, programming, language, hexagon",Xavier Martinez,2023-12-04,,,,,,
+,E063,extras-openmoji,brand,cplusplus,,"logo, c, cplusplus, plusplus, programming, language, hexagon",Xavier Martinez,2023-12-04,,,,,,
+,E064,extras-openmoji,brand,csharp,,"logo, c, csharp, sharp, programming, language, hexagon",Xavier Martinez,2023-12-04,,,,,,
+,E065,extras-openmoji,brand,chrome canary,,"logo, brand, browser, google, chrome, canary",Xavier Martinez,2023-12-04,,,,,,
+,E066,extras-openmoji,brand,firefox developer,,"logo, brand, browser, fire, fox, firefox, developer",Xavier Martinez,2023-12-04,,,,,,
+,E067,extras-openmoji,brand,firefox nightly,,"logo, brand, browser, fire, fox, firefox, nightly",Xavier Martinez,2023-12-04,,,,,,
+,E068,extras-openmoji,brand,javascript,,"logo, js, javascript, programming, language",Xavier Martinez,2023-12-04,,,,,,
+,E069,extras-openmoji,brand,typescript,,"logo, ts, typescript, programming, language",Xavier Martinez,2023-12-04,,,,,,
+,E06A,extras-openmoji,brand,webassembly,,"logo, wa, wasm, webassembly, web, assembly, browser",Xavier Martinez,2023-12-04,,,,,,
+,E06B,extras-openmoji,brand,svg,,"logo, svg, drawing, vector, vectorial, drawing",Xavier Martinez,2023-12-04,,,,,,
+,E06C,extras-openmoji,brand,markdown,,"logo, md, markdown, mark, down, markup, language",Xavier Martinez,2023-12-04,,,,,,
+,E06D,extras-openmoji,brand,winrar,,"logo, brand, winrar, win, rar",Xavier Martinez,2023-12-04,,,,,,
+,E0FF,extras-openmoji,brand,ubuntu,,Linux,Alexander Müller,2020-04-26,,,,,,
+,F000,extras-openmoji,brand,windows,,Microsoft,Alexander Müller,2020-04-26,,,,,,
+,F77A,extras-openmoji,brand,artstation,,"art, brand",Seth Falco,2023-09-09,,,,,,
+,F8FF,extras-openmoji,brand,apple,,"iOS, OSX",Alexander Müller,2020-04-26,,,,,,
+,E2C0,extras-openmoji,climate-environment,iceberg,,"Titanic, ship wreck, ice, cold, sea",Sina Grund,2020-02-18,,,,,,
+,E2C1,extras-openmoji,climate-environment,floating ice,,"glacier, polar, sea, melt",Sina Grund,2020-02-18,,,,,,
+,E2C2,extras-openmoji,climate-environment,floating ice broken,,"glacier, polar, sea, melt",Sina Grund,2020-02-18,,,,,,
+,E2C3,extras-openmoji,climate-environment,polar research station,,"Neumayer station, arctic, science",Sina Grund,2020-02-18,,,,,,
+,E2C4,extras-openmoji,climate-environment,ice core sample,,"science, research, arctic, polar",Sina Grund,2020-02-18,,,,,,
+,E2C6,extras-openmoji,climate-environment,ice shelf,,"glacier, polar, sea, melt",Sina Grund,2020-02-18,,,,,,
+,E2C7,extras-openmoji,climate-environment,ice shelf melting,,"glacier, sea, melt, climate, global, warming",Sina Grund,2020-02-18,,,,,,
+,E2C8,extras-openmoji,climate-environment,polar explorer,,"inuit, anorak with fur",Sina Grund,2020-02-18,,,,,,
+,E2C9,extras-openmoji,climate-environment,polar explorer man,,research,Sina Grund,2020-02-18,,,,,,
+,E2CA,extras-openmoji,climate-environment,polar explorer woman,,research,Sina Grund,2020-02-18,,,,,,
+,E2CB,extras-openmoji,climate-environment,oil spill,,"pollution, petrol, fossil, fuel",Ricarda Krejci,2020-02-18,,,,,,
+,E2CC,extras-openmoji,climate-environment,exhaust gases factory,,"pollution, CO2, carbon",Ricarda Krejci,2020-02-18,,,,,,
+,E2CD,extras-openmoji,climate-environment,solar energy,,"sun, panel, clean, power, renewable",Ricarda Krejci,2020-02-18,,,,,,
+,E2CE,extras-openmoji,climate-environment,meat consumption,,carnivore,Ricarda Krejci,2020-02-18,,,,,,
+,E2CF,extras-openmoji,climate-environment,exhaust gases car,,"pollution, carbon, CO2",Ricarda Krejci,2020-02-18,,,,,,
+,E2D0,extras-openmoji,climate-environment,sea level rise,,"flood, tsunami, sinking",Ricarda Krejci,2020-02-18,,,,,,
+,E2D1,extras-openmoji,climate-environment,wind energy,,"turbine, clean, power, renewable",Ricarda Krejci,2020-02-18,,,,,,
+,E2D2,extras-openmoji,climate-environment,reusable bag,,"recycle, nondisposable, tote, paper",Ricarda Krejci,2020-02-18,,,,,,
+,E2D3,extras-openmoji,climate-environment,radioactive waste,,"nuclear, hazardous",Robin Kurz,2020-02-18,,,,,,
+,E2D4,extras-openmoji,climate-environment,nuclear power plant,,"reactor, stacks, cooling",Robin Kurz,2020-02-18,,,,,,
+,E2D5,extras-openmoji,climate-environment,nuclear power plant ruin,,"Chernobyl, Fukushima, reactor",Robin Kurz,2020-02-18,,,,,,
+,E2D6,extras-openmoji,climate-environment,geiger counter,,"radiation, radioactive, science, research",Robin Kurz,2020-02-18,,,,,,
+,E2D7,extras-openmoji,climate-environment,nuclear worker man,,"radiation, protection suit",Robin Kurz,2020-02-18,,,,,,
+,E2D8,extras-openmoji,climate-environment,nuclear worker woman,,"radiation, protection suit, ",Robin Kurz,2020-02-18,,,,,,
+,E2D9,extras-openmoji,climate-environment,nuclear protection,,"radiation, suit, gas mask, nbc suit, hazmat",Robin Kurz,2020-02-18,,,,,,
+,E2DA,extras-openmoji,climate-environment,atom bomb,,"nuclear, radioactive, nuke, WW2",Robin Kurz,2020-02-18,,,,,,
+,E080,extras-openmoji,emergency,assembly point,,,Guemil Project,2019-01-14,,,,,,
+,E081,extras-openmoji,emergency,assembly group,,,Guemil Project,2019-01-14,,,,,,
+,E082,extras-openmoji,emergency,authority instruction,,,Guemil Project,2019-01-14,,,,,,
+,E083,extras-openmoji,emergency,help others,,"help elderly, help wheelchair",Guemil Project,2019-01-14,,,,,,
+,E084,extras-openmoji,emergency,drop cover hold,,earthquake safety,Guemil Project,2019-01-14,,,,,,
+,E085,extras-openmoji,emergency,evacuate,,,Guemil Project,2019-01-14,,,,,,
+,E086,extras-openmoji,emergency,evacuate vertical,,,Guemil Project,2019-01-14,,,,,,
+,E087,extras-openmoji,emergency,evacuate downstairs,,,Guemil Project,2019-01-14,,,,,,
+,E088,extras-openmoji,emergency,evacuate to shelter,,,Guemil Project,2019-01-14,,,,,,
+,E089,extras-openmoji,emergency,structural fire,,,Guemil Project,2019-01-14,,,,,,
+,E08A,extras-openmoji,emergency,wild fire,,,Guemil Project,2019-01-14,,,,,,
+,E08B,extras-openmoji,emergency,evacuate fire,,,Guemil Project,2020-11-06,,,,,,
+,E08C,extras-openmoji,emergency,warning tsunami,,,Guemil Project,2019-01-14,,,,,,
+,E08D,extras-openmoji,emergency,warning volcano,,,Guemil Project,2019-01-14,,,,,,
+,E08E,extras-openmoji,emergency,warning fire,,,Guemil Project,2019-01-14,,,,,,
+,E08F,extras-openmoji,emergency,authority,,,Guemil Project,2019-01-14,,,,,,
+,E090,extras-openmoji,emergency,first aid,,red cross,Guemil Project,2019-01-14,,,,,,
+,E091,extras-openmoji,emergency,flagged point,,white flag,Guemil Project,2019-01-14,,,,,,
+,E092,extras-openmoji,emergency,flagged building,,white flag,Guemil Project,2019-01-14,,,,,,
+,E093,extras-openmoji,emergency,authority building,,white flag,Guemil Project,2019-01-14,,,,,,
+,E094,extras-openmoji,emergency,signpost,,"orientation, crossroad",Guemil Project,2019-01-14,,,,,,
+,E095,extras-openmoji,emergency,mobile info,,,Guemil Project,2019-01-14,,,,,,
+,E096,extras-openmoji,emergency,mobile message,,,Guemil Project,2019-01-14,,,,,,
+,E097,extras-openmoji,emergency,charge plug,,low battery,Guemil Project,2019-01-14,,,,,,
+,E098,extras-openmoji,emergency,shelter,,,Guemil Project,2019-01-14,,,,,,
+,E099,extras-openmoji,emergency,volcano eruption,,volcano fumarole,Guemil Project,2019-01-14,,,,,,
+,E09A,extras-openmoji,emergency,volcano ashes,,volcano eruption,Guemil Project,2019-01-14,,,,,,
+,E09B,extras-openmoji,emergency,tsunami,,,Guemil Project,2019-01-14,,,,,,
+,E09C,extras-openmoji,emergency,earthquake,,,Guemil Project,2019-01-14,,,,,,
+,E09D,extras-openmoji,emergency,landslide,,,Guemil Project,2019-01-14,,,,,,
+,E09E,extras-openmoji,emergency,avalanche,,,Guemil Project,2019-01-14,,,,,,
+,E09F,extras-openmoji,emergency,flood,,,Guemil Project,2019-01-14,,,,,,
+,E0A0,extras-openmoji,emergency,north,,,Guemil Project,2019-01-14,,,,,,
+,E0A1,extras-openmoji,emergency,transmission,,,Guemil Project,2019-01-14,,,,,,
+,E0A2,extras-openmoji,emergency,sos stencil,,,Guemil Project,2019-01-14,,,,,,
+,E0A3,extras-openmoji,emergency,ok stencil,,,Guemil Project,2019-01-14,,,,,,
+,E0A4,extras-openmoji,emergency,no stencil,,,Guemil Project,2019-01-14,,,,,,
+,E0A5,extras-openmoji,emergency,warning strip,,,Guemil Project,2019-01-14,,,,,,
+,E0A6,extras-openmoji,emergency,warning strip right,,arrow,Guemil Project,2019-01-14,,,,,,
+,E0A7,extras-openmoji,emergency,arrow turn right,,,Guemil Project,2019-01-14,,,,,,
+,E0A8,extras-openmoji,emergency,emergency exit door,,,Guemil Project,2020-11-06,,,,,,
+,E0A9,extras-openmoji,emergency,location indicator red,,,Guemil Project,2019-01-14,,,,,,
+,E0AA,extras-openmoji,emergency,electric plug red,,,Guemil Project,2019-01-14,,,,,,
+,E0AB,extras-openmoji,emergency,timer,,"clock, alarm",Guemil Project,2019-01-14,,,,,,
+,E0AC,extras-openmoji,emergency,person with medical mask,,"coronavirus, COVID-19",Guemil Project,2020-11-06,,,,,,
+‍♀️,E0AC-200D-2640-FE0F,extras-openmoji,emergency,woman with medical mask,,"coronavirus, COVID-19",Guemil Project,2020-11-06,,,,,,
+‍♂️,E0AC-200D-2642-FE0F,extras-openmoji,emergency,man with medical mask,,"coronavirus, COVID-19",Guemil Project,2020-11-06,,,,,,
+,E0AD,extras-openmoji,emergency,person sneezing into elbow,,"coronavirus, COVID-19, dab",Guemil Project,2020-11-06,,,,,,
+‍♀️,E0AD-200D-2640-FE0F,extras-openmoji,emergency,woman sneezing into elbow,,"coronavirus, COVID-19, dab",Guemil Project,2020-11-06,,,,,,
+‍♂️,E0AD-200D-2642-FE0F,extras-openmoji,emergency,man sneezing into elbow,,"coronavirus, COVID-19, dab",Guemil Project,2020-11-06,,,,,,
+,E0AE,extras-openmoji,emergency,disinfect surface,,"coronavirus, COVID-19, sanitize, clean",Guemil Project,2020-11-06,,,,,,
+,E0AF,extras-openmoji,emergency,quarantine,,"coronavirus, COVID-19",Guemil Project,2020-11-06,,,,,,
+,E0B0,extras-openmoji,emergency,social distancing,,"coronavirus, COVID-19",Guemil Project,2020-11-06,,,,,,
+,E0B1,extras-openmoji,emergency,sanitizer spray,,"coronavirus, COVID-19, disinfect, clean",Guemil Project,2020-11-06,,,,,,
+,E0B2,extras-openmoji,emergency,wash hands,,"coronavirus, COVID-19, sanitize, clean",Guemil Project,2020-11-06,,,,,,
+,E0B3,extras-openmoji,emergency,temperature taking,,"coronavirus, COVID-19, thermometer",Guemil Project,2020-11-06,,,,,,
+,E0B4,extras-openmoji,emergency,medical gloves,,"coronavirus, COVID-19",Guemil Project,2020-11-06,,,,,,
+🇦🇶💎,1F1E6-1F1F6-1F48E,extras-openmoji,flags,true south (antarctica) flag,,"antarctica flag, antarctica, antarctic",Spangle Labs,2022-04-24,,,,,,
+🏳🟦🟩🟨,1F3F3-1F7E6-1F7E9-1F7E8,extras-openmoji,flags,berber flag,,,Daniel Utz,2022-07-01,,,,,,
+🏳️,1F3F3-FE0F,extras-openmoji,flags,white flag,,surrender,Alexander Müller,2020-05-08,,,,,,
+🏳️‍📌‍⚙️,1F3F3-FE0F-200D-1F4CC-200D-2699-FE0F,extras-openmoji,flags,nail and gear flag,,"Hello Internet, CGP Grey, Brady Haran",Alexander Müller,2020-05-08,,,,,,
+🏳️‍🟥,1F3F3-FE0F-200D-1F7E5,extras-openmoji,flags,red flag,,"socialism, communism",Alexander Müller,2020-05-08,,,,,,
+🏳️‍🟦,1F3F3-FE0F-200D-1F7E6,extras-openmoji,flags,blue flag,,,Alexander Müller,2020-05-08,,,,,,
+🏳️‍🟦‍🌌,1F3F3-FE0F-200D-1F7E6-200D-1F30C,extras-openmoji,flags,united federation of planets flag (star trek),,"Star Trek, future, utopia, trekkie, trekker, space",Alexander Müller,2020-04-25,,,,,,
+🏳️‍🟧,1F3F3-FE0F-200D-1F7E7,extras-openmoji,flags,orange flag,,"maratha, pirate party, Christian democracy",Alexander Müller,2020-05-08,,,,,,
+🏳️‍🟨,1F3F3-FE0F-200D-1F7E8,extras-openmoji,flags,yellow flag,,"Quebec, yellow jack",Alexander Müller,2020-05-08,,,,,,
+🏳️‍🟩,1F3F3-FE0F-200D-1F7E9,extras-openmoji,flags,green flag,,"green party, environmentalism",Alexander Müller,2020-05-08,,,,,,
+🏳️‍🟩‍⭐‍🟩,1F3F3-FE0F-200D-1F7E9-200D-2B50-200D-1F7E9,extras-openmoji,flags,esperanto flag,,"constructed, Zamenhof",Carlin MacKenzie,2020-04-08,,,,,,
+🏳️‍🟪,1F3F3-FE0F-200D-1F7EA,extras-openmoji,flags,purple flag,,,Alexander Müller,2020-05-08,,,,,,
+🏳️‍🟫,1F3F3-FE0F-200D-1F7EB,extras-openmoji,flags,brown flag,,,Alexander Müller,2020-05-08,,,,,,
+🏴️‍🅰️,1F3F4-FE0F-200D-1F170-FE0F,extras-openmoji,flags,red and black flag,,"anarchist flag, bisected flag",Sam Hocevar,2021-03-15,,,,,,
+⚑️‍🟥,2691-FE0F-200D-1F7E5,extras-openmoji,flags,deep red flag,,"socialism, communism",Alexander Müller,2020-05-08,,,,,,
+⚑️‍🟦,2691-FE0F-200D-1F7E6,extras-openmoji,flags,deep blue flag,,,Alexander Müller,2020-05-08,,,,,,
+⚑️‍🟧,2691-FE0F-200D-1F7E7,extras-openmoji,flags,deep orange flag,,"maratha, pirate party, Christian democracy",Alexander Müller,2020-05-08,,,,,,
+⚑️‍🟨,2691-FE0F-200D-1F7E8,extras-openmoji,flags,deep yellow flag,,"Quebec, yellow jack",Alexander Müller,2020-05-08,,,,,,
+⚑️‍🟩,2691-FE0F-200D-1F7E9,extras-openmoji,flags,deep green flag,,"green party, environmentalism",Alexander Müller,2020-05-08,,,,,,
+⚑️‍🟩‍★️,2691-FE0F-200D-1F7E9-200D-2605-FE0F,extras-openmoji,flags,browncoat flag,,"Firefly, Serenity, independent planets",Alexander Müller,2020-05-08,,,,,,
+⚑️‍🟪,2691-FE0F-200D-1F7EA,extras-openmoji,flags,deep purple flag,,,Alexander Müller,2020-05-08,,,,,,
+⚑️‍🟫,2691-FE0F-200D-1F7EB,extras-openmoji,flags,deep brown flag,,,Alexander Müller,2020-05-08,,,,,,
+,E0C0,extras-openmoji,food-drink,half orange fruit,,"citrus fruits, half",Hend Hourani,2018-11-16,,,,,,
+,E0C1,extras-openmoji,food-drink,maultasche,,"swabian, schwäbisch, schwaebisch, meal, germany",Fanny Jung,2019-05-06,,,,,,
+,E0C2,extras-openmoji,food-drink,lentils with spaetzle,,"swabian, schwäbisch, meal, germany",Ricarda Krejci,2019-05-07,,,,,,
+,E0C3,extras-openmoji,food-drink,pretzel,,"swabian, schwäbisch, schwaebisch, brezel, germany",Tonia Reinhardt,2019-05-07,,,,,,
+,E0C4,extras-openmoji,food-drink,pomegranate,,"pomegranate, fruit, seeds",Carlin MacKenzie,2019-12-18,,,,,,
+,E0C5,extras-openmoji,food-drink,latte macchiato,,coffee,Alexander Müller,2020-05-11,,,,,,
+,E0C6,extras-openmoji,food-drink,roasted coffee bean,,,Alexander Müller,2020-05-11,,,,,,
+,E0C7,extras-openmoji,food-drink,cake,,"custard, cherry",Miriam Vollmeier,2018-04-18,,,,,,
+,E0C8,extras-openmoji,food-drink,champignon brown,,mushroom fungi,Liz Bravo,2021-05-04,,,,,,
+,E0C9,extras-openmoji,food-drink,champignon white,,mushroom fungi,Liz Bravo,2021-05-04,,,,,,
+,E0CA,extras-openmoji,food-drink,boule bread,,"french bread, traditional bread, round bread",Alexander Müller,2021-05-08,,,,,,
+,E0CB,extras-openmoji,food-drink,glass bottle,,water bottle,Benedikt Seidl,2023-06-04,,,,,,
+,E0CC,extras-openmoji,food-drink,plastic bottle,,water bottle,Benedikt Seidl,2023-06-04,,,,,,
+,E340,extras-openmoji,gardening,gardener man,,,Fanny Jung,2020-06-11,,,,,,
+,E341,extras-openmoji,gardening,gardener woman,,,Fanny Jung,2020-06-11,,,,,,
+,E342,extras-openmoji,gardening,gardening gloves,,,Fanny Jung,2020-06-11,,,,,,
+,E343,extras-openmoji,gardening,lawn mower,,,Fanny Jung,2020-06-11,,,,,,
+,E344,extras-openmoji,gardening,wheelbarrow,,pushcart,Fanny Jung,2020-06-11,,,,,,
+,E345,extras-openmoji,gardening,spade,,shovel,Tonia Reinhardt,2020-06-11,,,,,,
+,E346,extras-openmoji,gardening,trowel,,shovel,Tonia Reinhardt,2020-06-11,,,,,,
+,E347,extras-openmoji,gardening,axe,,"wood, chop, stump",Tonia Reinhardt,2020-06-11,,,,,,
+,E348,extras-openmoji,gardening,saw,,"foxtail, carpentry, wood, branch, rip saw",Tonia Reinhardt,2020-06-11,,,,,,
+,E300,extras-openmoji,healthcare,female doctor,,"hospital, care, surgery",Tonia Reinhardt,2010-01-31,,,,,,
+,E301,extras-openmoji,healthcare,male doctor,,"hospital, care, surgery",Fanny Jung,2010-01-31,,,,,,
+,E302,extras-openmoji,healthcare,female nurse,,"hospital, care, surgery",Tonia Reinhardt,2010-01-31,,,,,,
+,E303,extras-openmoji,healthcare,male nurse,,"hospital, care, surgery",Fanny Jung,2010-01-31,,,,,,
+,E305,extras-openmoji,healthcare,pills,,"drug, medicine, tablets, pain killers",Fanny Jung,2010-01-31,,,,,,
+,E306,extras-openmoji,healthcare,plaster,,"patch, band aid, plaster, wound, dressing, bandage",Tonia Reinhardt,2010-01-31,,,,,,
+,E307,extras-openmoji,healthcare,medication,,"drug, medicine, tablets, pain killers",Fanny Jung,2010-01-31,,,,,,
+,E308,extras-openmoji,healthcare,ecg waves,,"heartbeats, beat, hospital, electrocardiogram",Tonia Reinhardt,2010-01-31,,,,,,
+,E309,extras-openmoji,healthcare,first aid bag,,"briefcase, medicine, kit",Fanny Jung,2010-01-31,,,,,,
+,E30A,extras-openmoji,healthcare,patient file,,"hospital, record, filing",Tonia Reinhardt,2010-01-31,,,,,,
+,E30B,extras-openmoji,healthcare,patient clipboard,,"hospital, notes, transcript",Fanny Jung,2010-01-31,,,,,,
+,E30C,extras-openmoji,healthcare,saline drip,,"hospital, bag",Tonia Reinhardt,2010-01-31,,,,,,
+,E30D,extras-openmoji,healthcare,blood transfusion,,"medical, bleeding, loss",Fanny Jung,2010-01-31,,,,,,
+,E30E,extras-openmoji,healthcare,swab pliers,,"surgery, scissors",Fanny Jung,2010-01-31,,,,,,
+,E30F,extras-openmoji,healthcare,hot-water bottle,,"cramps, comfort, warm, period",Tonia Reinhardt,2010-01-31,,,,,,
+,E312,extras-openmoji,healthcare,liver,,"organ, toxins, bile",Tonia Reinhardt,2010-01-31,,,,,,
+,E313,extras-openmoji,healthcare,stomach,,"gut, digestion, bile, acid",Fanny Jung,2010-01-31,,,,,,
+,E314,extras-openmoji,healthcare,large intestine,,"organ, colon, gut",Tonia Reinhardt,2010-01-31,,,,,,
+,E315,extras-openmoji,healthcare,intestine,,"organ, digestion, colon, gut",Fanny Jung,2010-01-31,,,,,,
+,E316,extras-openmoji,healthcare,kidney,,"urine, toxins, blood, organ",Tonia Reinhardt,2010-01-31,,,,,,
+,E318,extras-openmoji,healthcare,forceps,,"surgery, tweezers, tongs",Tonia Reinhardt,2010-01-31,,,,,,
+,E319,extras-openmoji,healthcare,brain,,"cortex, grey matter, intelligence, IQ",Fanny Jung,2010-01-31,,,,,,
+,E31A,extras-openmoji,healthcare,bed linen,,"hospital, bedding, sheets",Tonia Reinhardt,2010-01-31,,,,,,
+,E31B,extras-openmoji,healthcare,bandage change,,"hospital, gauze, dressing, wound",Fanny Jung,2010-01-31,,,,,,
+,E31C,extras-openmoji,healthcare,eye pain,,"migraine, headache, strain, sore",Tonia Reinhardt,2010-01-31,,,,,,
+,E31D,extras-openmoji,healthcare,headache,,"migraine, sore, tension, stress",Fanny Jung,2010-01-31,,,,,,
+,E31E,extras-openmoji,healthcare,earache,,"tinnitus, headache, sore",Tonia Reinhardt,2010-01-31,,,,,,
+,E31F,extras-openmoji,healthcare,fracture leg,,"broken, cast, bone",Fanny Jung,2010-01-31,,,,,,
+,E320,extras-openmoji,healthcare,knee pain,,"ACL, ache, patella",Tonia Reinhardt,2010-01-31,,,,,,
+,E321,extras-openmoji,healthcare,backache,,"spine, ache, lumbar, pain",Fanny Jung,2010-01-31,,,,,,
+,E322,extras-openmoji,healthcare,joint pain,,"ache, arthritis, strain, cartilage",Tonia Reinhardt,2010-01-31,,,,,,
+,E324,extras-openmoji,healthcare,clinical thermometer,,"temperature, fever, mercury, heat",Tonia Reinhardt,2010-01-31,,,,,,
+,E325,extras-openmoji,healthcare,bandage scissors,,"hospital, gauze, dressing",Fanny Jung,2010-01-31,,,,,,
+,E326,extras-openmoji,healthcare,crutches,,"walk, broken leg, accessibility",Tonia Reinhardt,2010-01-31,,,,,,
+,E327,extras-openmoji,healthcare,wheel chair,,"accessibility, DACA, disability, mobility",Fanny Jung,2010-01-31,,,,,,
+,E328,extras-openmoji,healthcare,stretcher,,"hospital, ambulance, patient, gurney",Tonia Reinhardt,2010-01-31,,,,,,
+,E329,extras-openmoji,healthcare,ct scan,,"MRI, cat, cancer, tumour",Fanny Jung,2010-01-31,,,,,,
+,E32B,extras-openmoji,healthcare,scales,,"BMI, weight, mass, heavy",Fanny Jung,2010-01-31,,,,,,
+,E100,extras-openmoji,interaction,tap,,,Baris Camli,2018-04-18,,,,,,
+,E101,extras-openmoji,interaction,double tap,,,Baris Camli,2018-04-18,,,,,,
+,E102,extras-openmoji,interaction,three finger operation,,,Baris Camli,2018-04-18,,,,,,
+,E103,extras-openmoji,interaction,move,,,Baris Camli,2018-04-18,,,,,,
+,E104,extras-openmoji,interaction,scroll,,"vertical, y-axis, mouse, wheel, movement, up, down",Kai Wanschura,2018-04-18,,,,,,
+,E105,extras-openmoji,interaction,swipe,,"swipe, finger, move, hand, sideways, app",Kai Wanschura,2018-04-18,,,,,,
+,E106,extras-openmoji,interaction,scroll horizontal,,"x-axis, move, mouse, scrollwheel, scrolling",Kai Wanschura,2018-04-18,,,,,,
+,E107,extras-openmoji,interaction,page move,,"movement, left, right, site, document, next, previous, paper",Kai Wanschura,2018-04-18,,,,,,
+,E108,extras-openmoji,interaction,swipe left,,"finger, movement, gesture, touch, app, left, x-axis, hand",Kai Wanschura,2018-04-18,,,,,,
+,E109,extras-openmoji,interaction,swipe up,,"finger, movement, gesture, touch, app, up, y-axis, hand",Kai Wanschura,2018-04-18,,,,,,
+,E10A,extras-openmoji,interaction,swipe right,,"finger, movement, gesture, touch, app, right, x-axis, hand",Kai Wanschura,2018-04-18,,,,,,
+,E10B,extras-openmoji,interaction,swipe down,,"finger, movement, gesture, touch, app, down, y-axis, hand",Kai Wanschura,2018-04-18,,,,,,
+,E10C,extras-openmoji,interaction,finger pushing button,,"pushing, pressing, red, alarm, nuclear missile, launch, start, stop",Kai Wanschura,2018-04-18,,,,,,
+,E10D,extras-openmoji,interaction,exit,,,Baris Camli,2018-04-18,,,,,,
+,E140,extras-openmoji,objects,first aid kit,,,Baris Camli,2018-04-18,,,,,,
+,E141,extras-openmoji,objects,armchair,,,Baris Camli,2018-04-18,,,,,,
+,E142,extras-openmoji,objects,picture,,"photo, picture, frame, landscape",Kai Magnus Müller,2018-04-18,,,,,,
+,E143,extras-openmoji,objects,lighter,,"lighter, bic",Kai Magnus Müller,2018-04-18,,,,,,
+,E144,extras-openmoji,objects,outlet,,outlet,Kai Magnus Müller,2018-04-18,,,,,,
+,E145,extras-openmoji,objects,guy fawkes mask,,"mask, guy, fawkes, anonymous, vendetta",Xavier Martinez,2023-12-04,,,,,,
+,E146,extras-openmoji,objects,spätzlepresse,,"swabian, schwäbisch, schwaebisch, spätzle, germany",Fanny Jung,2019-05-06,,,,,,
+,E147,extras-openmoji,objects,european name badge,,,Selina Lange,2019-05-06,,,,,,
+,E148,extras-openmoji,objects,kehrwoche,,"swabian, schwäbisch, schwaebisch, germany, broom",Tonia Reinhardt,2019-05-07,,,,,,
+,E149,extras-openmoji,objects,tardis,,"time machine, doctor who, police booth, police box",Alexander Müller,2020-04-19,,,,,,
+,E14A,extras-openmoji,objects,motorbike helmet,,"helmet, motorbike, motorcycle, motor",Xavier Martinez,2023-12-04,,,,,,
+,E150,extras-openmoji,objects,espresso machine,,coffee,Alexander Müller,2020-05-11,,,,,,
+,E151,extras-openmoji,objects,french press,,coffee,Alexander Müller,2020-05-11,,,,,,
+,E152,extras-openmoji,objects,moka pot,,coffee,Alexander Müller,2020-05-11,,,,,,
+,E153,extras-openmoji,objects,milk jug,,"coffee, latte",Alexander Müller,2020-05-11,,,,,,
+,E154,extras-openmoji,objects,electric coffee percolator,,burned coffee,Alexander Müller,2020-05-11,,,,,,
+,E155,extras-openmoji,objects,drip coffee maker,,,Alexander Müller,2020-05-11,,,,,,
+,E156,extras-openmoji,objects,coffee grinder,,,Alexander Müller,2020-05-11,,,,,,
+,E157,extras-openmoji,objects,horse jumping hurdle,,equestrian,Carlin MacKenzie,2020-09-13,,,,,,
+👨‍🪩,1F468-200D-1FAA9,extras-openmoji,people,dj man,,"party, disc jockey, Diskjockey, music, rave, techno",Liz Bravo,2022-07-01,,,,,,
+👩‍🪩,1F469-200D-1FAA9,extras-openmoji,people,dj woman,,"party, disc jockey, Diskjockey, music, rave, techno",Liz Bravo,2022-07-01,,,,,,
+🧑‍🪩,1F9D1-200D-1FAA9,extras-openmoji,people,dj,,"party, disc jockey, Diskjockey, music, rave, techno",Liz Bravo,2022-07-01,,,,,,
+,E181,extras-openmoji,people,drunk person,,"person, person-activity, person-gesture, person-sport, drunk, alcohol, party, beer, drinking",Johanna Wellnitz,2018-04-18,,,,,,
+,E182,extras-openmoji,people,person with dog,,"person, person-activity, dog, walking, animal, pet",Johanna Wellnitz,2018-04-18,,,,,,
+,E183,extras-openmoji,people,trump,,"trump, donald, president, america, usa",Sina Schulz,2018-04-18,,,,,,
+,E184,extras-openmoji,people,horse riding,,equestrian,Johanna Wellnitz,2018-04-18,,,,,,
+,E185,extras-openmoji,people,barista,,person,Alexander Müller,2020-05-11,,,,,,
+,E186,extras-openmoji,people,man barista,,male,Alexander Müller,2020-05-11,,,,,,
+,E187,extras-openmoji,people,woman barista,,female,Alexander Müller,2020-05-11,,,,,,
+,E188,extras-openmoji,people,Greta Thunberg,,"climate change, Sweden, activist, Fridays for Future, FFF",Daniel Utz,2020-06-02,,,,,,
+,E189,extras-openmoji,people,windsurfing,,"windsurfing, watersport, surf, wave, sea", Mostafa Hussein Omar, 2023-10-09,,,,,,
+,E280,extras-openmoji,smileys-emotion,exhausted face,,"exhausted, sleepy, tired, face",Mariella Steeb,2018-04-18,,,,,,
+,E281,extras-openmoji,smileys-emotion,incredulous face,,"incredulous, disbelief, shocked",Mariella Steeb,2018-04-18,,,,,,
+,E282,extras-openmoji,smileys-emotion,dejected face,,"sigh, ._., pensive, disappointed",Carlin MacKenzie,2020-01-10,,,,,,
+,E283,extras-openmoji,smileys-emotion,annoyed face with tongue,,"disappointed, playful, goofy, tongue out, annoyed, frustrated, childish, offended",Barkin Simsek,2021-01-16,,,,,,
+🯆‍👗,1FBC6-200D-1F457,extras-openmoji,symbol-other,stick figure with dress and arms raised,,legacy computing,Alexander Müller,2020-11-04,,,,,,
+🯇‍👗,1FBC7-200D-1F457,extras-openmoji,symbol-other,stick figure with dress leaning left,,legacy computing,Alexander Müller,2020-11-04,,,,,,
+🯈‍👗,1FBC8-200D-1F457,extras-openmoji,symbol-other,stick figure with dress leaning right,,legacy computing,Alexander Müller,2020-11-04,,,,,,
+⬡️‍🌈,2B21-FE0F-200D-1F308,extras-openmoji,symbol-other,rainbow hexagon,,pride,Alexander Müller,2020-11-14,,,,,,
+⬡️‍🟥,2B21-FE0F-200D-1F7E5,extras-openmoji,symbol-other,red hexagon,,,Alexander Müller,2020-11-14,,,,,,
+⬡️‍🟦,2B21-FE0F-200D-1F7E6,extras-openmoji,symbol-other,blue hexagon,,,Alexander Müller,2020-11-14,,,,,,
+⬡️‍🟧,2B21-FE0F-200D-1F7E7,extras-openmoji,symbol-other,orange hexagon,,,Alexander Müller,2020-11-14,,,,,,
+⬡️‍🟨,2B21-FE0F-200D-1F7E8,extras-openmoji,symbol-other,yellow hexagon,,,Alexander Müller,2020-11-14,,,,,,
+⬡️‍🟩,2B21-FE0F-200D-1F7E9,extras-openmoji,symbol-other,green hexagon,,,Alexander Müller,2020-11-14,,,,,,
+⬡️‍🟪,2B21-FE0F-200D-1F7EA,extras-openmoji,symbol-other,purple hexagon,,,Alexander Müller,2020-11-14,,,,,,
+⬡️‍🟫,2B21-FE0F-200D-1F7EB,extras-openmoji,symbol-other,brown hexagon,,,Alexander Müller,2020-11-14,,,,,,
+,E380,extras-openmoji,symbols,no handshaking,,"hygiene, agreement, virus, meeting, spread, germs",Julian Grüneberg,2020-04-05,,,,,,
+,E381,extras-openmoji,symbols,web syndication,,"feed, RSS, atom feed, podcast, subscribe, web feed",Alexander Müller,2020-04-19,,,,,,
+◉️‍🔴,25C9-FE0F-200D-1F534,extras-openmoji,technology,red eye,,"turret, AI, rogue AI, Portal",Alexander Müller,2021-10-20,,,,,,
+◉️‍🔴‍▮️,25C9-FE0F-200D-1F534-200D-25AE-FE0F,extras-openmoji,technology,HAL 9000,,"AI, artificial intelligence, rogue AI, I'm sorry Dave, I'm afraid I can't do that, 2001, Space Odyssey, Stanley Kubrick, science fiction, movie, film",Alexander Müller,2021-10-20,,,,,,
+,E1C0,extras-openmoji,technology,wireframes,,,Baris Camli,2018-04-18,,,,,,
+,E1C1,extras-openmoji,technology,code editor,,,Baris Camli,2018-04-18,,,,,,
+,E1C2,extras-openmoji,technology,autonomous car,,,Baris Camli,2018-04-18,,,,,,
+,E1C3,extras-openmoji,technology,switch,,"toggling, changeover switch, exchange counter, left, right",Kai Wanschura,2018-04-18,,,,,,
+,E1C4,extras-openmoji,technology,surveillance,,"surveillance, camera, CCTV",Kai Magnus Müller,2018-04-18,,,,,,
+,E1C6,extras-openmoji,technology,augmented reality,,,Baris Camli,2018-04-18,,,,,,
+,E1C7,extras-openmoji,technology,led,,,Baris Camli,2018-04-18,,,,,,
+,E1C8,extras-openmoji,technology,motor,,,Baris Camli,2018-04-18,,,,,,
+,E1C9,extras-openmoji,technology,raspberry pi,,,Baris Camli,2018-04-18,,,,,,
+,E1CA,extras-openmoji,technology,virtual reality,,,Baris Camli,2018-04-18,,,,,,
+,E1CB,extras-openmoji,technology,cable,,,Baris Camli,2018-04-18,,,,,,
+,E1CC,extras-openmoji,technology,tablet,,"technology, device, portable, screen, phablet, ipad",Kai Wanschura,2018-04-18,,,,,,
+,E1CD,extras-openmoji,technology,gps,,"navigation, localization, location, reception, signal, wireless, crosshair, where",Kai Wanschura,2018-04-18,,,,,,
+,E1CE,extras-openmoji,technology,smartwatch,,"clock, apps, monitor, intelligent, device, armlet",Kai Wanschura,2018-04-18,,,,,,
+,E1CF,extras-openmoji,technology,washing machine,,"clothing, garment, cleaner, home electronics, appliance",Kai Wanschura,2018-04-18,,,,,,
+,E1D0,extras-openmoji,technology,ibeacon,,"wireless, technology, iot, internet of things, navigation, localization, antenna, connection, reception",Kai Wanschura,2018-04-18,,,,,,
+,E1D1,extras-openmoji,technology,keyboard,,"keyboard, key, type",Kai Magnus Müller,2018-04-18,,,,,,
+,E1D2,extras-openmoji,technology,drone,,"drone, UAV, quadcopter, RC",Kai Magnus Müller,2018-04-18,,,,,,
+,E1D3,extras-openmoji,technology,arduino,,"arduino, prototyping, electric, sensor",Kai Magnus Müller,2018-04-18,,,,,,
+,E1D4,extras-openmoji,technology,wire,,"wire, cord, electric, litz-wire",Kai Magnus Müller,2018-04-18,,,,,,
+,E1D5,extras-openmoji,technology,potentiometer,,potentiometer,Kai Magnus Müller,2018-04-18,,,,,,
+,E1D6,extras-openmoji,technology,solar cell,,"solar, module, cell, photovoltaic",Kai Magnus Müller,2018-04-18,,,,,,
+,E1D7,extras-openmoji,technology,circuit,,"circuit, electric, prototype",Kai Magnus Müller,2018-04-18,,,,,,
+,E1D8,extras-openmoji,technology,qr code,,"scan, tag, matrix, barcode, quick response",Alexander Müller,2021-10-08,,,,,,
+,E1D9,extras-openmoji,technology,barcode,,"scan, tag, machine readable, data",Alexander Müller,2021-10-20,,,,,,
+,E200,extras-openmoji,travel-places,cafeteria,,,Baris Camli,2018-04-18,,,,,,
+,E201,extras-openmoji,travel-places,emergency exit,,"alarm, fire, escape, way, route, guidance, signage, run, person, people, humans",Kai Wanschura,2018-04-18,,,,,,
+,E202,extras-openmoji,travel-places,stairway,,"steps, up, down, ascend, descend, walk",Kai Wanschura,2018-04-18,,,,,,
+,E203,extras-openmoji,travel-places,town,,"city, village, town",Kai Magnus Müller,2018-04-18,,,,,,
+,E204,extras-openmoji,travel-places,elevator,,elevator,Kai Magnus Müller,2018-04-18,,,,,,
+,E205,extras-openmoji,travel-places,eiffel tower,,"paris, tower, france",Louisa Mantsch,2018-11-16,,,,,,
+,E206,extras-openmoji,travel-places,parking garage,,"parking lot, car, automobile, vehicle, sign, traffic sign, p",Kai Wanschura,2018-04-18,,,,,,
+,E207,extras-openmoji,travel-places,schwäbisch gmünd forum gold und silber,,"swabian, schwäbisch, schwaebisch, germany, schwaebisch gmuend",Ricarda Krejci,2019-05-07,,,,,,
+,E208,extras-openmoji,travel-places,schwäbisch gmünd fünfknopfturm,,"tower, schwaebisch gmuend",Ricarda Krejci,2019-05-07,,,,,,
+,E209,extras-openmoji,travel-places,schwäbisch gmünd ratshaus,,"town hall, schwaebisch gmuend",Ricarda Krejci,2019-05-07,,,,,,
+,E20A,extras-openmoji,travel-places,stuttgart fernsehturm,,"swabian, schwäbisch, schwaebisch, germany",Tonia Reinhardt,2019-05-07,,,,,,
+,E20B,extras-openmoji,travel-places,space shuttle,,"nasa, shuttle, rocket, space, galaxy, adventure, alien, transportation",Ronja Bäurlen,2018-04-18,,,,,,
+,E20C,extras-openmoji,travel-places,viennese coffee house,,viennese coffee culture,Alexander Müller,2020-05-11,,,,,,
+,E20D,extras-openmoji,travel-places,black hole,,"interstellar, event horizon, accretion disc",Alexander Müller,2020-06-28,,,,,,
+,E20E,extras-openmoji,travel-places,foggy mountain,,"fog, weather, berg, peak, elevation, hiking",Jonas Dunkel,2019-05-07,,,,,,
+,E20F,extras-openmoji,travel-places,great pyramid of giza,,"seven wonders of the ancient world, egypt",Niklas Kuntz,2022-07-01,,,,,,
+,E210,extras-openmoji,travel-places,colossus of rhodes,,"seven wonders of the ancient world, greece",Niklas Kuntz,2022-07-01,,,,,,
+,E211,extras-openmoji,travel-places,hanging gardens of babylon,,"seven wonders of the ancient world, iraq",Niklas Kuntz,2022-07-01,,,,,,
+,E212,extras-openmoji,travel-places,lighthouse of alexandria,,"seven wonders of the ancient world, egypt",Niklas Kuntz,2022-07-01,,,,,,
+,E213,extras-openmoji,travel-places,mausoleum at halicarnassus,,"seven wonders of the ancient world, turkey",Niklas Kuntz,2022-07-01,,,,,,
+,E214,extras-openmoji,travel-places,statue of zeus at olympia,,"seven wonders of the ancient world, greece",Niklas Kuntz,2022-07-01,,,,,,
+,E215,extras-openmoji,travel-places,temple of artemis at ephesus,,"seven wonders of the ancient world, turkey",Niklas Kuntz,2022-07-01,,,,,,
+,E216,extras-openmoji,travel-places,moai,,"stone, easter island",Liz Bravo,2022-07-05,,,,,,
+,E240,extras-openmoji,ui-element,mark,,,Baris Camli,2018-04-18,,,,,,
+,E241,extras-openmoji,ui-element,toggle button,,,Baris Camli,2018-04-18,,,,,,
+,E242,extras-openmoji,ui-element,location indicator,,,Baris Camli,2018-04-18,,,,,,
+,E243,extras-openmoji,ui-element,scale,,"measurement, scaling, size, distance, meters, inches, miles, kilometers",Kai Wanschura,2018-04-18,,,,,,
+,E244,extras-openmoji,ui-element,locomotion,,"movement, transport, driving, destination, start, end, distance, track",Kai Wanschura,2018-04-18,,,,,,
+,E245,extras-openmoji,ui-element,toggle button state B,,,Baris Camli,2018-04-18,,,,,,
+,E246,extras-openmoji,ui-element,people dialogue,,"communication, talking, chatting, users, humans, conversation, two, face-to-face",Kai Wanschura,2018-04-18,,,,,,
+,E247,extras-openmoji,ui-element,safety,,,Baris Camli,2018-04-18,,,,,,
+,E248,extras-openmoji,ui-element,chats,,"messaging, typing, message, text, writing, write, dialog",Kai Wanschura,2018-04-18,,,,,,
+,E249,extras-openmoji,ui-element,collaboration,,"collab, team, teamwork, group, work, communication, circle",Kai Wanschura,2018-04-18,,,,,,
+,E24A,extras-openmoji,ui-element,interview,,"interview, talk, speak, bubble",Kai Magnus Müller,2018-04-18,,,,,,
+,E24B,extras-openmoji,ui-element,intricate,,"intricate, abstract",Kai Magnus Müller,2018-04-18,,,,,,
+,E24C,extras-openmoji,ui-element,simple,,"simple, abstract",Kai Magnus Müller,2018-04-18,,,,,,
+,E24D,extras-openmoji,ui-element,return,,back button,Jose Avila,2018-04-18,,,,,,
+,E24E,extras-openmoji,ui-element,close,,,Jose Avila,2018-04-18,,,,,,
+,E24F,extras-openmoji,ui-element,forward,,,Jose Avila,2018-04-18,,,,,,
+,E250,extras-openmoji,ui-element,hamburger menu,,,Jose Avila,2018-04-18,,,,,,
+,E251,extras-openmoji,ui-element,upload,,,Jose Avila,2018-04-18,,,,,,
+,E252,extras-openmoji,ui-element,download,,,Jose Avila,2018-04-18,,,,,,
+,E253,extras-openmoji,ui-element,share,,,Jose Avila,2018-04-18,,,,,,
+,E254,extras-openmoji,ui-element,wifi,,,Baris Camli,2018-04-18,,,,,,
+,E255,extras-openmoji,ui-element,copy,,,Baris Camli,2018-04-18,,,,,,
+,E256,extras-openmoji,ui-element,contacts,,,Baris Camli,2018-04-18,,,,,,
+,E257,extras-openmoji,ui-element,filter,,,Baris Camli,2018-04-18,,,,,,
+,E258,extras-openmoji,ui-element,cursor,,pointer,Carlin MacKenzie,2020-05-03,,,,,,
+,E259,extras-openmoji,ui-element,details,,,Baris Camli,2018-04-18,,,,,,
+,E25A,extras-openmoji,ui-element,hold,,,Baris Camli,2018-04-18,,,,,,
+,E25B,extras-openmoji,ui-element,duplicate,,"make copy, second, file, create, page, document",Kai Wanschura,2018-04-18,,,,,,
+,E25C,extras-openmoji,ui-element,save,,"store, hard drive, record, hdd, harddisk, download",Kai Wanschura,2018-04-18,,,,,,
+,E25D,extras-openmoji,ui-element,edit,,"change, editing, pencil, page, document, file, write, writing, scribble",Kai Wanschura,2018-04-18,,,,,,
+,E25E,extras-openmoji,ui-element,home button,,"house, main, page, website, navigation, app, ui, symbol, internet, homepage",Kai Wanschura,2018-04-18,,,,,,
+,E25F,extras-openmoji,ui-element,add button,,"new, file, plus, more, create, set",Kai Wanschura,2018-04-18,,,,,,
+,E260,extras-openmoji,ui-element,archive,,"save, save to, library, cupboard, drawer",Kai Wanschura,2018-04-18,,,,,,
+,E261,extras-openmoji,ui-element,overview,,"overview, lines, list",Kai Wanschura,2018-04-18,,,,,,
+,E262,extras-openmoji,ui-element,delete,,"delete, bin, waste, remove",Kai Magnus Müller,2018-04-18,,,,,,
+,E263,extras-openmoji,ui-element,comment,,"comment, write",Kai Magnus Müller,2018-04-18,,,,,,
+,E264,extras-openmoji,ui-element,more information,,"more, plus, add, cross",Kai Magnus Müller,2018-04-18,,,,,,
+,E265,extras-openmoji,ui-element,sort,,"sort, list, hierarchy",Kai Magnus Müller,2018-04-18,,,,,,
+,E266,extras-openmoji,ui-element,inbox,,"entrance, inbox, in",Kai Magnus Müller,2018-04-18,,,,,,
+,E267,extras-openmoji,ui-element,compose,,"write, compose, author",Kai Magnus Müller,2018-04-18,,,,,,
+,E268,extras-openmoji,ui-element,add contact,,"add, contact",Kai Magnus Müller,2018-04-18,,,,,,
+,E269,extras-openmoji,ui-element,link,,"link, chain",Kai Magnus Müller,2018-04-18,,,,,,
+🫙‍🟥,1FAD9-200D-1F7E5,extras-unicode,food-drink,jar with red content,,"red potion, health potion, jam, jelly",Alexander Müller,2021-10-22,,,,,?,
+🫙‍🟦,1FAD9-200D-1F7E6,extras-unicode,food-drink,jar with blue content,,"blue potion, magic potion, mana potion, water",Alexander Müller,2021-10-22,,,,,?,
+🫙‍🟧,1FAD9-200D-1F7E7,extras-unicode,food-drink,jar with orange content,,"marmelade, jelly",Alexander Müller,2021-10-22,,,,,?,
+🫙‍🟨,1FAD9-200D-1F7E8,extras-unicode,food-drink,jar with yellow content,,"urine, marmelade",Alexander Müller,2021-10-22,,,,,?,
+🫙‍🟩,1FAD9-200D-1F7E9,extras-unicode,food-drink,jar with green content,,kiwi jam,Alexander Müller,2021-10-22,,,,,?,
+🫙‍🟪,1FAD9-200D-1F7EA,extras-unicode,food-drink,jar with purple content,,"potion of health and magic, jam",Alexander Müller,2021-10-22,,,,,?,
+🫙‍🟫,1FAD9-200D-1F7EB,extras-unicode,food-drink,jar with brown content,,"nutella, peanut butter, nut spread, chocolate",Alexander Müller,2021-10-22,,,,,?,
+🇦,1F1E6,extras-unicode,regional-indicator,regional indicator A,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇧,1F1E7,extras-unicode,regional-indicator,regional indicator B,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇨,1F1E8,extras-unicode,regional-indicator,regional indicator C,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇩,1F1E9,extras-unicode,regional-indicator,regional indicator D,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇪,1F1EA,extras-unicode,regional-indicator,regional indicator E,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇫,1F1EB,extras-unicode,regional-indicator,regional indicator F,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇬,1F1EC,extras-unicode,regional-indicator,regional indicator G,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇭,1F1ED,extras-unicode,regional-indicator,regional indicator H,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇮,1F1EE,extras-unicode,regional-indicator,regional indicator I,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇯,1F1EF,extras-unicode,regional-indicator,regional indicator J,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇰,1F1F0,extras-unicode,regional-indicator,regional indicator K,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇱,1F1F1,extras-unicode,regional-indicator,regional indicator L,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇲,1F1F2,extras-unicode,regional-indicator,regional indicator M,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇳,1F1F3,extras-unicode,regional-indicator,regional indicator N,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇴,1F1F4,extras-unicode,regional-indicator,regional indicator O,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇵,1F1F5,extras-unicode,regional-indicator,regional indicator P,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇶,1F1F6,extras-unicode,regional-indicator,regional indicator Q,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇷,1F1F7,extras-unicode,regional-indicator,regional indicator R,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇸,1F1F8,extras-unicode,regional-indicator,regional indicator S,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇹,1F1F9,extras-unicode,regional-indicator,regional indicator T,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇺,1F1FA,extras-unicode,regional-indicator,regional indicator U,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇻,1F1FB,extras-unicode,regional-indicator,regional indicator V,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇼,1F1FC,extras-unicode,regional-indicator,regional indicator W,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇽,1F1FD,extras-unicode,regional-indicator,regional indicator X,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇾,1F1FE,extras-unicode,regional-indicator,regional indicator Y,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🇿,1F1FF,extras-unicode,regional-indicator,regional indicator Z,,"alphabet, letter, upper case, type",Daniel Utz,2022-06-12,,,,,6,
+🏴󠁡󠁶󠁿,1F3F4-E0061-E0076-E007F,extras-unicode,subdivision-flag,Alabama flag,,alabama,Varvara Kirylchyk,2024-04-04,,,,,?,
+🏴󠁣󠁡󠁱󠁣󠁿,1F3F4-E0063-E0061-E0071-E0063-E007F,extras-unicode,subdivision-flag,quebec flag,,"fleur-de-lis, quebec, canada, province",Denis Blanchette,2021-02-10,,,,,?,
+🏴󠁤󠁥󠁢󠁥󠁿,1F3F4-E0064-E0065-E0062-E0065-E007F,extras-unicode,subdivision-flag,berlin flag,,"bear, city, capital",Alexander Müller,2020-04-26,,,,,?,
+🏴󠁤󠁥󠁢󠁹󠁿,1F3F4-E0064-E0065-E0062-E0079-E007F,extras-unicode,subdivision-flag,bavaria flag,,"state, lozenge",Manuel Strehl,2020-07-09,,,,,?,
+🏴󠁥󠁳󠁡󠁮󠁿,1F3F4-E0065-E0073-E0061-E006E-E007F,extras-unicode,subdivision-flag,andalusia flag,,"andalusia, arbonaida",Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁡󠁲󠁿,1F3F4-E0065-E0073-E0061-E0072-E007F,extras-unicode,subdivision-flag,aragon flag,,"aragon, arago",Xavier Martinez,2023-12-04,,,,,?,
+🏴󠁥󠁳󠁡󠁳󠁿,1F3F4-E0065-E0073-E0061-E0073-E007F,extras-unicode,subdivision-flag,asturian flag,,"asturian, asturina",Mikel González,2020-10-11,,,,,?,
+🏴󠁥󠁳󠁣󠁢󠁿,1F3F4-E0065-E0073-E0063-E0062-E007F,extras-unicode,subdivision-flag,cantabria flag,,cantabria,Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁣󠁥󠁿,1F3F4-E0065-E0073-E0063-E0065-E007F,extras-unicode,subdivision-flag,ceuta flag,,ceuta,Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁣󠁬󠁿,1F3F4-E0065-E0073-E0063-E006C-E007F,extras-unicode,subdivision-flag,castile and le�n flag,,"castile and le�n, castile and leon, castile, and le�n, leon",Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁣󠁭󠁿,1F3F4-E0065-E0073-E0063-E006D-E007F,extras-unicode,subdivision-flag,castile-la mancha flag,,"castile-la mancha, castile, la, mancha, castilla-la mancha, castilla",Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁣󠁮󠁿,1F3F4-E0065-E0073-E0063-E006E-E007F,extras-unicode,subdivision-flag,canary islands flag,,"canary, islands, canaries",Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁣󠁴󠁿,1F3F4-E0065-E0073-E0063-E0074-E007F,extras-unicode,subdivision-flag,catalonia flag,,"catalan, senyera",Joan Montané,2020-08-24,,,,,?,
+🏴󠁥󠁳󠁥󠁸󠁿,1F3F4-E0065-E0073-E0065-E0078-E007F,extras-unicode,subdivision-flag,extremadura flag,,extremadura,Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁧󠁡󠁿,1F3F4-E0065-E0073-E0067-E0061-E007F,extras-unicode,subdivision-flag,galicia flag,,galicia,Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁩󠁢󠁿,1F3F4-E0065-E0073-E0069-E0062-E007F,extras-unicode,subdivision-flag,balearic islands flag,,"balearic, balearic, islands, illes, balears, balears",Xavier Martinez,2023-12-04,,,,,?,
+🏴󠁥󠁳󠁭󠁣󠁿,1F3F4-E0065-E0073-E006D-E0063-E007F,extras-unicode,subdivision-flag,murcia flag,,"murcia, region",Xavier Martinez,2023-12-04,,,,,?,
+🏴󠁥󠁳󠁭󠁤󠁿,1F3F4-E0065-E0073-E006D-E0064-E007F,extras-unicode,subdivision-flag,madrid autonomous community flag,,"madrid autonomous community, madrid, autonomous, community",Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁭󠁬󠁿,1F3F4-E0065-E0073-E006D-E006C-E007F,extras-unicode,subdivision-flag,melilla flag,,melilla,Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁮󠁣󠁿,1F3F4-E0065-E0073-E006E-E0063-E007F,extras-unicode,subdivision-flag,navarra chartered community,,"navarra chartered community, navarra, chartered, community, navarre",Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁰󠁶󠁿,1F3F4-E0065-E0073-E0070-E0076-E007F,extras-unicode,subdivision-flag,basque flag,,"basque, ikurrina, euskal",Sam Hocevar,2021-03-15,,,,,?,
+🏴󠁥󠁳󠁲󠁩󠁿,1F3F4-E0065-E0073-E0072-E0069-E007F,extras-unicode,subdivision-flag,la rioja flag,,"la rioja, la, rioja",Xavier Martinez,2024-04-08,,,,,?,
+🏴󠁥󠁳󠁶󠁣󠁿,1F3F4-E0065-E0073-E0076-E0063-E007F,extras-unicode,subdivision-flag,valencian community flag,,"valencian, community, comunitat, valenciana, reial, senyera, valencia",Xavier Martinez,2023-12-04,,,,,?,
+🏴󠁦󠁲󠁢󠁲󠁥󠁿,1F3F4-E0066-E0072-E0062-E0072-E0065-E007F,extras-unicode,subdivision-flag,bretagne flag,,"breton, brittany, gwenn-ha-du",Sam Hocevar,2021-03-15,,,,,?,
+🏴󠁵󠁳󠁣󠁡󠁿,1F3F4-E0075-E0073-E0063-E0061-E007F,extras-unicode,subdivision-flag,california flag,,"bear, republic, state",Alexander Müller,2020-04-26,,,,,?,
+🏴󠁵󠁳󠁣󠁯󠁿,1F3F4-E0075-E0073-E0063-E006F-E007F,extras-unicode,subdivision-flag,colorado flag,,"colorado, mountains, state",Alex Cochran,2024-02-26,,,,,?,
+🏴󠁵󠁳󠁴󠁸󠁿,1F3F4-E0075-E0073-E0074-E0078-E007F,extras-unicode,subdivision-flag,texas flag,,"cowboy, lone star, republic, state",Carlin MacKenzie,2020-04-03,,,,,?,
+🏴󠁷󠁤󠁣󠁿,1F3F4-E0077-E0064-E0063-E007F,extras-unicode,subdivision-flag,Washington D.C.,,Washington DC,Varvara Kirylchyk,2024-02-20,,,,,?,
+-,002D,extras-unicode,symbol-other,hyphen-minus,,"hyphen, minus, dash, line",Robert Winslow,2022-12-24,,,,,1,
+🄍,1F10D,extras-unicode,symbol-other,circled zero with slash,,"license, copyright, creative commons, open, libre, public domain",Carlin MacKenzie,2020-04-17,,,,,13,
+🄎,1F10E,extras-unicode,symbol-other,circled anticlockwise arrow,,"license, copyright, creative commons, open, libre, share alike",Carlin MacKenzie,2020-04-17,,,,,13,
+🄏,1F10F,extras-unicode,symbol-other,circled dollar sign with overlaid backslash,,"license, copyright, creative commons, open, libre, non commercial",Carlin MacKenzie,2020-04-17,,,,,13,
+🄯,1F12F,extras-unicode,symbol-other,copyleft symbol,,"open source, free, libre, reciprocal",Carlin MacKenzie,2020-06-06,,,,,11,
+🅭,1F16D,extras-unicode,symbol-other,circled cc,,"license, copyright, creative commons, open, libre, public domain",Carlin MacKenzie,2020-04-17,,,,,13,
+🅮,1F16E,extras-unicode,symbol-other,circled c with overlaid backslash,,"license, copyright, creative commons, open, libre, public domain",Carlin MacKenzie,2020-04-17,,,,,13,
+🅯,1F16F,extras-unicode,symbol-other,circled human figure,,"license, copyright, creative commons, open, libre, by, attribution, credit",Carlin MacKenzie,2020-04-17,,,,,13,
+🉠,1F260,extras-unicode,symbol-other,rounded symbol for fu,,"ideograph, chinese, religion, luck, 福",Robert Winslow,2023-01-06,,,,,10,
+🉡,1F261,extras-unicode,symbol-other,rounded symbol for lu,,"ideograph, chinese, religion, prosperity, 禄, 祿",Robert Winslow,2023-01-06,,,,,10,
+🉢,1F262,extras-unicode,symbol-other,rounded symbol for shou,,"ideograph, chinese, religion, longevity, 寿, 壽",Robert Winslow,2023-01-06,,,,,10,
+🉣,1F263,extras-unicode,symbol-other,rounded symbol for xi,,"ideograph, chinese, religion, happiness, 喜",Robert Winslow,2023-01-06,,,,,10,
+🉤,1F264,extras-unicode,symbol-other,rounded symbol for shuangxi,,"ideograph, chinese, religion, double happiness, love and marriage, 囍",Robert Winslow,2023-01-06,,,,,10,
+🉥,1F265,extras-unicode,symbol-other,rounded symbol for cai,,"ideograph, chinese, religion, wealth, 财, 財",Robert Winslow,2023-01-06,,,,,10,
+🐱‍💻,1F431-200D-1F4BB,extras-unicode,symbol-other,hacker cat,,"coder, developer, software, technologist, smart, clever, code, notebook, computer",Benedikt Groß,2020-03-06,,,,,?,
+🯅,1FBC5,extras-unicode,symbol-other,stick figure,,legacy computing,Alexander Müller,2020-11-04,,,,,13,
+🯆,1FBC6,extras-unicode,symbol-other,stick figure with arms raised,,legacy computing,Alexander Müller,2020-11-04,,,,,13,
+🯇,1FBC7,extras-unicode,symbol-other,stick figure leaning left,,legacy computing,Alexander Müller,2020-11-04,,,,,13,
+🯈,1FBC8,extras-unicode,symbol-other,stick figure leaning right,,legacy computing,Alexander Müller,2020-11-04,,,,,13,
+🯉,1FBC9,extras-unicode,symbol-other,stick figure with dress,,legacy computing,Alexander Müller,2020-11-04,,,,,13,
+℗,2117,extras-unicode,symbol-other,sound recording copyright,,"trademark, music, phonogram",Carlin MacKenzie,2020-06-06,,,,,1.1,
+℠,2120,extras-unicode,symbol-other,service mark,,"trademark, sm",Carlin MacKenzie,2020-06-06,,,,,1.1,
+⊜,229C,extras-unicode,symbol-other,circled equals,,"license, copyright, creative commons, open, libre",Carlin MacKenzie,2020-04-18,,,,,1.1,
+⏻,23FB,extras-unicode,symbol-other,power symbol,,"enable, on, off",Alexander Müller,2020-04-20,,,,,5,
+⏼,23FC,extras-unicode,symbol-other,power on-off symbol,,"enable, disable, on, off",Alexander Müller,2020-04-20,,,,,5,
+⏽,23FD,extras-unicode,symbol-other,power on symbol,,"enable, on, I",Alexander Müller,2020-04-20,,,,,5,
+⏾,23FE,extras-unicode,symbol-other,power sleep symbol,,"sleep, standby, crescent moon",Alexander Müller,2020-04-20,,,,,5,
+□,25A1,extras-unicode,symbol-other,white square,,missing glyph,Benedikt Groß,2019-04-15,,,,,1,
+▬,25AC,extras-unicode,symbol-other,black rectangle,,,loominade,2020-04-22,,,,,1.1,
+▭,25AD,extras-unicode,symbol-other,white rectangle,,,loominade,2020-04-22,,,,,1.1,
+▮,25AE,extras-unicode,symbol-other,black vertical rectangle,,,Alexander Müller,2021-11-17,,,,,1.1,
+◉,25C9,extras-unicode,symbol-other,fisheye,,iris,Alexander Müller,2021-11-17,,,,,1.1,
+◐,25D0,extras-unicode,symbol-other,circle with left half black,,,loominade,2020-04-22,,,,,1.1,
+◑,25D1,extras-unicode,symbol-other,circle with right half black,,,loominade,2020-04-22,,,,,1.1,
+◧,25E7,extras-unicode,symbol-other,square with left half black,,,loominade,2020-04-22,,,,,1.1,
+◨,25E8,extras-unicode,symbol-other,square with right half black,,,loominade,2020-04-22,,,,,1.1,
+◩,25E9,extras-unicode,symbol-other,square with upper left diagonal black,,,loominade,2020-04-22,,,,,1.1,
+◪,25EA,extras-unicode,symbol-other,square with lower right diagonal black,,,loominade,2020-04-22,,,,,1.1,
+◭,25ED,extras-unicode,symbol-other,up-pointing triangle with left half black,,,loominade,2020-04-22,,,,,1.1,
+◮,25EE,extras-unicode,symbol-other,up-pointing triangle with right half black,,,loominade,2020-04-22,,,,,1.1,
+★,2605,extras-unicode,symbol-other,black star,,full star,Alexander Müller,2020-11-09,,,,,1,
+⬌,2B0C,extras-unicode,symbol-other,left right black arrow,,,Guemil Project,2019-01-14,,,,,4,
+⬍,2B0D,extras-unicode,symbol-other,up down black arrow,,,Guemil Project,2019-01-14,,,,,4,
+⬟,2B1F,extras-unicode,symbol-other,black pentagon,,equilateral polygon,loominade,2020-04-17,,,,,5,
+⬠,2B20,extras-unicode,symbol-other,white pentagon,,equilateral polygon,loominade,2020-04-17,,,,,5,
+⬡,2B21,extras-unicode,symbol-other,white hexagon,,equilateral polygon,loominade,2020-04-17,,,,,5,
+⬢,2B22,extras-unicode,symbol-other,black hexagon,,equilateral polygon,loominade,2020-04-17,,,,,5,
+⬣,2B23,extras-unicode,symbol-other,horizontal black hexagon ,,equilateral polygon,loominade,2020-04-17,,,,,5,
+⬤,2B24,extras-unicode,symbol-other,black large circle,,,loominade,2020-04-22,,,,,1.1,
+⬮,2B2E,extras-unicode,symbol-other,black vertical ellipse,,,loominade,2020-04-17,,,,,5,
+⬯,2B2F,extras-unicode,symbol-other,white vertical ellipse,,,loominade,2020-04-17,,,,,5,
+⭘,2B58,extras-unicode,symbol-other,heavy circle,,"off, disable, power off, O",Alexander Müller,2020-04-20,,,,,5,
+⮏,2B8F,extras-unicode,symbol-other,anticlockwise triangle-headed top u-shaped arrow,,,Guemil Project,2019-01-14,,,,,7,
+⮺,2BBA,extras-unicode,symbol-other,overlapping white squares,,,loominade,2020-04-22,,,,,1.1,
+⮻,2BBB,extras-unicode,symbol-other,overlapping white and black squares,,,loominade,2020-04-22,,,,,1.1,
+⮼,2BBC,extras-unicode,symbol-other,overlapping black squares,,,loominade,2020-04-22,,,,,1.1,
+⯃,2BC3,extras-unicode,symbol-other,horizontal black octagon,,equilateral polygon,loominade,2020-04-17,,,,,5,
+⯄,2BC4,extras-unicode,symbol-other,black octagon,,equilateral polygon,loominade,2020-04-17,,,,,5,
+⯪,2BEA,extras-unicode,symbol-other,star with left half black,,half star,Alexander Müller,2020-11-09,,,,,11,
+⯫,2BEB,extras-unicode,symbol-other,star with right half black,,half star,Alexander Müller,2020-11-09,,,,,11,
new file mode 100644
index 0000000..68b888f
--- /dev/null
+++ b/openmoji.nu
@@ -0,0 +1,22 @@
+# Export a CSS stylesheet mapping classes to OpenMoji hexcodes
+#
+# The required dataset and icons can be downloaded from their repository at
+# https://github.com/hfg-gmuend/openmoji/blob/15.1.0/data/openmoji.csv
+#
+def "main export-css" [
+  --output: path = "static/openmoji-color-icons.css", # Where to write the CSS
+  --data: path = "openmoji.csv"                       # Where is the data.csv from OpenMoji
+  --icons: path = "./openmoji-svg-color"              # Whare are the icons, relative to the CSS file
+] {
+    print $"exporting ($data) to ($output)"
+    open $data --raw
+    | from csv --no-infer
+    | select hexcode annotation
+    | update annotation { |row| $row.annotation | str kebab-case  }
+    | each { |row| $".om-($row.annotation) { background-image: url\('($icons)/($row.hexcode).svg'\) }" }
+    | save --force $output
+}
+
+def main [] {
+  print "Try --help to learn about sub-commands"
+}
new file mode 100644
index 0000000..068d3ac
--- /dev/null
+++ b/static/openmoji-color-icons.css
@@ -0,0 +1,4292 @@
+.om-grinning-face { background-image: url('./openmoji-svg-color/1F600.svg') }
+.om-grinning-face-with-big-eyes { background-image: url('./openmoji-svg-color/1F603.svg') }
+.om-grinning-face-with-smiling-eyes { background-image: url('./openmoji-svg-color/1F604.svg') }
+.om-beaming-face-with-smiling-eyes { background-image: url('./openmoji-svg-color/1F601.svg') }
+.om-grinning-squinting-face { background-image: url('./openmoji-svg-color/1F606.svg') }
+.om-grinning-face-with-sweat { background-image: url('./openmoji-svg-color/1F605.svg') }
+.om-rolling-on-the-floor-laughing { background-image: url('./openmoji-svg-color/1F923.svg') }
+.om-face-with-tears-of-joy { background-image: url('./openmoji-svg-color/1F602.svg') }
+.om-slightly-smiling-face { background-image: url('./openmoji-svg-color/1F642.svg') }
+.om-upside-down-face { background-image: url('./openmoji-svg-color/1F643.svg') }
+.om-melting-face { background-image: url('./openmoji-svg-color/1FAE0.svg') }
+.om-winking-face { background-image: url('./openmoji-svg-color/1F609.svg') }
+.om-smiling-face-with-smiling-eyes { background-image: url('./openmoji-svg-color/1F60A.svg') }
+.om-smiling-face-with-halo { background-image: url('./openmoji-svg-color/1F607.svg') }
+.om-smiling-face-with-hearts { background-image: url('./openmoji-svg-color/1F970.svg') }
+.om-smiling-face-with-heart-eyes { background-image: url('./openmoji-svg-color/1F60D.svg') }
+.om-star-struck { background-image: url('./openmoji-svg-color/1F929.svg') }
+.om-face-blowing-a-kiss { background-image: url('./openmoji-svg-color/1F618.svg') }
+.om-kissing-face { background-image: url('./openmoji-svg-color/1F617.svg') }
+.om-smiling-face { background-image: url('./openmoji-svg-color/263A.svg') }
+.om-kissing-face-with-closed-eyes { background-image: url('./openmoji-svg-color/1F61A.svg') }
+.om-kissing-face-with-smiling-eyes { background-image: url('./openmoji-svg-color/1F619.svg') }
+.om-smiling-face-with-tear { background-image: url('./openmoji-svg-color/1F972.svg') }
+.om-face-savoring-food { background-image: url('./openmoji-svg-color/1F60B.svg') }
+.om-face-with-tongue { background-image: url('./openmoji-svg-color/1F61B.svg') }
+.om-winking-face-with-tongue { background-image: url('./openmoji-svg-color/1F61C.svg') }
+.om-zany-face { background-image: url('./openmoji-svg-color/1F92A.svg') }
+.om-squinting-face-with-tongue { background-image: url('./openmoji-svg-color/1F61D.svg') }
+.om-money-mouth-face { background-image: url('./openmoji-svg-color/1F911.svg') }
+.om-smiling-face-with-open-hands { background-image: url('./openmoji-svg-color/1F917.svg') }
+.om-face-with-hand-over-mouth { background-image: url('./openmoji-svg-color/1F92D.svg') }
+.om-face-with-open-eyes-and-hand-over-mouth { background-image: url('./openmoji-svg-color/1FAE2.svg') }
+.om-face-with-peeking-eye { background-image: url('./openmoji-svg-color/1FAE3.svg') }
+.om-shushing-face { background-image: url('./openmoji-svg-color/1F92B.svg') }
+.om-thinking-face { background-image: url('./openmoji-svg-color/1F914.svg') }
+.om-saluting-face { background-image: url('./openmoji-svg-color/1FAE1.svg') }
+.om-zipper-mouth-face { background-image: url('./openmoji-svg-color/1F910.svg') }
+.om-face-with-raised-eyebrow { background-image: url('./openmoji-svg-color/1F928.svg') }
+.om-neutral-face { background-image: url('./openmoji-svg-color/1F610.svg') }
+.om-expressionless-face { background-image: url('./openmoji-svg-color/1F611.svg') }
+.om-face-without-mouth { background-image: url('./openmoji-svg-color/1F636.svg') }
+.om-dotted-line-face { background-image: url('./openmoji-svg-color/1FAE5.svg') }
+.om-face-in-clouds { background-image: url('./openmoji-svg-color/1F636-200D-1F32B-FE0F.svg') }
+.om-smirking-face { background-image: url('./openmoji-svg-color/1F60F.svg') }
+.om-unamused-face { background-image: url('./openmoji-svg-color/1F612.svg') }
+.om-face-with-rolling-eyes { background-image: url('./openmoji-svg-color/1F644.svg') }
+.om-grimacing-face { background-image: url('./openmoji-svg-color/1F62C.svg') }
+.om-face-exhaling { background-image: url('./openmoji-svg-color/1F62E-200D-1F4A8.svg') }
+.om-lying-face { background-image: url('./openmoji-svg-color/1F925.svg') }
+.om-shaking-face { background-image: url('./openmoji-svg-color/1FAE8.svg') }
+.om-head-shaking-horizontally { background-image: url('./openmoji-svg-color/1F642-200D-2194-FE0F.svg') }
+.om-head-shaking-vertically { background-image: url('./openmoji-svg-color/1F642-200D-2195-FE0F.svg') }
+.om-relieved-face { background-image: url('./openmoji-svg-color/1F60C.svg') }
+.om-pensive-face { background-image: url('./openmoji-svg-color/1F614.svg') }
+.om-sleepy-face { background-image: url('./openmoji-svg-color/1F62A.svg') }
+.om-drooling-face { background-image: url('./openmoji-svg-color/1F924.svg') }
+.om-sleeping-face { background-image: url('./openmoji-svg-color/1F634.svg') }
+.om-face-with-bags-under-eyes { background-image: url('./openmoji-svg-color/1FAE9.svg') }
+.om-face-with-medical-mask { background-image: url('./openmoji-svg-color/1F637.svg') }
+.om-face-with-thermometer { background-image: url('./openmoji-svg-color/1F912.svg') }
+.om-face-with-head-bandage { background-image: url('./openmoji-svg-color/1F915.svg') }
+.om-nauseated-face { background-image: url('./openmoji-svg-color/1F922.svg') }
+.om-face-vomiting { background-image: url('./openmoji-svg-color/1F92E.svg') }
+.om-sneezing-face { background-image: url('./openmoji-svg-color/1F927.svg') }
+.om-hot-face { background-image: url('./openmoji-svg-color/1F975.svg') }
+.om-cold-face { background-image: url('./openmoji-svg-color/1F976.svg') }
+.om-woozy-face { background-image: url('./openmoji-svg-color/1F974.svg') }
+.om-face-with-crossed-out-eyes { background-image: url('./openmoji-svg-color/1F635.svg') }
+.om-face-with-spiral-eyes { background-image: url('./openmoji-svg-color/1F635-200D-1F4AB.svg') }
+.om-exploding-head { background-image: url('./openmoji-svg-color/1F92F.svg') }
+.om-cowboy-hat-face { background-image: url('./openmoji-svg-color/1F920.svg') }
+.om-partying-face { background-image: url('./openmoji-svg-color/1F973.svg') }
+.om-disguised-face { background-image: url('./openmoji-svg-color/1F978.svg') }
+.om-smiling-face-with-sunglasses { background-image: url('./openmoji-svg-color/1F60E.svg') }
+.om-nerd-face { background-image: url('./openmoji-svg-color/1F913.svg') }
+.om-face-with-monocle { background-image: url('./openmoji-svg-color/1F9D0.svg') }
+.om-confused-face { background-image: url('./openmoji-svg-color/1F615.svg') }
+.om-face-with-diagonal-mouth { background-image: url('./openmoji-svg-color/1FAE4.svg') }
+.om-worried-face { background-image: url('./openmoji-svg-color/1F61F.svg') }
+.om-slightly-frowning-face { background-image: url('./openmoji-svg-color/1F641.svg') }
+.om-frowning-face { background-image: url('./openmoji-svg-color/2639.svg') }
+.om-face-with-open-mouth { background-image: url('./openmoji-svg-color/1F62E.svg') }
+.om-hushed-face { background-image: url('./openmoji-svg-color/1F62F.svg') }
+.om-astonished-face { background-image: url('./openmoji-svg-color/1F632.svg') }
+.om-flushed-face { background-image: url('./openmoji-svg-color/1F633.svg') }
+.om-pleading-face { background-image: url('./openmoji-svg-color/1F97A.svg') }
+.om-face-holding-back-tears { background-image: url('./openmoji-svg-color/1F979.svg') }
+.om-frowning-face-with-open-mouth { background-image: url('./openmoji-svg-color/1F626.svg') }
+.om-anguished-face { background-image: url('./openmoji-svg-color/1F627.svg') }
+.om-fearful-face { background-image: url('./openmoji-svg-color/1F628.svg') }
+.om-anxious-face-with-sweat { background-image: url('./openmoji-svg-color/1F630.svg') }
+.om-sad-but-relieved-face { background-image: url('./openmoji-svg-color/1F625.svg') }
+.om-crying-face { background-image: url('./openmoji-svg-color/1F622.svg') }
+.om-loudly-crying-face { background-image: url('./openmoji-svg-color/1F62D.svg') }
+.om-face-screaming-in-fear { background-image: url('./openmoji-svg-color/1F631.svg') }
+.om-confounded-face { background-image: url('./openmoji-svg-color/1F616.svg') }
+.om-persevering-face { background-image: url('./openmoji-svg-color/1F623.svg') }
+.om-disappointed-face { background-image: url('./openmoji-svg-color/1F61E.svg') }
+.om-downcast-face-with-sweat { background-image: url('./openmoji-svg-color/1F613.svg') }
+.om-weary-face { background-image: url('./openmoji-svg-color/1F629.svg') }
+.om-tired-face { background-image: url('./openmoji-svg-color/1F62B.svg') }
+.om-yawning-face { background-image: url('./openmoji-svg-color/1F971.svg') }
+.om-face-with-steam-from-nose { background-image: url('./openmoji-svg-color/1F624.svg') }
+.om-enraged-face { background-image: url('./openmoji-svg-color/1F621.svg') }
+.om-angry-face { background-image: url('./openmoji-svg-color/1F620.svg') }
+.om-face-with-symbols-on-mouth { background-image: url('./openmoji-svg-color/1F92C.svg') }
+.om-smiling-face-with-horns { background-image: url('./openmoji-svg-color/1F608.svg') }
+.om-angry-face-with-horns { background-image: url('./openmoji-svg-color/1F47F.svg') }
+.om-skull { background-image: url('./openmoji-svg-color/1F480.svg') }
+.om-skull-and-crossbones { background-image: url('./openmoji-svg-color/2620.svg') }
+.om-pile-of-poo { background-image: url('./openmoji-svg-color/1F4A9.svg') }
+.om-clown-face { background-image: url('./openmoji-svg-color/1F921.svg') }
+.om-ogre { background-image: url('./openmoji-svg-color/1F479.svg') }
+.om-goblin { background-image: url('./openmoji-svg-color/1F47A.svg') }
+.om-ghost { background-image: url('./openmoji-svg-color/1F47B.svg') }
+.om-alien { background-image: url('./openmoji-svg-color/1F47D.svg') }
+.om-alien-monster { background-image: url('./openmoji-svg-color/1F47E.svg') }
+.om-robot { background-image: url('./openmoji-svg-color/1F916.svg') }
+.om-grinning-cat { background-image: url('./openmoji-svg-color/1F63A.svg') }
+.om-grinning-cat-with-smiling-eyes { background-image: url('./openmoji-svg-color/1F638.svg') }
+.om-cat-with-tears-of-joy { background-image: url('./openmoji-svg-color/1F639.svg') }
+.om-smiling-cat-with-heart-eyes { background-image: url('./openmoji-svg-color/1F63B.svg') }
+.om-cat-with-wry-smile { background-image: url('./openmoji-svg-color/1F63C.svg') }
+.om-kissing-cat { background-image: url('./openmoji-svg-color/1F63D.svg') }
+.om-weary-cat { background-image: url('./openmoji-svg-color/1F640.svg') }
+.om-crying-cat { background-image: url('./openmoji-svg-color/1F63F.svg') }
+.om-pouting-cat { background-image: url('./openmoji-svg-color/1F63E.svg') }
+.om-see-no-evil-monkey { background-image: url('./openmoji-svg-color/1F648.svg') }
+.om-hear-no-evil-monkey { background-image: url('./openmoji-svg-color/1F649.svg') }
+.om-speak-no-evil-monkey { background-image: url('./openmoji-svg-color/1F64A.svg') }
+.om-love-letter { background-image: url('./openmoji-svg-color/1F48C.svg') }
+.om-heart-with-arrow { background-image: url('./openmoji-svg-color/1F498.svg') }
+.om-heart-with-ribbon { background-image: url('./openmoji-svg-color/1F49D.svg') }
+.om-sparkling-heart { background-image: url('./openmoji-svg-color/1F496.svg') }
+.om-growing-heart { background-image: url('./openmoji-svg-color/1F497.svg') }
+.om-beating-heart { background-image: url('./openmoji-svg-color/1F493.svg') }
+.om-revolving-hearts { background-image: url('./openmoji-svg-color/1F49E.svg') }
+.om-two-hearts { background-image: url('./openmoji-svg-color/1F495.svg') }
+.om-heart-decoration { background-image: url('./openmoji-svg-color/1F49F.svg') }
+.om-heart-exclamation { background-image: url('./openmoji-svg-color/2763.svg') }
+.om-broken-heart { background-image: url('./openmoji-svg-color/1F494.svg') }
+.om-heart-on-fire { background-image: url('./openmoji-svg-color/2764-FE0F-200D-1F525.svg') }
+.om-mending-heart { background-image: url('./openmoji-svg-color/2764-FE0F-200D-1FA79.svg') }
+.om-red-heart { background-image: url('./openmoji-svg-color/2764.svg') }
+.om-pink-heart { background-image: url('./openmoji-svg-color/1FA77.svg') }
+.om-orange-heart { background-image: url('./openmoji-svg-color/1F9E1.svg') }
+.om-yellow-heart { background-image: url('./openmoji-svg-color/1F49B.svg') }
+.om-green-heart { background-image: url('./openmoji-svg-color/1F49A.svg') }
+.om-blue-heart { background-image: url('./openmoji-svg-color/1F499.svg') }
+.om-light-blue-heart { background-image: url('./openmoji-svg-color/1FA75.svg') }
+.om-purple-heart { background-image: url('./openmoji-svg-color/1F49C.svg') }
+.om-brown-heart { background-image: url('./openmoji-svg-color/1F90E.svg') }
+.om-black-heart { background-image: url('./openmoji-svg-color/1F5A4.svg') }
+.om-grey-heart { background-image: url('./openmoji-svg-color/1FA76.svg') }
+.om-white-heart { background-image: url('./openmoji-svg-color/1F90D.svg') }
+.om-kiss-mark { background-image: url('./openmoji-svg-color/1F48B.svg') }
+.om-hundred-points { background-image: url('./openmoji-svg-color/1F4AF.svg') }
+.om-anger-symbol { background-image: url('./openmoji-svg-color/1F4A2.svg') }
+.om-collision { background-image: url('./openmoji-svg-color/1F4A5.svg') }
+.om-dizzy { background-image: url('./openmoji-svg-color/1F4AB.svg') }
+.om-sweat-droplets { background-image: url('./openmoji-svg-color/1F4A6.svg') }
+.om-dashing-away { background-image: url('./openmoji-svg-color/1F4A8.svg') }
+.om-hole { background-image: url('./openmoji-svg-color/1F573.svg') }
+.om-speech-balloon { background-image: url('./openmoji-svg-color/1F4AC.svg') }
+.om-eye-in-speech-bubble { background-image: url('./openmoji-svg-color/1F441-FE0F-200D-1F5E8-FE0F.svg') }
+.om-left-speech-bubble { background-image: url('./openmoji-svg-color/1F5E8.svg') }
+.om-right-anger-bubble { background-image: url('./openmoji-svg-color/1F5EF.svg') }
+.om-thought-balloon { background-image: url('./openmoji-svg-color/1F4AD.svg') }
+.om-zzz { background-image: url('./openmoji-svg-color/1F4A4.svg') }
+.om-waving-hand { background-image: url('./openmoji-svg-color/1F44B.svg') }
+.om-waving-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F44B-1F3FB.svg') }
+.om-waving-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F44B-1F3FC.svg') }
+.om-waving-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F44B-1F3FD.svg') }
+.om-waving-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44B-1F3FE.svg') }
+.om-waving-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44B-1F3FF.svg') }
+.om-raised-back-of-hand { background-image: url('./openmoji-svg-color/1F91A.svg') }
+.om-raised-back-of-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F91A-1F3FB.svg') }
+.om-raised-back-of-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F91A-1F3FC.svg') }
+.om-raised-back-of-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F91A-1F3FD.svg') }
+.om-raised-back-of-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91A-1F3FE.svg') }
+.om-raised-back-of-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91A-1F3FF.svg') }
+.om-hand-with-fingers-splayed { background-image: url('./openmoji-svg-color/1F590.svg') }
+.om-hand-with-fingers-splayed-light-skin-tone { background-image: url('./openmoji-svg-color/1F590-1F3FB.svg') }
+.om-hand-with-fingers-splayed-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F590-1F3FC.svg') }
+.om-hand-with-fingers-splayed-medium-skin-tone { background-image: url('./openmoji-svg-color/1F590-1F3FD.svg') }
+.om-hand-with-fingers-splayed-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F590-1F3FE.svg') }
+.om-hand-with-fingers-splayed-dark-skin-tone { background-image: url('./openmoji-svg-color/1F590-1F3FF.svg') }
+.om-raised-hand { background-image: url('./openmoji-svg-color/270B.svg') }
+.om-raised-hand-light-skin-tone { background-image: url('./openmoji-svg-color/270B-1F3FB.svg') }
+.om-raised-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/270B-1F3FC.svg') }
+.om-raised-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/270B-1F3FD.svg') }
+.om-raised-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/270B-1F3FE.svg') }
+.om-raised-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/270B-1F3FF.svg') }
+.om-vulcan-salute { background-image: url('./openmoji-svg-color/1F596.svg') }
+.om-vulcan-salute-light-skin-tone { background-image: url('./openmoji-svg-color/1F596-1F3FB.svg') }
+.om-vulcan-salute-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F596-1F3FC.svg') }
+.om-vulcan-salute-medium-skin-tone { background-image: url('./openmoji-svg-color/1F596-1F3FD.svg') }
+.om-vulcan-salute-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F596-1F3FE.svg') }
+.om-vulcan-salute-dark-skin-tone { background-image: url('./openmoji-svg-color/1F596-1F3FF.svg') }
+.om-rightwards-hand { background-image: url('./openmoji-svg-color/1FAF1.svg') }
+.om-rightwards-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FB.svg') }
+.om-rightwards-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FC.svg') }
+.om-rightwards-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FD.svg') }
+.om-rightwards-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FE.svg') }
+.om-rightwards-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FF.svg') }
+.om-leftwards-hand { background-image: url('./openmoji-svg-color/1FAF2.svg') }
+.om-leftwards-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF2-1F3FB.svg') }
+.om-leftwards-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF2-1F3FC.svg') }
+.om-leftwards-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF2-1F3FD.svg') }
+.om-leftwards-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF2-1F3FE.svg') }
+.om-leftwards-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF2-1F3FF.svg') }
+.om-palm-down-hand { background-image: url('./openmoji-svg-color/1FAF3.svg') }
+.om-palm-down-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF3-1F3FB.svg') }
+.om-palm-down-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF3-1F3FC.svg') }
+.om-palm-down-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF3-1F3FD.svg') }
+.om-palm-down-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF3-1F3FE.svg') }
+.om-palm-down-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF3-1F3FF.svg') }
+.om-palm-up-hand { background-image: url('./openmoji-svg-color/1FAF4.svg') }
+.om-palm-up-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF4-1F3FB.svg') }
+.om-palm-up-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF4-1F3FC.svg') }
+.om-palm-up-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF4-1F3FD.svg') }
+.om-palm-up-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF4-1F3FE.svg') }
+.om-palm-up-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF4-1F3FF.svg') }
+.om-leftwards-pushing-hand { background-image: url('./openmoji-svg-color/1FAF7.svg') }
+.om-leftwards-pushing-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF7-1F3FB.svg') }
+.om-leftwards-pushing-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF7-1F3FC.svg') }
+.om-leftwards-pushing-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF7-1F3FD.svg') }
+.om-leftwards-pushing-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF7-1F3FE.svg') }
+.om-leftwards-pushing-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF7-1F3FF.svg') }
+.om-rightwards-pushing-hand { background-image: url('./openmoji-svg-color/1FAF8.svg') }
+.om-rightwards-pushing-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF8-1F3FB.svg') }
+.om-rightwards-pushing-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF8-1F3FC.svg') }
+.om-rightwards-pushing-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF8-1F3FD.svg') }
+.om-rightwards-pushing-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF8-1F3FE.svg') }
+.om-rightwards-pushing-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF8-1F3FF.svg') }
+.om-ok-hand { background-image: url('./openmoji-svg-color/1F44C.svg') }
+.om-ok-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F44C-1F3FB.svg') }
+.om-ok-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F44C-1F3FC.svg') }
+.om-ok-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F44C-1F3FD.svg') }
+.om-ok-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44C-1F3FE.svg') }
+.om-ok-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44C-1F3FF.svg') }
+.om-pinched-fingers { background-image: url('./openmoji-svg-color/1F90C.svg') }
+.om-pinched-fingers-light-skin-tone { background-image: url('./openmoji-svg-color/1F90C-1F3FB.svg') }
+.om-pinched-fingers-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F90C-1F3FC.svg') }
+.om-pinched-fingers-medium-skin-tone { background-image: url('./openmoji-svg-color/1F90C-1F3FD.svg') }
+.om-pinched-fingers-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F90C-1F3FE.svg') }
+.om-pinched-fingers-dark-skin-tone { background-image: url('./openmoji-svg-color/1F90C-1F3FF.svg') }
+.om-pinching-hand { background-image: url('./openmoji-svg-color/1F90F.svg') }
+.om-pinching-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F90F-1F3FB.svg') }
+.om-pinching-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F90F-1F3FC.svg') }
+.om-pinching-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F90F-1F3FD.svg') }
+.om-pinching-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F90F-1F3FE.svg') }
+.om-pinching-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F90F-1F3FF.svg') }
+.om-victory-hand { background-image: url('./openmoji-svg-color/270C.svg') }
+.om-victory-hand-light-skin-tone { background-image: url('./openmoji-svg-color/270C-1F3FB.svg') }
+.om-victory-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/270C-1F3FC.svg') }
+.om-victory-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/270C-1F3FD.svg') }
+.om-victory-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/270C-1F3FE.svg') }
+.om-victory-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/270C-1F3FF.svg') }
+.om-crossed-fingers { background-image: url('./openmoji-svg-color/1F91E.svg') }
+.om-crossed-fingers-light-skin-tone { background-image: url('./openmoji-svg-color/1F91E-1F3FB.svg') }
+.om-crossed-fingers-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F91E-1F3FC.svg') }
+.om-crossed-fingers-medium-skin-tone { background-image: url('./openmoji-svg-color/1F91E-1F3FD.svg') }
+.om-crossed-fingers-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91E-1F3FE.svg') }
+.om-crossed-fingers-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91E-1F3FF.svg') }
+.om-hand-with-index-finger-and-thumb-crossed { background-image: url('./openmoji-svg-color/1FAF0.svg') }
+.om-hand-with-index-finger-and-thumb-crossed-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF0-1F3FB.svg') }
+.om-hand-with-index-finger-and-thumb-crossed-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF0-1F3FC.svg') }
+.om-hand-with-index-finger-and-thumb-crossed-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF0-1F3FD.svg') }
+.om-hand-with-index-finger-and-thumb-crossed-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF0-1F3FE.svg') }
+.om-hand-with-index-finger-and-thumb-crossed-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF0-1F3FF.svg') }
+.om-love-you-gesture { background-image: url('./openmoji-svg-color/1F91F.svg') }
+.om-love-you-gesture-light-skin-tone { background-image: url('./openmoji-svg-color/1F91F-1F3FB.svg') }
+.om-love-you-gesture-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F91F-1F3FC.svg') }
+.om-love-you-gesture-medium-skin-tone { background-image: url('./openmoji-svg-color/1F91F-1F3FD.svg') }
+.om-love-you-gesture-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91F-1F3FE.svg') }
+.om-love-you-gesture-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91F-1F3FF.svg') }
+.om-sign-of-the-horns { background-image: url('./openmoji-svg-color/1F918.svg') }
+.om-sign-of-the-horns-light-skin-tone { background-image: url('./openmoji-svg-color/1F918-1F3FB.svg') }
+.om-sign-of-the-horns-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F918-1F3FC.svg') }
+.om-sign-of-the-horns-medium-skin-tone { background-image: url('./openmoji-svg-color/1F918-1F3FD.svg') }
+.om-sign-of-the-horns-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F918-1F3FE.svg') }
+.om-sign-of-the-horns-dark-skin-tone { background-image: url('./openmoji-svg-color/1F918-1F3FF.svg') }
+.om-call-me-hand { background-image: url('./openmoji-svg-color/1F919.svg') }
+.om-call-me-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F919-1F3FB.svg') }
+.om-call-me-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F919-1F3FC.svg') }
+.om-call-me-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F919-1F3FD.svg') }
+.om-call-me-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F919-1F3FE.svg') }
+.om-call-me-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F919-1F3FF.svg') }
+.om-backhand-index-pointing-left { background-image: url('./openmoji-svg-color/1F448.svg') }
+.om-backhand-index-pointing-left-light-skin-tone { background-image: url('./openmoji-svg-color/1F448-1F3FB.svg') }
+.om-backhand-index-pointing-left-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F448-1F3FC.svg') }
+.om-backhand-index-pointing-left-medium-skin-tone { background-image: url('./openmoji-svg-color/1F448-1F3FD.svg') }
+.om-backhand-index-pointing-left-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F448-1F3FE.svg') }
+.om-backhand-index-pointing-left-dark-skin-tone { background-image: url('./openmoji-svg-color/1F448-1F3FF.svg') }
+.om-backhand-index-pointing-right { background-image: url('./openmoji-svg-color/1F449.svg') }
+.om-backhand-index-pointing-right-light-skin-tone { background-image: url('./openmoji-svg-color/1F449-1F3FB.svg') }
+.om-backhand-index-pointing-right-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F449-1F3FC.svg') }
+.om-backhand-index-pointing-right-medium-skin-tone { background-image: url('./openmoji-svg-color/1F449-1F3FD.svg') }
+.om-backhand-index-pointing-right-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F449-1F3FE.svg') }
+.om-backhand-index-pointing-right-dark-skin-tone { background-image: url('./openmoji-svg-color/1F449-1F3FF.svg') }
+.om-backhand-index-pointing-up { background-image: url('./openmoji-svg-color/1F446.svg') }
+.om-backhand-index-pointing-up-light-skin-tone { background-image: url('./openmoji-svg-color/1F446-1F3FB.svg') }
+.om-backhand-index-pointing-up-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F446-1F3FC.svg') }
+.om-backhand-index-pointing-up-medium-skin-tone { background-image: url('./openmoji-svg-color/1F446-1F3FD.svg') }
+.om-backhand-index-pointing-up-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F446-1F3FE.svg') }
+.om-backhand-index-pointing-up-dark-skin-tone { background-image: url('./openmoji-svg-color/1F446-1F3FF.svg') }
+.om-middle-finger { background-image: url('./openmoji-svg-color/1F595.svg') }
+.om-middle-finger-light-skin-tone { background-image: url('./openmoji-svg-color/1F595-1F3FB.svg') }
+.om-middle-finger-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F595-1F3FC.svg') }
+.om-middle-finger-medium-skin-tone { background-image: url('./openmoji-svg-color/1F595-1F3FD.svg') }
+.om-middle-finger-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F595-1F3FE.svg') }
+.om-middle-finger-dark-skin-tone { background-image: url('./openmoji-svg-color/1F595-1F3FF.svg') }
+.om-backhand-index-pointing-down { background-image: url('./openmoji-svg-color/1F447.svg') }
+.om-backhand-index-pointing-down-light-skin-tone { background-image: url('./openmoji-svg-color/1F447-1F3FB.svg') }
+.om-backhand-index-pointing-down-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F447-1F3FC.svg') }
+.om-backhand-index-pointing-down-medium-skin-tone { background-image: url('./openmoji-svg-color/1F447-1F3FD.svg') }
+.om-backhand-index-pointing-down-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F447-1F3FE.svg') }
+.om-backhand-index-pointing-down-dark-skin-tone { background-image: url('./openmoji-svg-color/1F447-1F3FF.svg') }
+.om-index-pointing-up { background-image: url('./openmoji-svg-color/261D.svg') }
+.om-index-pointing-up-light-skin-tone { background-image: url('./openmoji-svg-color/261D-1F3FB.svg') }
+.om-index-pointing-up-medium-light-skin-tone { background-image: url('./openmoji-svg-color/261D-1F3FC.svg') }
+.om-index-pointing-up-medium-skin-tone { background-image: url('./openmoji-svg-color/261D-1F3FD.svg') }
+.om-index-pointing-up-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/261D-1F3FE.svg') }
+.om-index-pointing-up-dark-skin-tone { background-image: url('./openmoji-svg-color/261D-1F3FF.svg') }
+.om-index-pointing-at-the-viewer { background-image: url('./openmoji-svg-color/1FAF5.svg') }
+.om-index-pointing-at-the-viewer-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF5-1F3FB.svg') }
+.om-index-pointing-at-the-viewer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF5-1F3FC.svg') }
+.om-index-pointing-at-the-viewer-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF5-1F3FD.svg') }
+.om-index-pointing-at-the-viewer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF5-1F3FE.svg') }
+.om-index-pointing-at-the-viewer-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF5-1F3FF.svg') }
+.om-thumbs-up { background-image: url('./openmoji-svg-color/1F44D.svg') }
+.om-thumbs-up-light-skin-tone { background-image: url('./openmoji-svg-color/1F44D-1F3FB.svg') }
+.om-thumbs-up-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F44D-1F3FC.svg') }
+.om-thumbs-up-medium-skin-tone { background-image: url('./openmoji-svg-color/1F44D-1F3FD.svg') }
+.om-thumbs-up-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44D-1F3FE.svg') }
+.om-thumbs-up-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44D-1F3FF.svg') }
+.om-thumbs-down { background-image: url('./openmoji-svg-color/1F44E.svg') }
+.om-thumbs-down-light-skin-tone { background-image: url('./openmoji-svg-color/1F44E-1F3FB.svg') }
+.om-thumbs-down-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F44E-1F3FC.svg') }
+.om-thumbs-down-medium-skin-tone { background-image: url('./openmoji-svg-color/1F44E-1F3FD.svg') }
+.om-thumbs-down-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44E-1F3FE.svg') }
+.om-thumbs-down-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44E-1F3FF.svg') }
+.om-raised-fist { background-image: url('./openmoji-svg-color/270A.svg') }
+.om-raised-fist-light-skin-tone { background-image: url('./openmoji-svg-color/270A-1F3FB.svg') }
+.om-raised-fist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/270A-1F3FC.svg') }
+.om-raised-fist-medium-skin-tone { background-image: url('./openmoji-svg-color/270A-1F3FD.svg') }
+.om-raised-fist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/270A-1F3FE.svg') }
+.om-raised-fist-dark-skin-tone { background-image: url('./openmoji-svg-color/270A-1F3FF.svg') }
+.om-oncoming-fist { background-image: url('./openmoji-svg-color/1F44A.svg') }
+.om-oncoming-fist-light-skin-tone { background-image: url('./openmoji-svg-color/1F44A-1F3FB.svg') }
+.om-oncoming-fist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F44A-1F3FC.svg') }
+.om-oncoming-fist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F44A-1F3FD.svg') }
+.om-oncoming-fist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44A-1F3FE.svg') }
+.om-oncoming-fist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44A-1F3FF.svg') }
+.om-left-facing-fist { background-image: url('./openmoji-svg-color/1F91B.svg') }
+.om-left-facing-fist-light-skin-tone { background-image: url('./openmoji-svg-color/1F91B-1F3FB.svg') }
+.om-left-facing-fist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F91B-1F3FC.svg') }
+.om-left-facing-fist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F91B-1F3FD.svg') }
+.om-left-facing-fist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91B-1F3FE.svg') }
+.om-left-facing-fist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91B-1F3FF.svg') }
+.om-right-facing-fist { background-image: url('./openmoji-svg-color/1F91C.svg') }
+.om-right-facing-fist-light-skin-tone { background-image: url('./openmoji-svg-color/1F91C-1F3FB.svg') }
+.om-right-facing-fist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F91C-1F3FC.svg') }
+.om-right-facing-fist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F91C-1F3FD.svg') }
+.om-right-facing-fist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91C-1F3FE.svg') }
+.om-right-facing-fist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91C-1F3FF.svg') }
+.om-clapping-hands { background-image: url('./openmoji-svg-color/1F44F.svg') }
+.om-clapping-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F44F-1F3FB.svg') }
+.om-clapping-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F44F-1F3FC.svg') }
+.om-clapping-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F44F-1F3FD.svg') }
+.om-clapping-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44F-1F3FE.svg') }
+.om-clapping-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F44F-1F3FF.svg') }
+.om-raising-hands { background-image: url('./openmoji-svg-color/1F64C.svg') }
+.om-raising-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F64C-1F3FB.svg') }
+.om-raising-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64C-1F3FC.svg') }
+.om-raising-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64C-1F3FD.svg') }
+.om-raising-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64C-1F3FE.svg') }
+.om-raising-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64C-1F3FF.svg') }
+.om-heart-hands { background-image: url('./openmoji-svg-color/1FAF6.svg') }
+.om-heart-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF6-1F3FB.svg') }
+.om-heart-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF6-1F3FC.svg') }
+.om-heart-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF6-1F3FD.svg') }
+.om-heart-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF6-1F3FE.svg') }
+.om-heart-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF6-1F3FF.svg') }
+.om-open-hands { background-image: url('./openmoji-svg-color/1F450.svg') }
+.om-open-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F450-1F3FB.svg') }
+.om-open-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F450-1F3FC.svg') }
+.om-open-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F450-1F3FD.svg') }
+.om-open-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F450-1F3FE.svg') }
+.om-open-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F450-1F3FF.svg') }
+.om-palms-up-together { background-image: url('./openmoji-svg-color/1F932.svg') }
+.om-palms-up-together-light-skin-tone { background-image: url('./openmoji-svg-color/1F932-1F3FB.svg') }
+.om-palms-up-together-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F932-1F3FC.svg') }
+.om-palms-up-together-medium-skin-tone { background-image: url('./openmoji-svg-color/1F932-1F3FD.svg') }
+.om-palms-up-together-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F932-1F3FE.svg') }
+.om-palms-up-together-dark-skin-tone { background-image: url('./openmoji-svg-color/1F932-1F3FF.svg') }
+.om-handshake { background-image: url('./openmoji-svg-color/1F91D.svg') }
+.om-handshake-light-skin-tone { background-image: url('./openmoji-svg-color/1F91D-1F3FB.svg') }
+.om-handshake-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F91D-1F3FC.svg') }
+.om-handshake-medium-skin-tone { background-image: url('./openmoji-svg-color/1F91D-1F3FD.svg') }
+.om-handshake-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91D-1F3FE.svg') }
+.om-handshake-dark-skin-tone { background-image: url('./openmoji-svg-color/1F91D-1F3FF.svg') }
+.om-handshake-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FB-200D-1FAF2-1F3FC.svg') }
+.om-handshake-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FB-200D-1FAF2-1F3FD.svg') }
+.om-handshake-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FB-200D-1FAF2-1F3FE.svg') }
+.om-handshake-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FB-200D-1FAF2-1F3FF.svg') }
+.om-handshake-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FC-200D-1FAF2-1F3FB.svg') }
+.om-handshake-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FC-200D-1FAF2-1F3FD.svg') }
+.om-handshake-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FC-200D-1FAF2-1F3FE.svg') }
+.om-handshake-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FC-200D-1FAF2-1F3FF.svg') }
+.om-handshake-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FD-200D-1FAF2-1F3FB.svg') }
+.om-handshake-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FD-200D-1FAF2-1F3FC.svg') }
+.om-handshake-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FD-200D-1FAF2-1F3FE.svg') }
+.om-handshake-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FD-200D-1FAF2-1F3FF.svg') }
+.om-handshake-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FE-200D-1FAF2-1F3FB.svg') }
+.om-handshake-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FE-200D-1FAF2-1F3FC.svg') }
+.om-handshake-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FE-200D-1FAF2-1F3FD.svg') }
+.om-handshake-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FE-200D-1FAF2-1F3FF.svg') }
+.om-handshake-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FF-200D-1FAF2-1F3FB.svg') }
+.om-handshake-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FF-200D-1FAF2-1F3FC.svg') }
+.om-handshake-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FF-200D-1FAF2-1F3FD.svg') }
+.om-handshake-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAF1-1F3FF-200D-1FAF2-1F3FE.svg') }
+.om-folded-hands { background-image: url('./openmoji-svg-color/1F64F.svg') }
+.om-folded-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F64F-1F3FB.svg') }
+.om-folded-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64F-1F3FC.svg') }
+.om-folded-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64F-1F3FD.svg') }
+.om-folded-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64F-1F3FE.svg') }
+.om-folded-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64F-1F3FF.svg') }
+.om-writing-hand { background-image: url('./openmoji-svg-color/270D.svg') }
+.om-writing-hand-light-skin-tone { background-image: url('./openmoji-svg-color/270D-1F3FB.svg') }
+.om-writing-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/270D-1F3FC.svg') }
+.om-writing-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/270D-1F3FD.svg') }
+.om-writing-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/270D-1F3FE.svg') }
+.om-writing-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/270D-1F3FF.svg') }
+.om-nail-polish { background-image: url('./openmoji-svg-color/1F485.svg') }
+.om-nail-polish-light-skin-tone { background-image: url('./openmoji-svg-color/1F485-1F3FB.svg') }
+.om-nail-polish-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F485-1F3FC.svg') }
+.om-nail-polish-medium-skin-tone { background-image: url('./openmoji-svg-color/1F485-1F3FD.svg') }
+.om-nail-polish-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F485-1F3FE.svg') }
+.om-nail-polish-dark-skin-tone { background-image: url('./openmoji-svg-color/1F485-1F3FF.svg') }
+.om-selfie { background-image: url('./openmoji-svg-color/1F933.svg') }
+.om-selfie-light-skin-tone { background-image: url('./openmoji-svg-color/1F933-1F3FB.svg') }
+.om-selfie-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F933-1F3FC.svg') }
+.om-selfie-medium-skin-tone { background-image: url('./openmoji-svg-color/1F933-1F3FD.svg') }
+.om-selfie-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F933-1F3FE.svg') }
+.om-selfie-dark-skin-tone { background-image: url('./openmoji-svg-color/1F933-1F3FF.svg') }
+.om-flexed-biceps { background-image: url('./openmoji-svg-color/1F4AA.svg') }
+.om-flexed-biceps-light-skin-tone { background-image: url('./openmoji-svg-color/1F4AA-1F3FB.svg') }
+.om-flexed-biceps-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F4AA-1F3FC.svg') }
+.om-flexed-biceps-medium-skin-tone { background-image: url('./openmoji-svg-color/1F4AA-1F3FD.svg') }
+.om-flexed-biceps-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F4AA-1F3FE.svg') }
+.om-flexed-biceps-dark-skin-tone { background-image: url('./openmoji-svg-color/1F4AA-1F3FF.svg') }
+.om-mechanical-arm { background-image: url('./openmoji-svg-color/1F9BE.svg') }
+.om-mechanical-leg { background-image: url('./openmoji-svg-color/1F9BF.svg') }
+.om-leg { background-image: url('./openmoji-svg-color/1F9B5.svg') }
+.om-leg-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B5-1F3FB.svg') }
+.om-leg-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B5-1F3FC.svg') }
+.om-leg-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B5-1F3FD.svg') }
+.om-leg-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B5-1F3FE.svg') }
+.om-leg-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B5-1F3FF.svg') }
+.om-foot { background-image: url('./openmoji-svg-color/1F9B6.svg') }
+.om-foot-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B6-1F3FB.svg') }
+.om-foot-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B6-1F3FC.svg') }
+.om-foot-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B6-1F3FD.svg') }
+.om-foot-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B6-1F3FE.svg') }
+.om-foot-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B6-1F3FF.svg') }
+.om-ear { background-image: url('./openmoji-svg-color/1F442.svg') }
+.om-ear-light-skin-tone { background-image: url('./openmoji-svg-color/1F442-1F3FB.svg') }
+.om-ear-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F442-1F3FC.svg') }
+.om-ear-medium-skin-tone { background-image: url('./openmoji-svg-color/1F442-1F3FD.svg') }
+.om-ear-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F442-1F3FE.svg') }
+.om-ear-dark-skin-tone { background-image: url('./openmoji-svg-color/1F442-1F3FF.svg') }
+.om-ear-with-hearing-aid { background-image: url('./openmoji-svg-color/1F9BB.svg') }
+.om-ear-with-hearing-aid-light-skin-tone { background-image: url('./openmoji-svg-color/1F9BB-1F3FB.svg') }
+.om-ear-with-hearing-aid-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9BB-1F3FC.svg') }
+.om-ear-with-hearing-aid-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9BB-1F3FD.svg') }
+.om-ear-with-hearing-aid-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9BB-1F3FE.svg') }
+.om-ear-with-hearing-aid-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9BB-1F3FF.svg') }
+.om-nose { background-image: url('./openmoji-svg-color/1F443.svg') }
+.om-nose-light-skin-tone { background-image: url('./openmoji-svg-color/1F443-1F3FB.svg') }
+.om-nose-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F443-1F3FC.svg') }
+.om-nose-medium-skin-tone { background-image: url('./openmoji-svg-color/1F443-1F3FD.svg') }
+.om-nose-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F443-1F3FE.svg') }
+.om-nose-dark-skin-tone { background-image: url('./openmoji-svg-color/1F443-1F3FF.svg') }
+.om-brain { background-image: url('./openmoji-svg-color/1F9E0.svg') }
+.om-anatomical-heart { background-image: url('./openmoji-svg-color/1FAC0.svg') }
+.om-lungs { background-image: url('./openmoji-svg-color/1FAC1.svg') }
+.om-tooth { background-image: url('./openmoji-svg-color/1F9B7.svg') }
+.om-bone { background-image: url('./openmoji-svg-color/1F9B4.svg') }
+.om-eyes { background-image: url('./openmoji-svg-color/1F440.svg') }
+.om-eye { background-image: url('./openmoji-svg-color/1F441.svg') }
+.om-tongue { background-image: url('./openmoji-svg-color/1F445.svg') }
+.om-mouth { background-image: url('./openmoji-svg-color/1F444.svg') }
+.om-biting-lip { background-image: url('./openmoji-svg-color/1FAE6.svg') }
+.om-baby { background-image: url('./openmoji-svg-color/1F476.svg') }
+.om-baby-light-skin-tone { background-image: url('./openmoji-svg-color/1F476-1F3FB.svg') }
+.om-baby-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F476-1F3FC.svg') }
+.om-baby-medium-skin-tone { background-image: url('./openmoji-svg-color/1F476-1F3FD.svg') }
+.om-baby-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F476-1F3FE.svg') }
+.om-baby-dark-skin-tone { background-image: url('./openmoji-svg-color/1F476-1F3FF.svg') }
+.om-child { background-image: url('./openmoji-svg-color/1F9D2.svg') }
+.om-child-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D2-1F3FB.svg') }
+.om-child-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D2-1F3FC.svg') }
+.om-child-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D2-1F3FD.svg') }
+.om-child-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D2-1F3FE.svg') }
+.om-child-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D2-1F3FF.svg') }
+.om-boy { background-image: url('./openmoji-svg-color/1F466.svg') }
+.om-boy-light-skin-tone { background-image: url('./openmoji-svg-color/1F466-1F3FB.svg') }
+.om-boy-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F466-1F3FC.svg') }
+.om-boy-medium-skin-tone { background-image: url('./openmoji-svg-color/1F466-1F3FD.svg') }
+.om-boy-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F466-1F3FE.svg') }
+.om-boy-dark-skin-tone { background-image: url('./openmoji-svg-color/1F466-1F3FF.svg') }
+.om-girl { background-image: url('./openmoji-svg-color/1F467.svg') }
+.om-girl-light-skin-tone { background-image: url('./openmoji-svg-color/1F467-1F3FB.svg') }
+.om-girl-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F467-1F3FC.svg') }
+.om-girl-medium-skin-tone { background-image: url('./openmoji-svg-color/1F467-1F3FD.svg') }
+.om-girl-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F467-1F3FE.svg') }
+.om-girl-dark-skin-tone { background-image: url('./openmoji-svg-color/1F467-1F3FF.svg') }
+.om-person { background-image: url('./openmoji-svg-color/1F9D1.svg') }
+.om-person-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB.svg') }
+.om-person-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC.svg') }
+.om-person-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD.svg') }
+.om-person-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE.svg') }
+.om-person-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF.svg') }
+.om-person-blond-hair { background-image: url('./openmoji-svg-color/1F471.svg') }
+.om-person-light-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FB.svg') }
+.om-person-medium-light-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FC.svg') }
+.om-person-medium-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FD.svg') }
+.om-person-medium-dark-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FE.svg') }
+.om-person-dark-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FF.svg') }
+.om-man { background-image: url('./openmoji-svg-color/1F468.svg') }
+.om-man-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB.svg') }
+.om-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC.svg') }
+.om-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD.svg') }
+.om-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE.svg') }
+.om-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF.svg') }
+.om-person-beard { background-image: url('./openmoji-svg-color/1F9D4.svg') }
+.om-person-light-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FB.svg') }
+.om-person-medium-light-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FC.svg') }
+.om-person-medium-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FD.svg') }
+.om-person-medium-dark-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FE.svg') }
+.om-person-dark-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FF.svg') }
+.om-man-beard { background-image: url('./openmoji-svg-color/1F9D4-200D-2642-FE0F.svg') }
+.om-man-light-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FB-200D-2642-FE0F.svg') }
+.om-man-medium-light-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FC-200D-2642-FE0F.svg') }
+.om-man-medium-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FD-200D-2642-FE0F.svg') }
+.om-man-medium-dark-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FE-200D-2642-FE0F.svg') }
+.om-man-dark-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-beard { background-image: url('./openmoji-svg-color/1F9D4-200D-2640-FE0F.svg') }
+.om-woman-light-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-medium-light-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-medium-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-medium-dark-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-dark-skin-tone-beard { background-image: url('./openmoji-svg-color/1F9D4-1F3FF-200D-2640-FE0F.svg') }
+.om-man-red-hair { background-image: url('./openmoji-svg-color/1F468-200D-1F9B0.svg') }
+.om-man-light-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9B0.svg') }
+.om-man-medium-light-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9B0.svg') }
+.om-man-medium-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9B0.svg') }
+.om-man-medium-dark-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9B0.svg') }
+.om-man-dark-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9B0.svg') }
+.om-man-curly-hair { background-image: url('./openmoji-svg-color/1F468-200D-1F9B1.svg') }
+.om-man-light-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9B1.svg') }
+.om-man-medium-light-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9B1.svg') }
+.om-man-medium-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9B1.svg') }
+.om-man-medium-dark-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9B1.svg') }
+.om-man-dark-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9B1.svg') }
+.om-man-white-hair { background-image: url('./openmoji-svg-color/1F468-200D-1F9B3.svg') }
+.om-man-light-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9B3.svg') }
+.om-man-medium-light-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9B3.svg') }
+.om-man-medium-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9B3.svg') }
+.om-man-medium-dark-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9B3.svg') }
+.om-man-dark-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9B3.svg') }
+.om-man-bald { background-image: url('./openmoji-svg-color/1F468-200D-1F9B2.svg') }
+.om-man-light-skin-tone-bald { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9B2.svg') }
+.om-man-medium-light-skin-tone-bald { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9B2.svg') }
+.om-man-medium-skin-tone-bald { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9B2.svg') }
+.om-man-medium-dark-skin-tone-bald { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9B2.svg') }
+.om-man-dark-skin-tone-bald { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9B2.svg') }
+.om-woman { background-image: url('./openmoji-svg-color/1F469.svg') }
+.om-woman-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB.svg') }
+.om-woman-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC.svg') }
+.om-woman-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD.svg') }
+.om-woman-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE.svg') }
+.om-woman-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF.svg') }
+.om-woman-red-hair { background-image: url('./openmoji-svg-color/1F469-200D-1F9B0.svg') }
+.om-woman-light-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9B0.svg') }
+.om-woman-medium-light-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9B0.svg') }
+.om-woman-medium-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9B0.svg') }
+.om-woman-medium-dark-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9B0.svg') }
+.om-woman-dark-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9B0.svg') }
+.om-person-red-hair { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9B0.svg') }
+.om-person-light-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9B0.svg') }
+.om-person-medium-light-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9B0.svg') }
+.om-person-medium-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9B0.svg') }
+.om-person-medium-dark-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9B0.svg') }
+.om-person-dark-skin-tone-red-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9B0.svg') }
+.om-woman-curly-hair { background-image: url('./openmoji-svg-color/1F469-200D-1F9B1.svg') }
+.om-woman-light-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9B1.svg') }
+.om-woman-medium-light-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9B1.svg') }
+.om-woman-medium-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9B1.svg') }
+.om-woman-medium-dark-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9B1.svg') }
+.om-woman-dark-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9B1.svg') }
+.om-person-curly-hair { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9B1.svg') }
+.om-person-light-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9B1.svg') }
+.om-person-medium-light-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9B1.svg') }
+.om-person-medium-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9B1.svg') }
+.om-person-medium-dark-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9B1.svg') }
+.om-person-dark-skin-tone-curly-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9B1.svg') }
+.om-woman-white-hair { background-image: url('./openmoji-svg-color/1F469-200D-1F9B3.svg') }
+.om-woman-light-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9B3.svg') }
+.om-woman-medium-light-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9B3.svg') }
+.om-woman-medium-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9B3.svg') }
+.om-woman-medium-dark-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9B3.svg') }
+.om-woman-dark-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9B3.svg') }
+.om-person-white-hair { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9B3.svg') }
+.om-person-light-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9B3.svg') }
+.om-person-medium-light-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9B3.svg') }
+.om-person-medium-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9B3.svg') }
+.om-person-medium-dark-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9B3.svg') }
+.om-person-dark-skin-tone-white-hair { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9B3.svg') }
+.om-woman-bald { background-image: url('./openmoji-svg-color/1F469-200D-1F9B2.svg') }
+.om-woman-light-skin-tone-bald { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9B2.svg') }
+.om-woman-medium-light-skin-tone-bald { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9B2.svg') }
+.om-woman-medium-skin-tone-bald { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9B2.svg') }
+.om-woman-medium-dark-skin-tone-bald { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9B2.svg') }
+.om-woman-dark-skin-tone-bald { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9B2.svg') }
+.om-person-bald { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9B2.svg') }
+.om-person-light-skin-tone-bald { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9B2.svg') }
+.om-person-medium-light-skin-tone-bald { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9B2.svg') }
+.om-person-medium-skin-tone-bald { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9B2.svg') }
+.om-person-medium-dark-skin-tone-bald { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9B2.svg') }
+.om-person-dark-skin-tone-bald { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9B2.svg') }
+.om-woman-blond-hair { background-image: url('./openmoji-svg-color/1F471-200D-2640-FE0F.svg') }
+.om-woman-light-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-medium-light-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-medium-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-medium-dark-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-dark-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FF-200D-2640-FE0F.svg') }
+.om-man-blond-hair { background-image: url('./openmoji-svg-color/1F471-200D-2642-FE0F.svg') }
+.om-man-light-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FB-200D-2642-FE0F.svg') }
+.om-man-medium-light-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FC-200D-2642-FE0F.svg') }
+.om-man-medium-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FD-200D-2642-FE0F.svg') }
+.om-man-medium-dark-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FE-200D-2642-FE0F.svg') }
+.om-man-dark-skin-tone-blond-hair { background-image: url('./openmoji-svg-color/1F471-1F3FF-200D-2642-FE0F.svg') }
+.om-older-person { background-image: url('./openmoji-svg-color/1F9D3.svg') }
+.om-older-person-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D3-1F3FB.svg') }
+.om-older-person-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D3-1F3FC.svg') }
+.om-older-person-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D3-1F3FD.svg') }
+.om-older-person-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D3-1F3FE.svg') }
+.om-older-person-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D3-1F3FF.svg') }
+.om-old-man { background-image: url('./openmoji-svg-color/1F474.svg') }
+.om-old-man-light-skin-tone { background-image: url('./openmoji-svg-color/1F474-1F3FB.svg') }
+.om-old-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F474-1F3FC.svg') }
+.om-old-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1F474-1F3FD.svg') }
+.om-old-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F474-1F3FE.svg') }
+.om-old-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1F474-1F3FF.svg') }
+.om-old-woman { background-image: url('./openmoji-svg-color/1F475.svg') }
+.om-old-woman-light-skin-tone { background-image: url('./openmoji-svg-color/1F475-1F3FB.svg') }
+.om-old-woman-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F475-1F3FC.svg') }
+.om-old-woman-medium-skin-tone { background-image: url('./openmoji-svg-color/1F475-1F3FD.svg') }
+.om-old-woman-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F475-1F3FE.svg') }
+.om-old-woman-dark-skin-tone { background-image: url('./openmoji-svg-color/1F475-1F3FF.svg') }
+.om-person-frowning { background-image: url('./openmoji-svg-color/1F64D.svg') }
+.om-person-frowning-light-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FB.svg') }
+.om-person-frowning-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FC.svg') }
+.om-person-frowning-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FD.svg') }
+.om-person-frowning-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FE.svg') }
+.om-person-frowning-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FF.svg') }
+.om-man-frowning { background-image: url('./openmoji-svg-color/1F64D-200D-2642-FE0F.svg') }
+.om-man-frowning-light-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FB-200D-2642-FE0F.svg') }
+.om-man-frowning-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FC-200D-2642-FE0F.svg') }
+.om-man-frowning-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FD-200D-2642-FE0F.svg') }
+.om-man-frowning-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FE-200D-2642-FE0F.svg') }
+.om-man-frowning-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-frowning { background-image: url('./openmoji-svg-color/1F64D-200D-2640-FE0F.svg') }
+.om-woman-frowning-light-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-frowning-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-frowning-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-frowning-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-frowning-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64D-1F3FF-200D-2640-FE0F.svg') }
+.om-person-pouting { background-image: url('./openmoji-svg-color/1F64E.svg') }
+.om-person-pouting-light-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FB.svg') }
+.om-person-pouting-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FC.svg') }
+.om-person-pouting-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FD.svg') }
+.om-person-pouting-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FE.svg') }
+.om-person-pouting-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FF.svg') }
+.om-man-pouting { background-image: url('./openmoji-svg-color/1F64E-200D-2642-FE0F.svg') }
+.om-man-pouting-light-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FB-200D-2642-FE0F.svg') }
+.om-man-pouting-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FC-200D-2642-FE0F.svg') }
+.om-man-pouting-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FD-200D-2642-FE0F.svg') }
+.om-man-pouting-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FE-200D-2642-FE0F.svg') }
+.om-man-pouting-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-pouting { background-image: url('./openmoji-svg-color/1F64E-200D-2640-FE0F.svg') }
+.om-woman-pouting-light-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-pouting-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-pouting-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-pouting-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-pouting-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64E-1F3FF-200D-2640-FE0F.svg') }
+.om-person-gesturing-no { background-image: url('./openmoji-svg-color/1F645.svg') }
+.om-person-gesturing-no-light-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FB.svg') }
+.om-person-gesturing-no-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FC.svg') }
+.om-person-gesturing-no-medium-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FD.svg') }
+.om-person-gesturing-no-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FE.svg') }
+.om-person-gesturing-no-dark-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FF.svg') }
+.om-man-gesturing-no { background-image: url('./openmoji-svg-color/1F645-200D-2642-FE0F.svg') }
+.om-man-gesturing-no-light-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FB-200D-2642-FE0F.svg') }
+.om-man-gesturing-no-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FC-200D-2642-FE0F.svg') }
+.om-man-gesturing-no-medium-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FD-200D-2642-FE0F.svg') }
+.om-man-gesturing-no-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FE-200D-2642-FE0F.svg') }
+.om-man-gesturing-no-dark-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-gesturing-no { background-image: url('./openmoji-svg-color/1F645-200D-2640-FE0F.svg') }
+.om-woman-gesturing-no-light-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-gesturing-no-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-gesturing-no-medium-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-gesturing-no-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-gesturing-no-dark-skin-tone { background-image: url('./openmoji-svg-color/1F645-1F3FF-200D-2640-FE0F.svg') }
+.om-person-gesturing-ok { background-image: url('./openmoji-svg-color/1F646.svg') }
+.om-person-gesturing-ok-light-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FB.svg') }
+.om-person-gesturing-ok-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FC.svg') }
+.om-person-gesturing-ok-medium-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FD.svg') }
+.om-person-gesturing-ok-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FE.svg') }
+.om-person-gesturing-ok-dark-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FF.svg') }
+.om-man-gesturing-ok { background-image: url('./openmoji-svg-color/1F646-200D-2642-FE0F.svg') }
+.om-man-gesturing-ok-light-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FB-200D-2642-FE0F.svg') }
+.om-man-gesturing-ok-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FC-200D-2642-FE0F.svg') }
+.om-man-gesturing-ok-medium-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FD-200D-2642-FE0F.svg') }
+.om-man-gesturing-ok-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FE-200D-2642-FE0F.svg') }
+.om-man-gesturing-ok-dark-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-gesturing-ok { background-image: url('./openmoji-svg-color/1F646-200D-2640-FE0F.svg') }
+.om-woman-gesturing-ok-light-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-gesturing-ok-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-gesturing-ok-medium-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-gesturing-ok-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-gesturing-ok-dark-skin-tone { background-image: url('./openmoji-svg-color/1F646-1F3FF-200D-2640-FE0F.svg') }
+.om-person-tipping-hand { background-image: url('./openmoji-svg-color/1F481.svg') }
+.om-person-tipping-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FB.svg') }
+.om-person-tipping-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FC.svg') }
+.om-person-tipping-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FD.svg') }
+.om-person-tipping-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FE.svg') }
+.om-person-tipping-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FF.svg') }
+.om-man-tipping-hand { background-image: url('./openmoji-svg-color/1F481-200D-2642-FE0F.svg') }
+.om-man-tipping-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FB-200D-2642-FE0F.svg') }
+.om-man-tipping-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FC-200D-2642-FE0F.svg') }
+.om-man-tipping-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FD-200D-2642-FE0F.svg') }
+.om-man-tipping-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FE-200D-2642-FE0F.svg') }
+.om-man-tipping-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-tipping-hand { background-image: url('./openmoji-svg-color/1F481-200D-2640-FE0F.svg') }
+.om-woman-tipping-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-tipping-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-tipping-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-tipping-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-tipping-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F481-1F3FF-200D-2640-FE0F.svg') }
+.om-person-raising-hand { background-image: url('./openmoji-svg-color/1F64B.svg') }
+.om-person-raising-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FB.svg') }
+.om-person-raising-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FC.svg') }
+.om-person-raising-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FD.svg') }
+.om-person-raising-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FE.svg') }
+.om-person-raising-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FF.svg') }
+.om-man-raising-hand { background-image: url('./openmoji-svg-color/1F64B-200D-2642-FE0F.svg') }
+.om-man-raising-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FB-200D-2642-FE0F.svg') }
+.om-man-raising-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FC-200D-2642-FE0F.svg') }
+.om-man-raising-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FD-200D-2642-FE0F.svg') }
+.om-man-raising-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FE-200D-2642-FE0F.svg') }
+.om-man-raising-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-raising-hand { background-image: url('./openmoji-svg-color/1F64B-200D-2640-FE0F.svg') }
+.om-woman-raising-hand-light-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-raising-hand-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-raising-hand-medium-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-raising-hand-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-raising-hand-dark-skin-tone { background-image: url('./openmoji-svg-color/1F64B-1F3FF-200D-2640-FE0F.svg') }
+.om-deaf-person { background-image: url('./openmoji-svg-color/1F9CF.svg') }
+.om-deaf-person-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FB.svg') }
+.om-deaf-person-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FC.svg') }
+.om-deaf-person-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FD.svg') }
+.om-deaf-person-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FE.svg') }
+.om-deaf-person-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FF.svg') }
+.om-deaf-man { background-image: url('./openmoji-svg-color/1F9CF-200D-2642-FE0F.svg') }
+.om-deaf-man-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FB-200D-2642-FE0F.svg') }
+.om-deaf-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FC-200D-2642-FE0F.svg') }
+.om-deaf-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FD-200D-2642-FE0F.svg') }
+.om-deaf-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FE-200D-2642-FE0F.svg') }
+.om-deaf-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FF-200D-2642-FE0F.svg') }
+.om-deaf-woman { background-image: url('./openmoji-svg-color/1F9CF-200D-2640-FE0F.svg') }
+.om-deaf-woman-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FB-200D-2640-FE0F.svg') }
+.om-deaf-woman-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FC-200D-2640-FE0F.svg') }
+.om-deaf-woman-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FD-200D-2640-FE0F.svg') }
+.om-deaf-woman-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FE-200D-2640-FE0F.svg') }
+.om-deaf-woman-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CF-1F3FF-200D-2640-FE0F.svg') }
+.om-person-bowing { background-image: url('./openmoji-svg-color/1F647.svg') }
+.om-person-bowing-light-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FB.svg') }
+.om-person-bowing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FC.svg') }
+.om-person-bowing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FD.svg') }
+.om-person-bowing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FE.svg') }
+.om-person-bowing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FF.svg') }
+.om-man-bowing { background-image: url('./openmoji-svg-color/1F647-200D-2642-FE0F.svg') }
+.om-man-bowing-light-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FB-200D-2642-FE0F.svg') }
+.om-man-bowing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FC-200D-2642-FE0F.svg') }
+.om-man-bowing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FD-200D-2642-FE0F.svg') }
+.om-man-bowing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FE-200D-2642-FE0F.svg') }
+.om-man-bowing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-bowing { background-image: url('./openmoji-svg-color/1F647-200D-2640-FE0F.svg') }
+.om-woman-bowing-light-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-bowing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-bowing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-bowing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-bowing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F647-1F3FF-200D-2640-FE0F.svg') }
+.om-person-facepalming { background-image: url('./openmoji-svg-color/1F926.svg') }
+.om-person-facepalming-light-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FB.svg') }
+.om-person-facepalming-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FC.svg') }
+.om-person-facepalming-medium-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FD.svg') }
+.om-person-facepalming-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FE.svg') }
+.om-person-facepalming-dark-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FF.svg') }
+.om-man-facepalming { background-image: url('./openmoji-svg-color/1F926-200D-2642-FE0F.svg') }
+.om-man-facepalming-light-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FB-200D-2642-FE0F.svg') }
+.om-man-facepalming-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FC-200D-2642-FE0F.svg') }
+.om-man-facepalming-medium-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FD-200D-2642-FE0F.svg') }
+.om-man-facepalming-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FE-200D-2642-FE0F.svg') }
+.om-man-facepalming-dark-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-facepalming { background-image: url('./openmoji-svg-color/1F926-200D-2640-FE0F.svg') }
+.om-woman-facepalming-light-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-facepalming-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-facepalming-medium-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-facepalming-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-facepalming-dark-skin-tone { background-image: url('./openmoji-svg-color/1F926-1F3FF-200D-2640-FE0F.svg') }
+.om-person-shrugging { background-image: url('./openmoji-svg-color/1F937.svg') }
+.om-person-shrugging-light-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FB.svg') }
+.om-person-shrugging-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FC.svg') }
+.om-person-shrugging-medium-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FD.svg') }
+.om-person-shrugging-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FE.svg') }
+.om-person-shrugging-dark-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FF.svg') }
+.om-man-shrugging { background-image: url('./openmoji-svg-color/1F937-200D-2642-FE0F.svg') }
+.om-man-shrugging-light-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FB-200D-2642-FE0F.svg') }
+.om-man-shrugging-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FC-200D-2642-FE0F.svg') }
+.om-man-shrugging-medium-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FD-200D-2642-FE0F.svg') }
+.om-man-shrugging-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FE-200D-2642-FE0F.svg') }
+.om-man-shrugging-dark-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-shrugging { background-image: url('./openmoji-svg-color/1F937-200D-2640-FE0F.svg') }
+.om-woman-shrugging-light-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-shrugging-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-shrugging-medium-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-shrugging-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-shrugging-dark-skin-tone { background-image: url('./openmoji-svg-color/1F937-1F3FF-200D-2640-FE0F.svg') }
+.om-health-worker { background-image: url('./openmoji-svg-color/1F9D1-200D-2695-FE0F.svg') }
+.om-health-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2695-FE0F.svg') }
+.om-health-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2695-FE0F.svg') }
+.om-health-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2695-FE0F.svg') }
+.om-health-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2695-FE0F.svg') }
+.om-health-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2695-FE0F.svg') }
+.om-man-health-worker { background-image: url('./openmoji-svg-color/1F468-200D-2695-FE0F.svg') }
+.om-man-health-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2695-FE0F.svg') }
+.om-man-health-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2695-FE0F.svg') }
+.om-man-health-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2695-FE0F.svg') }
+.om-man-health-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2695-FE0F.svg') }
+.om-man-health-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2695-FE0F.svg') }
+.om-woman-health-worker { background-image: url('./openmoji-svg-color/1F469-200D-2695-FE0F.svg') }
+.om-woman-health-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2695-FE0F.svg') }
+.om-woman-health-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2695-FE0F.svg') }
+.om-woman-health-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2695-FE0F.svg') }
+.om-woman-health-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2695-FE0F.svg') }
+.om-woman-health-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2695-FE0F.svg') }
+.om-student { background-image: url('./openmoji-svg-color/1F9D1-200D-1F393.svg') }
+.om-student-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F393.svg') }
+.om-student-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F393.svg') }
+.om-student-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F393.svg') }
+.om-student-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F393.svg') }
+.om-student-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F393.svg') }
+.om-man-student { background-image: url('./openmoji-svg-color/1F468-200D-1F393.svg') }
+.om-man-student-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F393.svg') }
+.om-man-student-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F393.svg') }
+.om-man-student-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F393.svg') }
+.om-man-student-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F393.svg') }
+.om-man-student-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F393.svg') }
+.om-woman-student { background-image: url('./openmoji-svg-color/1F469-200D-1F393.svg') }
+.om-woman-student-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F393.svg') }
+.om-woman-student-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F393.svg') }
+.om-woman-student-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F393.svg') }
+.om-woman-student-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F393.svg') }
+.om-woman-student-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F393.svg') }
+.om-teacher { background-image: url('./openmoji-svg-color/1F9D1-200D-1F3EB.svg') }
+.om-teacher-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F3EB.svg') }
+.om-teacher-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F3EB.svg') }
+.om-teacher-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F3EB.svg') }
+.om-teacher-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F3EB.svg') }
+.om-teacher-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F3EB.svg') }
+.om-man-teacher { background-image: url('./openmoji-svg-color/1F468-200D-1F3EB.svg') }
+.om-man-teacher-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F3EB.svg') }
+.om-man-teacher-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F3EB.svg') }
+.om-man-teacher-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F3EB.svg') }
+.om-man-teacher-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F3EB.svg') }
+.om-man-teacher-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F3EB.svg') }
+.om-woman-teacher { background-image: url('./openmoji-svg-color/1F469-200D-1F3EB.svg') }
+.om-woman-teacher-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F3EB.svg') }
+.om-woman-teacher-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F3EB.svg') }
+.om-woman-teacher-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F3EB.svg') }
+.om-woman-teacher-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F3EB.svg') }
+.om-woman-teacher-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F3EB.svg') }
+.om-judge { background-image: url('./openmoji-svg-color/1F9D1-200D-2696-FE0F.svg') }
+.om-judge-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2696-FE0F.svg') }
+.om-judge-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2696-FE0F.svg') }
+.om-judge-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2696-FE0F.svg') }
+.om-judge-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2696-FE0F.svg') }
+.om-judge-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2696-FE0F.svg') }
+.om-man-judge { background-image: url('./openmoji-svg-color/1F468-200D-2696-FE0F.svg') }
+.om-man-judge-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2696-FE0F.svg') }
+.om-man-judge-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2696-FE0F.svg') }
+.om-man-judge-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2696-FE0F.svg') }
+.om-man-judge-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2696-FE0F.svg') }
+.om-man-judge-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2696-FE0F.svg') }
+.om-woman-judge { background-image: url('./openmoji-svg-color/1F469-200D-2696-FE0F.svg') }
+.om-woman-judge-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2696-FE0F.svg') }
+.om-woman-judge-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2696-FE0F.svg') }
+.om-woman-judge-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2696-FE0F.svg') }
+.om-woman-judge-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2696-FE0F.svg') }
+.om-woman-judge-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2696-FE0F.svg') }
+.om-farmer { background-image: url('./openmoji-svg-color/1F9D1-200D-1F33E.svg') }
+.om-farmer-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F33E.svg') }
+.om-farmer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F33E.svg') }
+.om-farmer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F33E.svg') }
+.om-farmer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F33E.svg') }
+.om-farmer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F33E.svg') }
+.om-man-farmer { background-image: url('./openmoji-svg-color/1F468-200D-1F33E.svg') }
+.om-man-farmer-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F33E.svg') }
+.om-man-farmer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F33E.svg') }
+.om-man-farmer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F33E.svg') }
+.om-man-farmer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F33E.svg') }
+.om-man-farmer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F33E.svg') }
+.om-woman-farmer { background-image: url('./openmoji-svg-color/1F469-200D-1F33E.svg') }
+.om-woman-farmer-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F33E.svg') }
+.om-woman-farmer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F33E.svg') }
+.om-woman-farmer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F33E.svg') }
+.om-woman-farmer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F33E.svg') }
+.om-woman-farmer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F33E.svg') }
+.om-cook { background-image: url('./openmoji-svg-color/1F9D1-200D-1F373.svg') }
+.om-cook-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F373.svg') }
+.om-cook-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F373.svg') }
+.om-cook-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F373.svg') }
+.om-cook-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F373.svg') }
+.om-cook-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F373.svg') }
+.om-man-cook { background-image: url('./openmoji-svg-color/1F468-200D-1F373.svg') }
+.om-man-cook-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F373.svg') }
+.om-man-cook-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F373.svg') }
+.om-man-cook-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F373.svg') }
+.om-man-cook-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F373.svg') }
+.om-man-cook-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F373.svg') }
+.om-woman-cook { background-image: url('./openmoji-svg-color/1F469-200D-1F373.svg') }
+.om-woman-cook-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F373.svg') }
+.om-woman-cook-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F373.svg') }
+.om-woman-cook-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F373.svg') }
+.om-woman-cook-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F373.svg') }
+.om-woman-cook-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F373.svg') }
+.om-mechanic { background-image: url('./openmoji-svg-color/1F9D1-200D-1F527.svg') }
+.om-mechanic-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F527.svg') }
+.om-mechanic-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F527.svg') }
+.om-mechanic-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F527.svg') }
+.om-mechanic-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F527.svg') }
+.om-mechanic-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F527.svg') }
+.om-man-mechanic { background-image: url('./openmoji-svg-color/1F468-200D-1F527.svg') }
+.om-man-mechanic-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F527.svg') }
+.om-man-mechanic-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F527.svg') }
+.om-man-mechanic-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F527.svg') }
+.om-man-mechanic-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F527.svg') }
+.om-man-mechanic-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F527.svg') }
+.om-woman-mechanic { background-image: url('./openmoji-svg-color/1F469-200D-1F527.svg') }
+.om-woman-mechanic-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F527.svg') }
+.om-woman-mechanic-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F527.svg') }
+.om-woman-mechanic-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F527.svg') }
+.om-woman-mechanic-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F527.svg') }
+.om-woman-mechanic-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F527.svg') }
+.om-factory-worker { background-image: url('./openmoji-svg-color/1F9D1-200D-1F3ED.svg') }
+.om-factory-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F3ED.svg') }
+.om-factory-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F3ED.svg') }
+.om-factory-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F3ED.svg') }
+.om-factory-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F3ED.svg') }
+.om-factory-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F3ED.svg') }
+.om-man-factory-worker { background-image: url('./openmoji-svg-color/1F468-200D-1F3ED.svg') }
+.om-man-factory-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F3ED.svg') }
+.om-man-factory-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F3ED.svg') }
+.om-man-factory-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F3ED.svg') }
+.om-man-factory-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F3ED.svg') }
+.om-man-factory-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F3ED.svg') }
+.om-woman-factory-worker { background-image: url('./openmoji-svg-color/1F469-200D-1F3ED.svg') }
+.om-woman-factory-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F3ED.svg') }
+.om-woman-factory-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F3ED.svg') }
+.om-woman-factory-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F3ED.svg') }
+.om-woman-factory-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F3ED.svg') }
+.om-woman-factory-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F3ED.svg') }
+.om-office-worker { background-image: url('./openmoji-svg-color/1F9D1-200D-1F4BC.svg') }
+.om-office-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F4BC.svg') }
+.om-office-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F4BC.svg') }
+.om-office-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F4BC.svg') }
+.om-office-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F4BC.svg') }
+.om-office-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F4BC.svg') }
+.om-man-office-worker { background-image: url('./openmoji-svg-color/1F468-200D-1F4BC.svg') }
+.om-man-office-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F4BC.svg') }
+.om-man-office-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F4BC.svg') }
+.om-man-office-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F4BC.svg') }
+.om-man-office-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F4BC.svg') }
+.om-man-office-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F4BC.svg') }
+.om-woman-office-worker { background-image: url('./openmoji-svg-color/1F469-200D-1F4BC.svg') }
+.om-woman-office-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F4BC.svg') }
+.om-woman-office-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F4BC.svg') }
+.om-woman-office-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F4BC.svg') }
+.om-woman-office-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F4BC.svg') }
+.om-woman-office-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F4BC.svg') }
+.om-scientist { background-image: url('./openmoji-svg-color/1F9D1-200D-1F52C.svg') }
+.om-scientist-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F52C.svg') }
+.om-scientist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F52C.svg') }
+.om-scientist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F52C.svg') }
+.om-scientist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F52C.svg') }
+.om-scientist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F52C.svg') }
+.om-man-scientist { background-image: url('./openmoji-svg-color/1F468-200D-1F52C.svg') }
+.om-man-scientist-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F52C.svg') }
+.om-man-scientist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F52C.svg') }
+.om-man-scientist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F52C.svg') }
+.om-man-scientist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F52C.svg') }
+.om-man-scientist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F52C.svg') }
+.om-woman-scientist { background-image: url('./openmoji-svg-color/1F469-200D-1F52C.svg') }
+.om-woman-scientist-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F52C.svg') }
+.om-woman-scientist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F52C.svg') }
+.om-woman-scientist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F52C.svg') }
+.om-woman-scientist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F52C.svg') }
+.om-woman-scientist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F52C.svg') }
+.om-technologist { background-image: url('./openmoji-svg-color/1F9D1-200D-1F4BB.svg') }
+.om-technologist-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F4BB.svg') }
+.om-technologist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F4BB.svg') }
+.om-technologist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F4BB.svg') }
+.om-technologist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F4BB.svg') }
+.om-technologist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F4BB.svg') }
+.om-man-technologist { background-image: url('./openmoji-svg-color/1F468-200D-1F4BB.svg') }
+.om-man-technologist-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F4BB.svg') }
+.om-man-technologist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F4BB.svg') }
+.om-man-technologist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F4BB.svg') }
+.om-man-technologist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F4BB.svg') }
+.om-man-technologist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F4BB.svg') }
+.om-woman-technologist { background-image: url('./openmoji-svg-color/1F469-200D-1F4BB.svg') }
+.om-woman-technologist-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F4BB.svg') }
+.om-woman-technologist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F4BB.svg') }
+.om-woman-technologist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F4BB.svg') }
+.om-woman-technologist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F4BB.svg') }
+.om-woman-technologist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F4BB.svg') }
+.om-singer { background-image: url('./openmoji-svg-color/1F9D1-200D-1F3A4.svg') }
+.om-singer-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F3A4.svg') }
+.om-singer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F3A4.svg') }
+.om-singer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F3A4.svg') }
+.om-singer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F3A4.svg') }
+.om-singer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F3A4.svg') }
+.om-man-singer { background-image: url('./openmoji-svg-color/1F468-200D-1F3A4.svg') }
+.om-man-singer-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F3A4.svg') }
+.om-man-singer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F3A4.svg') }
+.om-man-singer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F3A4.svg') }
+.om-man-singer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F3A4.svg') }
+.om-man-singer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F3A4.svg') }
+.om-woman-singer { background-image: url('./openmoji-svg-color/1F469-200D-1F3A4.svg') }
+.om-woman-singer-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F3A4.svg') }
+.om-woman-singer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F3A4.svg') }
+.om-woman-singer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F3A4.svg') }
+.om-woman-singer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F3A4.svg') }
+.om-woman-singer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F3A4.svg') }
+.om-artist { background-image: url('./openmoji-svg-color/1F9D1-200D-1F3A8.svg') }
+.om-artist-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F3A8.svg') }
+.om-artist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F3A8.svg') }
+.om-artist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F3A8.svg') }
+.om-artist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F3A8.svg') }
+.om-artist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F3A8.svg') }
+.om-man-artist { background-image: url('./openmoji-svg-color/1F468-200D-1F3A8.svg') }
+.om-man-artist-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F3A8.svg') }
+.om-man-artist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F3A8.svg') }
+.om-man-artist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F3A8.svg') }
+.om-man-artist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F3A8.svg') }
+.om-man-artist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F3A8.svg') }
+.om-woman-artist { background-image: url('./openmoji-svg-color/1F469-200D-1F3A8.svg') }
+.om-woman-artist-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F3A8.svg') }
+.om-woman-artist-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F3A8.svg') }
+.om-woman-artist-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F3A8.svg') }
+.om-woman-artist-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F3A8.svg') }
+.om-woman-artist-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F3A8.svg') }
+.om-pilot { background-image: url('./openmoji-svg-color/1F9D1-200D-2708-FE0F.svg') }
+.om-pilot-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2708-FE0F.svg') }
+.om-pilot-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2708-FE0F.svg') }
+.om-pilot-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2708-FE0F.svg') }
+.om-pilot-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2708-FE0F.svg') }
+.om-pilot-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2708-FE0F.svg') }
+.om-man-pilot { background-image: url('./openmoji-svg-color/1F468-200D-2708-FE0F.svg') }
+.om-man-pilot-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2708-FE0F.svg') }
+.om-man-pilot-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2708-FE0F.svg') }
+.om-man-pilot-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2708-FE0F.svg') }
+.om-man-pilot-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2708-FE0F.svg') }
+.om-man-pilot-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2708-FE0F.svg') }
+.om-woman-pilot { background-image: url('./openmoji-svg-color/1F469-200D-2708-FE0F.svg') }
+.om-woman-pilot-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2708-FE0F.svg') }
+.om-woman-pilot-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2708-FE0F.svg') }
+.om-woman-pilot-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2708-FE0F.svg') }
+.om-woman-pilot-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2708-FE0F.svg') }
+.om-woman-pilot-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2708-FE0F.svg') }
+.om-astronaut { background-image: url('./openmoji-svg-color/1F9D1-200D-1F680.svg') }
+.om-astronaut-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F680.svg') }
+.om-astronaut-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F680.svg') }
+.om-astronaut-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F680.svg') }
+.om-astronaut-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F680.svg') }
+.om-astronaut-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F680.svg') }
+.om-man-astronaut { background-image: url('./openmoji-svg-color/1F468-200D-1F680.svg') }
+.om-man-astronaut-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F680.svg') }
+.om-man-astronaut-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F680.svg') }
+.om-man-astronaut-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F680.svg') }
+.om-man-astronaut-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F680.svg') }
+.om-man-astronaut-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F680.svg') }
+.om-woman-astronaut { background-image: url('./openmoji-svg-color/1F469-200D-1F680.svg') }
+.om-woman-astronaut-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F680.svg') }
+.om-woman-astronaut-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F680.svg') }
+.om-woman-astronaut-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F680.svg') }
+.om-woman-astronaut-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F680.svg') }
+.om-woman-astronaut-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F680.svg') }
+.om-firefighter { background-image: url('./openmoji-svg-color/1F9D1-200D-1F692.svg') }
+.om-firefighter-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F692.svg') }
+.om-firefighter-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F692.svg') }
+.om-firefighter-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F692.svg') }
+.om-firefighter-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F692.svg') }
+.om-firefighter-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F692.svg') }
+.om-man-firefighter { background-image: url('./openmoji-svg-color/1F468-200D-1F692.svg') }
+.om-man-firefighter-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F692.svg') }
+.om-man-firefighter-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F692.svg') }
+.om-man-firefighter-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F692.svg') }
+.om-man-firefighter-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F692.svg') }
+.om-man-firefighter-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F692.svg') }
+.om-woman-firefighter { background-image: url('./openmoji-svg-color/1F469-200D-1F692.svg') }
+.om-woman-firefighter-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F692.svg') }
+.om-woman-firefighter-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F692.svg') }
+.om-woman-firefighter-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F692.svg') }
+.om-woman-firefighter-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F692.svg') }
+.om-woman-firefighter-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F692.svg') }
+.om-police-officer { background-image: url('./openmoji-svg-color/1F46E.svg') }
+.om-police-officer-light-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FB.svg') }
+.om-police-officer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FC.svg') }
+.om-police-officer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FD.svg') }
+.om-police-officer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FE.svg') }
+.om-police-officer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FF.svg') }
+.om-man-police-officer { background-image: url('./openmoji-svg-color/1F46E-200D-2642-FE0F.svg') }
+.om-man-police-officer-light-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FB-200D-2642-FE0F.svg') }
+.om-man-police-officer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FC-200D-2642-FE0F.svg') }
+.om-man-police-officer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FD-200D-2642-FE0F.svg') }
+.om-man-police-officer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FE-200D-2642-FE0F.svg') }
+.om-man-police-officer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-police-officer { background-image: url('./openmoji-svg-color/1F46E-200D-2640-FE0F.svg') }
+.om-woman-police-officer-light-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-police-officer-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-police-officer-medium-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-police-officer-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-police-officer-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46E-1F3FF-200D-2640-FE0F.svg') }
+.om-detective { background-image: url('./openmoji-svg-color/1F575.svg') }
+.om-detective-light-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FB.svg') }
+.om-detective-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FC.svg') }
+.om-detective-medium-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FD.svg') }
+.om-detective-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FE.svg') }
+.om-detective-dark-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FF.svg') }
+.om-man-detective { background-image: url('./openmoji-svg-color/1F575-FE0F-200D-2642-FE0F.svg') }
+.om-man-detective-light-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FB-200D-2642-FE0F.svg') }
+.om-man-detective-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FC-200D-2642-FE0F.svg') }
+.om-man-detective-medium-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FD-200D-2642-FE0F.svg') }
+.om-man-detective-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FE-200D-2642-FE0F.svg') }
+.om-man-detective-dark-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-detective { background-image: url('./openmoji-svg-color/1F575-FE0F-200D-2640-FE0F.svg') }
+.om-woman-detective-light-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-detective-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-detective-medium-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-detective-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-detective-dark-skin-tone { background-image: url('./openmoji-svg-color/1F575-1F3FF-200D-2640-FE0F.svg') }
+.om-guard { background-image: url('./openmoji-svg-color/1F482.svg') }
+.om-guard-light-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FB.svg') }
+.om-guard-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FC.svg') }
+.om-guard-medium-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FD.svg') }
+.om-guard-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FE.svg') }
+.om-guard-dark-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FF.svg') }
+.om-man-guard { background-image: url('./openmoji-svg-color/1F482-200D-2642-FE0F.svg') }
+.om-man-guard-light-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FB-200D-2642-FE0F.svg') }
+.om-man-guard-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FC-200D-2642-FE0F.svg') }
+.om-man-guard-medium-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FD-200D-2642-FE0F.svg') }
+.om-man-guard-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FE-200D-2642-FE0F.svg') }
+.om-man-guard-dark-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-guard { background-image: url('./openmoji-svg-color/1F482-200D-2640-FE0F.svg') }
+.om-woman-guard-light-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-guard-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-guard-medium-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-guard-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-guard-dark-skin-tone { background-image: url('./openmoji-svg-color/1F482-1F3FF-200D-2640-FE0F.svg') }
+.om-ninja { background-image: url('./openmoji-svg-color/1F977.svg') }
+.om-ninja-light-skin-tone { background-image: url('./openmoji-svg-color/1F977-1F3FB.svg') }
+.om-ninja-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F977-1F3FC.svg') }
+.om-ninja-medium-skin-tone { background-image: url('./openmoji-svg-color/1F977-1F3FD.svg') }
+.om-ninja-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F977-1F3FE.svg') }
+.om-ninja-dark-skin-tone { background-image: url('./openmoji-svg-color/1F977-1F3FF.svg') }
+.om-construction-worker { background-image: url('./openmoji-svg-color/1F477.svg') }
+.om-construction-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FB.svg') }
+.om-construction-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FC.svg') }
+.om-construction-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FD.svg') }
+.om-construction-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FE.svg') }
+.om-construction-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FF.svg') }
+.om-man-construction-worker { background-image: url('./openmoji-svg-color/1F477-200D-2642-FE0F.svg') }
+.om-man-construction-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FB-200D-2642-FE0F.svg') }
+.om-man-construction-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FC-200D-2642-FE0F.svg') }
+.om-man-construction-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FD-200D-2642-FE0F.svg') }
+.om-man-construction-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FE-200D-2642-FE0F.svg') }
+.om-man-construction-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-construction-worker { background-image: url('./openmoji-svg-color/1F477-200D-2640-FE0F.svg') }
+.om-woman-construction-worker-light-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-construction-worker-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-construction-worker-medium-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-construction-worker-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-construction-worker-dark-skin-tone { background-image: url('./openmoji-svg-color/1F477-1F3FF-200D-2640-FE0F.svg') }
+.om-person-with-crown { background-image: url('./openmoji-svg-color/1FAC5.svg') }
+.om-person-with-crown-light-skin-tone { background-image: url('./openmoji-svg-color/1FAC5-1F3FB.svg') }
+.om-person-with-crown-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAC5-1F3FC.svg') }
+.om-person-with-crown-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAC5-1F3FD.svg') }
+.om-person-with-crown-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAC5-1F3FE.svg') }
+.om-person-with-crown-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAC5-1F3FF.svg') }
+.om-prince { background-image: url('./openmoji-svg-color/1F934.svg') }
+.om-prince-light-skin-tone { background-image: url('./openmoji-svg-color/1F934-1F3FB.svg') }
+.om-prince-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F934-1F3FC.svg') }
+.om-prince-medium-skin-tone { background-image: url('./openmoji-svg-color/1F934-1F3FD.svg') }
+.om-prince-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F934-1F3FE.svg') }
+.om-prince-dark-skin-tone { background-image: url('./openmoji-svg-color/1F934-1F3FF.svg') }
+.om-princess { background-image: url('./openmoji-svg-color/1F478.svg') }
+.om-princess-light-skin-tone { background-image: url('./openmoji-svg-color/1F478-1F3FB.svg') }
+.om-princess-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F478-1F3FC.svg') }
+.om-princess-medium-skin-tone { background-image: url('./openmoji-svg-color/1F478-1F3FD.svg') }
+.om-princess-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F478-1F3FE.svg') }
+.om-princess-dark-skin-tone { background-image: url('./openmoji-svg-color/1F478-1F3FF.svg') }
+.om-person-wearing-turban { background-image: url('./openmoji-svg-color/1F473.svg') }
+.om-person-wearing-turban-light-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FB.svg') }
+.om-person-wearing-turban-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FC.svg') }
+.om-person-wearing-turban-medium-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FD.svg') }
+.om-person-wearing-turban-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FE.svg') }
+.om-person-wearing-turban-dark-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FF.svg') }
+.om-man-wearing-turban { background-image: url('./openmoji-svg-color/1F473-200D-2642-FE0F.svg') }
+.om-man-wearing-turban-light-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FB-200D-2642-FE0F.svg') }
+.om-man-wearing-turban-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FC-200D-2642-FE0F.svg') }
+.om-man-wearing-turban-medium-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FD-200D-2642-FE0F.svg') }
+.om-man-wearing-turban-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FE-200D-2642-FE0F.svg') }
+.om-man-wearing-turban-dark-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-wearing-turban { background-image: url('./openmoji-svg-color/1F473-200D-2640-FE0F.svg') }
+.om-woman-wearing-turban-light-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-wearing-turban-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-wearing-turban-medium-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-wearing-turban-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-wearing-turban-dark-skin-tone { background-image: url('./openmoji-svg-color/1F473-1F3FF-200D-2640-FE0F.svg') }
+.om-person-with-skullcap { background-image: url('./openmoji-svg-color/1F472.svg') }
+.om-person-with-skullcap-light-skin-tone { background-image: url('./openmoji-svg-color/1F472-1F3FB.svg') }
+.om-person-with-skullcap-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F472-1F3FC.svg') }
+.om-person-with-skullcap-medium-skin-tone { background-image: url('./openmoji-svg-color/1F472-1F3FD.svg') }
+.om-person-with-skullcap-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F472-1F3FE.svg') }
+.om-person-with-skullcap-dark-skin-tone { background-image: url('./openmoji-svg-color/1F472-1F3FF.svg') }
+.om-woman-with-headscarf { background-image: url('./openmoji-svg-color/1F9D5.svg') }
+.om-woman-with-headscarf-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D5-1F3FB.svg') }
+.om-woman-with-headscarf-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D5-1F3FC.svg') }
+.om-woman-with-headscarf-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D5-1F3FD.svg') }
+.om-woman-with-headscarf-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D5-1F3FE.svg') }
+.om-woman-with-headscarf-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D5-1F3FF.svg') }
+.om-person-in-tuxedo { background-image: url('./openmoji-svg-color/1F935.svg') }
+.om-person-in-tuxedo-light-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FB.svg') }
+.om-person-in-tuxedo-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FC.svg') }
+.om-person-in-tuxedo-medium-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FD.svg') }
+.om-person-in-tuxedo-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FE.svg') }
+.om-person-in-tuxedo-dark-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FF.svg') }
+.om-man-in-tuxedo { background-image: url('./openmoji-svg-color/1F935-200D-2642-FE0F.svg') }
+.om-man-in-tuxedo-light-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FB-200D-2642-FE0F.svg') }
+.om-man-in-tuxedo-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FC-200D-2642-FE0F.svg') }
+.om-man-in-tuxedo-medium-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FD-200D-2642-FE0F.svg') }
+.om-man-in-tuxedo-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FE-200D-2642-FE0F.svg') }
+.om-man-in-tuxedo-dark-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-in-tuxedo { background-image: url('./openmoji-svg-color/1F935-200D-2640-FE0F.svg') }
+.om-woman-in-tuxedo-light-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-in-tuxedo-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-in-tuxedo-medium-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-in-tuxedo-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-in-tuxedo-dark-skin-tone { background-image: url('./openmoji-svg-color/1F935-1F3FF-200D-2640-FE0F.svg') }
+.om-person-with-veil { background-image: url('./openmoji-svg-color/1F470.svg') }
+.om-person-with-veil-light-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FB.svg') }
+.om-person-with-veil-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FC.svg') }
+.om-person-with-veil-medium-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FD.svg') }
+.om-person-with-veil-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FE.svg') }
+.om-person-with-veil-dark-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FF.svg') }
+.om-man-with-veil { background-image: url('./openmoji-svg-color/1F470-200D-2642-FE0F.svg') }
+.om-man-with-veil-light-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FB-200D-2642-FE0F.svg') }
+.om-man-with-veil-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FC-200D-2642-FE0F.svg') }
+.om-man-with-veil-medium-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FD-200D-2642-FE0F.svg') }
+.om-man-with-veil-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FE-200D-2642-FE0F.svg') }
+.om-man-with-veil-dark-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-with-veil { background-image: url('./openmoji-svg-color/1F470-200D-2640-FE0F.svg') }
+.om-woman-with-veil-light-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-with-veil-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-with-veil-medium-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-with-veil-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-with-veil-dark-skin-tone { background-image: url('./openmoji-svg-color/1F470-1F3FF-200D-2640-FE0F.svg') }
+.om-pregnant-woman { background-image: url('./openmoji-svg-color/1F930.svg') }
+.om-pregnant-woman-light-skin-tone { background-image: url('./openmoji-svg-color/1F930-1F3FB.svg') }
+.om-pregnant-woman-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F930-1F3FC.svg') }
+.om-pregnant-woman-medium-skin-tone { background-image: url('./openmoji-svg-color/1F930-1F3FD.svg') }
+.om-pregnant-woman-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F930-1F3FE.svg') }
+.om-pregnant-woman-dark-skin-tone { background-image: url('./openmoji-svg-color/1F930-1F3FF.svg') }
+.om-pregnant-man { background-image: url('./openmoji-svg-color/1FAC3.svg') }
+.om-pregnant-man-light-skin-tone { background-image: url('./openmoji-svg-color/1FAC3-1F3FB.svg') }
+.om-pregnant-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAC3-1F3FC.svg') }
+.om-pregnant-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAC3-1F3FD.svg') }
+.om-pregnant-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAC3-1F3FE.svg') }
+.om-pregnant-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAC3-1F3FF.svg') }
+.om-pregnant-person { background-image: url('./openmoji-svg-color/1FAC4.svg') }
+.om-pregnant-person-light-skin-tone { background-image: url('./openmoji-svg-color/1FAC4-1F3FB.svg') }
+.om-pregnant-person-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1FAC4-1F3FC.svg') }
+.om-pregnant-person-medium-skin-tone { background-image: url('./openmoji-svg-color/1FAC4-1F3FD.svg') }
+.om-pregnant-person-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAC4-1F3FE.svg') }
+.om-pregnant-person-dark-skin-tone { background-image: url('./openmoji-svg-color/1FAC4-1F3FF.svg') }
+.om-breast-feeding { background-image: url('./openmoji-svg-color/1F931.svg') }
+.om-breast-feeding-light-skin-tone { background-image: url('./openmoji-svg-color/1F931-1F3FB.svg') }
+.om-breast-feeding-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F931-1F3FC.svg') }
+.om-breast-feeding-medium-skin-tone { background-image: url('./openmoji-svg-color/1F931-1F3FD.svg') }
+.om-breast-feeding-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F931-1F3FE.svg') }
+.om-breast-feeding-dark-skin-tone { background-image: url('./openmoji-svg-color/1F931-1F3FF.svg') }
+.om-woman-feeding-baby { background-image: url('./openmoji-svg-color/1F469-200D-1F37C.svg') }
+.om-woman-feeding-baby-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F37C.svg') }
+.om-woman-feeding-baby-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F37C.svg') }
+.om-woman-feeding-baby-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F37C.svg') }
+.om-woman-feeding-baby-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F37C.svg') }
+.om-woman-feeding-baby-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F37C.svg') }
+.om-man-feeding-baby { background-image: url('./openmoji-svg-color/1F468-200D-1F37C.svg') }
+.om-man-feeding-baby-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F37C.svg') }
+.om-man-feeding-baby-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F37C.svg') }
+.om-man-feeding-baby-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F37C.svg') }
+.om-man-feeding-baby-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F37C.svg') }
+.om-man-feeding-baby-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F37C.svg') }
+.om-person-feeding-baby { background-image: url('./openmoji-svg-color/1F9D1-200D-1F37C.svg') }
+.om-person-feeding-baby-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F37C.svg') }
+.om-person-feeding-baby-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F37C.svg') }
+.om-person-feeding-baby-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F37C.svg') }
+.om-person-feeding-baby-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F37C.svg') }
+.om-person-feeding-baby-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F37C.svg') }
+.om-baby-angel { background-image: url('./openmoji-svg-color/1F47C.svg') }
+.om-baby-angel-light-skin-tone { background-image: url('./openmoji-svg-color/1F47C-1F3FB.svg') }
+.om-baby-angel-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F47C-1F3FC.svg') }
+.om-baby-angel-medium-skin-tone { background-image: url('./openmoji-svg-color/1F47C-1F3FD.svg') }
+.om-baby-angel-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F47C-1F3FE.svg') }
+.om-baby-angel-dark-skin-tone { background-image: url('./openmoji-svg-color/1F47C-1F3FF.svg') }
+.om-santa-claus { background-image: url('./openmoji-svg-color/1F385.svg') }
+.om-santa-claus-light-skin-tone { background-image: url('./openmoji-svg-color/1F385-1F3FB.svg') }
+.om-santa-claus-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F385-1F3FC.svg') }
+.om-santa-claus-medium-skin-tone { background-image: url('./openmoji-svg-color/1F385-1F3FD.svg') }
+.om-santa-claus-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F385-1F3FE.svg') }
+.om-santa-claus-dark-skin-tone { background-image: url('./openmoji-svg-color/1F385-1F3FF.svg') }
+.om-mrs-claus { background-image: url('./openmoji-svg-color/1F936.svg') }
+.om-mrs-claus-light-skin-tone { background-image: url('./openmoji-svg-color/1F936-1F3FB.svg') }
+.om-mrs-claus-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F936-1F3FC.svg') }
+.om-mrs-claus-medium-skin-tone { background-image: url('./openmoji-svg-color/1F936-1F3FD.svg') }
+.om-mrs-claus-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F936-1F3FE.svg') }
+.om-mrs-claus-dark-skin-tone { background-image: url('./openmoji-svg-color/1F936-1F3FF.svg') }
+.om-mx-claus { background-image: url('./openmoji-svg-color/1F9D1-200D-1F384.svg') }
+.om-mx-claus-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F384.svg') }
+.om-mx-claus-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F384.svg') }
+.om-mx-claus-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F384.svg') }
+.om-mx-claus-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F384.svg') }
+.om-mx-claus-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F384.svg') }
+.om-superhero { background-image: url('./openmoji-svg-color/1F9B8.svg') }
+.om-superhero-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FB.svg') }
+.om-superhero-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FC.svg') }
+.om-superhero-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FD.svg') }
+.om-superhero-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FE.svg') }
+.om-superhero-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FF.svg') }
+.om-man-superhero { background-image: url('./openmoji-svg-color/1F9B8-200D-2642-FE0F.svg') }
+.om-man-superhero-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FB-200D-2642-FE0F.svg') }
+.om-man-superhero-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FC-200D-2642-FE0F.svg') }
+.om-man-superhero-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FD-200D-2642-FE0F.svg') }
+.om-man-superhero-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FE-200D-2642-FE0F.svg') }
+.om-man-superhero-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-superhero { background-image: url('./openmoji-svg-color/1F9B8-200D-2640-FE0F.svg') }
+.om-woman-superhero-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-superhero-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-superhero-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-superhero-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-superhero-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B8-1F3FF-200D-2640-FE0F.svg') }
+.om-supervillain { background-image: url('./openmoji-svg-color/1F9B9.svg') }
+.om-supervillain-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FB.svg') }
+.om-supervillain-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FC.svg') }
+.om-supervillain-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FD.svg') }
+.om-supervillain-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FE.svg') }
+.om-supervillain-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FF.svg') }
+.om-man-supervillain { background-image: url('./openmoji-svg-color/1F9B9-200D-2642-FE0F.svg') }
+.om-man-supervillain-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FB-200D-2642-FE0F.svg') }
+.om-man-supervillain-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FC-200D-2642-FE0F.svg') }
+.om-man-supervillain-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FD-200D-2642-FE0F.svg') }
+.om-man-supervillain-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FE-200D-2642-FE0F.svg') }
+.om-man-supervillain-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-supervillain { background-image: url('./openmoji-svg-color/1F9B9-200D-2640-FE0F.svg') }
+.om-woman-supervillain-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-supervillain-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-supervillain-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-supervillain-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-supervillain-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9B9-1F3FF-200D-2640-FE0F.svg') }
+.om-mage { background-image: url('./openmoji-svg-color/1F9D9.svg') }
+.om-mage-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FB.svg') }
+.om-mage-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FC.svg') }
+.om-mage-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FD.svg') }
+.om-mage-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FE.svg') }
+.om-mage-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FF.svg') }
+.om-man-mage { background-image: url('./openmoji-svg-color/1F9D9-200D-2642-FE0F.svg') }
+.om-man-mage-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FB-200D-2642-FE0F.svg') }
+.om-man-mage-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FC-200D-2642-FE0F.svg') }
+.om-man-mage-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FD-200D-2642-FE0F.svg') }
+.om-man-mage-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FE-200D-2642-FE0F.svg') }
+.om-man-mage-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-mage { background-image: url('./openmoji-svg-color/1F9D9-200D-2640-FE0F.svg') }
+.om-woman-mage-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-mage-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-mage-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-mage-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-mage-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D9-1F3FF-200D-2640-FE0F.svg') }
+.om-fairy { background-image: url('./openmoji-svg-color/1F9DA.svg') }
+.om-fairy-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FB.svg') }
+.om-fairy-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FC.svg') }
+.om-fairy-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FD.svg') }
+.om-fairy-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FE.svg') }
+.om-fairy-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FF.svg') }
+.om-man-fairy { background-image: url('./openmoji-svg-color/1F9DA-200D-2642-FE0F.svg') }
+.om-man-fairy-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FB-200D-2642-FE0F.svg') }
+.om-man-fairy-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FC-200D-2642-FE0F.svg') }
+.om-man-fairy-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FD-200D-2642-FE0F.svg') }
+.om-man-fairy-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FE-200D-2642-FE0F.svg') }
+.om-man-fairy-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-fairy { background-image: url('./openmoji-svg-color/1F9DA-200D-2640-FE0F.svg') }
+.om-woman-fairy-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-fairy-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-fairy-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-fairy-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-fairy-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DA-1F3FF-200D-2640-FE0F.svg') }
+.om-vampire { background-image: url('./openmoji-svg-color/1F9DB.svg') }
+.om-vampire-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FB.svg') }
+.om-vampire-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FC.svg') }
+.om-vampire-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FD.svg') }
+.om-vampire-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FE.svg') }
+.om-vampire-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FF.svg') }
+.om-man-vampire { background-image: url('./openmoji-svg-color/1F9DB-200D-2642-FE0F.svg') }
+.om-man-vampire-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FB-200D-2642-FE0F.svg') }
+.om-man-vampire-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FC-200D-2642-FE0F.svg') }
+.om-man-vampire-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FD-200D-2642-FE0F.svg') }
+.om-man-vampire-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FE-200D-2642-FE0F.svg') }
+.om-man-vampire-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-vampire { background-image: url('./openmoji-svg-color/1F9DB-200D-2640-FE0F.svg') }
+.om-woman-vampire-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-vampire-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-vampire-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-vampire-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-vampire-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DB-1F3FF-200D-2640-FE0F.svg') }
+.om-merperson { background-image: url('./openmoji-svg-color/1F9DC.svg') }
+.om-merperson-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FB.svg') }
+.om-merperson-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FC.svg') }
+.om-merperson-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FD.svg') }
+.om-merperson-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FE.svg') }
+.om-merperson-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FF.svg') }
+.om-merman { background-image: url('./openmoji-svg-color/1F9DC-200D-2642-FE0F.svg') }
+.om-merman-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FB-200D-2642-FE0F.svg') }
+.om-merman-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FC-200D-2642-FE0F.svg') }
+.om-merman-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FD-200D-2642-FE0F.svg') }
+.om-merman-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FE-200D-2642-FE0F.svg') }
+.om-merman-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FF-200D-2642-FE0F.svg') }
+.om-mermaid { background-image: url('./openmoji-svg-color/1F9DC-200D-2640-FE0F.svg') }
+.om-mermaid-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FB-200D-2640-FE0F.svg') }
+.om-mermaid-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FC-200D-2640-FE0F.svg') }
+.om-mermaid-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FD-200D-2640-FE0F.svg') }
+.om-mermaid-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FE-200D-2640-FE0F.svg') }
+.om-mermaid-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DC-1F3FF-200D-2640-FE0F.svg') }
+.om-elf { background-image: url('./openmoji-svg-color/1F9DD.svg') }
+.om-elf-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FB.svg') }
+.om-elf-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FC.svg') }
+.om-elf-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FD.svg') }
+.om-elf-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FE.svg') }
+.om-elf-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FF.svg') }
+.om-man-elf { background-image: url('./openmoji-svg-color/1F9DD-200D-2642-FE0F.svg') }
+.om-man-elf-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FB-200D-2642-FE0F.svg') }
+.om-man-elf-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FC-200D-2642-FE0F.svg') }
+.om-man-elf-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FD-200D-2642-FE0F.svg') }
+.om-man-elf-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FE-200D-2642-FE0F.svg') }
+.om-man-elf-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-elf { background-image: url('./openmoji-svg-color/1F9DD-200D-2640-FE0F.svg') }
+.om-woman-elf-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-elf-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-elf-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-elf-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-elf-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9DD-1F3FF-200D-2640-FE0F.svg') }
+.om-genie { background-image: url('./openmoji-svg-color/1F9DE.svg') }
+.om-man-genie { background-image: url('./openmoji-svg-color/1F9DE-200D-2642-FE0F.svg') }
+.om-woman-genie { background-image: url('./openmoji-svg-color/1F9DE-200D-2640-FE0F.svg') }
+.om-zombie { background-image: url('./openmoji-svg-color/1F9DF.svg') }
+.om-man-zombie { background-image: url('./openmoji-svg-color/1F9DF-200D-2642-FE0F.svg') }
+.om-woman-zombie { background-image: url('./openmoji-svg-color/1F9DF-200D-2640-FE0F.svg') }
+.om-troll { background-image: url('./openmoji-svg-color/1F9CC.svg') }
+.om-person-getting-massage { background-image: url('./openmoji-svg-color/1F486.svg') }
+.om-person-getting-massage-light-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FB.svg') }
+.om-person-getting-massage-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FC.svg') }
+.om-person-getting-massage-medium-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FD.svg') }
+.om-person-getting-massage-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FE.svg') }
+.om-person-getting-massage-dark-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FF.svg') }
+.om-man-getting-massage { background-image: url('./openmoji-svg-color/1F486-200D-2642-FE0F.svg') }
+.om-man-getting-massage-light-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FB-200D-2642-FE0F.svg') }
+.om-man-getting-massage-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FC-200D-2642-FE0F.svg') }
+.om-man-getting-massage-medium-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FD-200D-2642-FE0F.svg') }
+.om-man-getting-massage-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FE-200D-2642-FE0F.svg') }
+.om-man-getting-massage-dark-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-getting-massage { background-image: url('./openmoji-svg-color/1F486-200D-2640-FE0F.svg') }
+.om-woman-getting-massage-light-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-getting-massage-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-getting-massage-medium-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-getting-massage-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-getting-massage-dark-skin-tone { background-image: url('./openmoji-svg-color/1F486-1F3FF-200D-2640-FE0F.svg') }
+.om-person-getting-haircut { background-image: url('./openmoji-svg-color/1F487.svg') }
+.om-person-getting-haircut-light-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FB.svg') }
+.om-person-getting-haircut-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FC.svg') }
+.om-person-getting-haircut-medium-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FD.svg') }
+.om-person-getting-haircut-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FE.svg') }
+.om-person-getting-haircut-dark-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FF.svg') }
+.om-man-getting-haircut { background-image: url('./openmoji-svg-color/1F487-200D-2642-FE0F.svg') }
+.om-man-getting-haircut-light-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FB-200D-2642-FE0F.svg') }
+.om-man-getting-haircut-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FC-200D-2642-FE0F.svg') }
+.om-man-getting-haircut-medium-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FD-200D-2642-FE0F.svg') }
+.om-man-getting-haircut-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FE-200D-2642-FE0F.svg') }
+.om-man-getting-haircut-dark-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-getting-haircut { background-image: url('./openmoji-svg-color/1F487-200D-2640-FE0F.svg') }
+.om-woman-getting-haircut-light-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-getting-haircut-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-getting-haircut-medium-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-getting-haircut-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-getting-haircut-dark-skin-tone { background-image: url('./openmoji-svg-color/1F487-1F3FF-200D-2640-FE0F.svg') }
+.om-person-walking { background-image: url('./openmoji-svg-color/1F6B6.svg') }
+.om-person-walking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FB.svg') }
+.om-person-walking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FC.svg') }
+.om-person-walking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FD.svg') }
+.om-person-walking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FE.svg') }
+.om-person-walking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FF.svg') }
+.om-man-walking { background-image: url('./openmoji-svg-color/1F6B6-200D-2642-FE0F.svg') }
+.om-man-walking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FB-200D-2642-FE0F.svg') }
+.om-man-walking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FC-200D-2642-FE0F.svg') }
+.om-man-walking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FD-200D-2642-FE0F.svg') }
+.om-man-walking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FE-200D-2642-FE0F.svg') }
+.om-man-walking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-walking { background-image: url('./openmoji-svg-color/1F6B6-200D-2640-FE0F.svg') }
+.om-woman-walking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-walking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-walking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-walking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-walking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B6-1F3FF-200D-2640-FE0F.svg') }
+.om-person-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-200D-27A1-FE0F.svg') }
+.om-person-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FB-200D-27A1-FE0F.svg') }
+.om-person-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FC-200D-27A1-FE0F.svg') }
+.om-person-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FD-200D-27A1-FE0F.svg') }
+.om-person-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FE-200D-27A1-FE0F.svg') }
+.om-person-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FF-200D-27A1-FE0F.svg') }
+.om-woman-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FB-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FC-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FD-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FE-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FF-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-man-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FB-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FC-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FD-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FE-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-walking-facing-right { background-image: url('./openmoji-svg-color/1F6B6-1F3FF-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-person-standing { background-image: url('./openmoji-svg-color/1F9CD.svg') }
+.om-person-standing-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FB.svg') }
+.om-person-standing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FC.svg') }
+.om-person-standing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FD.svg') }
+.om-person-standing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FE.svg') }
+.om-person-standing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FF.svg') }
+.om-man-standing { background-image: url('./openmoji-svg-color/1F9CD-200D-2642-FE0F.svg') }
+.om-man-standing-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FB-200D-2642-FE0F.svg') }
+.om-man-standing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FC-200D-2642-FE0F.svg') }
+.om-man-standing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FD-200D-2642-FE0F.svg') }
+.om-man-standing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FE-200D-2642-FE0F.svg') }
+.om-man-standing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-standing { background-image: url('./openmoji-svg-color/1F9CD-200D-2640-FE0F.svg') }
+.om-woman-standing-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-standing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-standing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-standing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-standing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CD-1F3FF-200D-2640-FE0F.svg') }
+.om-person-kneeling { background-image: url('./openmoji-svg-color/1F9CE.svg') }
+.om-person-kneeling-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FB.svg') }
+.om-person-kneeling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FC.svg') }
+.om-person-kneeling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FD.svg') }
+.om-person-kneeling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FE.svg') }
+.om-person-kneeling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FF.svg') }
+.om-man-kneeling { background-image: url('./openmoji-svg-color/1F9CE-200D-2642-FE0F.svg') }
+.om-man-kneeling-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FB-200D-2642-FE0F.svg') }
+.om-man-kneeling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FC-200D-2642-FE0F.svg') }
+.om-man-kneeling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FD-200D-2642-FE0F.svg') }
+.om-man-kneeling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FE-200D-2642-FE0F.svg') }
+.om-man-kneeling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-kneeling { background-image: url('./openmoji-svg-color/1F9CE-200D-2640-FE0F.svg') }
+.om-woman-kneeling-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-kneeling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-kneeling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-kneeling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-kneeling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9CE-1F3FF-200D-2640-FE0F.svg') }
+.om-person-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-200D-27A1-FE0F.svg') }
+.om-person-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FB-200D-27A1-FE0F.svg') }
+.om-person-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FC-200D-27A1-FE0F.svg') }
+.om-person-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FD-200D-27A1-FE0F.svg') }
+.om-person-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FE-200D-27A1-FE0F.svg') }
+.om-person-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FF-200D-27A1-FE0F.svg') }
+.om-woman-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FB-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FC-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FD-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FE-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FF-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-man-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FB-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FC-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FD-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FE-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-kneeling-facing-right { background-image: url('./openmoji-svg-color/1F9CE-1F3FF-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-person-with-white-cane { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9AF.svg') }
+.om-person-with-white-cane-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9AF.svg') }
+.om-person-with-white-cane-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9AF.svg') }
+.om-person-with-white-cane-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9AF.svg') }
+.om-person-with-white-cane-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9AF.svg') }
+.om-person-with-white-cane-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9AF.svg') }
+.om-person-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-person-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-person-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-person-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-person-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-person-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-man-with-white-cane { background-image: url('./openmoji-svg-color/1F468-200D-1F9AF.svg') }
+.om-man-with-white-cane-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9AF.svg') }
+.om-man-with-white-cane-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9AF.svg') }
+.om-man-with-white-cane-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9AF.svg') }
+.om-man-with-white-cane-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9AF.svg') }
+.om-man-with-white-cane-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9AF.svg') }
+.om-man-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F468-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-man-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-man-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-man-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-man-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-man-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-woman-with-white-cane { background-image: url('./openmoji-svg-color/1F469-200D-1F9AF.svg') }
+.om-woman-with-white-cane-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9AF.svg') }
+.om-woman-with-white-cane-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9AF.svg') }
+.om-woman-with-white-cane-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9AF.svg') }
+.om-woman-with-white-cane-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9AF.svg') }
+.om-woman-with-white-cane-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9AF.svg') }
+.om-woman-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F469-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-woman-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-woman-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-woman-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-woman-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-woman-with-white-cane-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9AF-200D-27A1-FE0F.svg') }
+.om-person-in-motorized-wheelchair { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9BC.svg') }
+.om-person-in-motorized-wheelchair-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9BC.svg') }
+.om-person-in-motorized-wheelchair-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9BC.svg') }
+.om-person-in-motorized-wheelchair-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9BC.svg') }
+.om-person-in-motorized-wheelchair-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9BC.svg') }
+.om-person-in-motorized-wheelchair-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9BC.svg') }
+.om-person-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-person-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-person-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-person-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-person-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-person-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-man-in-motorized-wheelchair { background-image: url('./openmoji-svg-color/1F468-200D-1F9BC.svg') }
+.om-man-in-motorized-wheelchair-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9BC.svg') }
+.om-man-in-motorized-wheelchair-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9BC.svg') }
+.om-man-in-motorized-wheelchair-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9BC.svg') }
+.om-man-in-motorized-wheelchair-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9BC.svg') }
+.om-man-in-motorized-wheelchair-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9BC.svg') }
+.om-man-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-man-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-man-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-man-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-man-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-man-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-woman-in-motorized-wheelchair { background-image: url('./openmoji-svg-color/1F469-200D-1F9BC.svg') }
+.om-woman-in-motorized-wheelchair-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9BC.svg') }
+.om-woman-in-motorized-wheelchair-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9BC.svg') }
+.om-woman-in-motorized-wheelchair-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9BC.svg') }
+.om-woman-in-motorized-wheelchair-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9BC.svg') }
+.om-woman-in-motorized-wheelchair-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9BC.svg') }
+.om-woman-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-woman-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-woman-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-woman-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-woman-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-woman-in-motorized-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9BC-200D-27A1-FE0F.svg') }
+.om-person-in-manual-wheelchair { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9BD.svg') }
+.om-person-in-manual-wheelchair-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9BD.svg') }
+.om-person-in-manual-wheelchair-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9BD.svg') }
+.om-person-in-manual-wheelchair-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9BD.svg') }
+.om-person-in-manual-wheelchair-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9BD.svg') }
+.om-person-in-manual-wheelchair-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9BD.svg') }
+.om-person-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-person-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-person-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-person-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-person-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-person-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-man-in-manual-wheelchair { background-image: url('./openmoji-svg-color/1F468-200D-1F9BD.svg') }
+.om-man-in-manual-wheelchair-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9BD.svg') }
+.om-man-in-manual-wheelchair-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9BD.svg') }
+.om-man-in-manual-wheelchair-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9BD.svg') }
+.om-man-in-manual-wheelchair-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9BD.svg') }
+.om-man-in-manual-wheelchair-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9BD.svg') }
+.om-man-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-man-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-man-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-man-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-man-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-man-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-woman-in-manual-wheelchair { background-image: url('./openmoji-svg-color/1F469-200D-1F9BD.svg') }
+.om-woman-in-manual-wheelchair-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9BD.svg') }
+.om-woman-in-manual-wheelchair-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9BD.svg') }
+.om-woman-in-manual-wheelchair-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9BD.svg') }
+.om-woman-in-manual-wheelchair-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9BD.svg') }
+.om-woman-in-manual-wheelchair-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9BD.svg') }
+.om-woman-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-woman-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-woman-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-woman-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-woman-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-woman-in-manual-wheelchair-facing-right { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F9BD-200D-27A1-FE0F.svg') }
+.om-person-running { background-image: url('./openmoji-svg-color/1F3C3.svg') }
+.om-person-running-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FB.svg') }
+.om-person-running-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FC.svg') }
+.om-person-running-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FD.svg') }
+.om-person-running-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FE.svg') }
+.om-person-running-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FF.svg') }
+.om-man-running { background-image: url('./openmoji-svg-color/1F3C3-200D-2642-FE0F.svg') }
+.om-man-running-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FB-200D-2642-FE0F.svg') }
+.om-man-running-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FC-200D-2642-FE0F.svg') }
+.om-man-running-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FD-200D-2642-FE0F.svg') }
+.om-man-running-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FE-200D-2642-FE0F.svg') }
+.om-man-running-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-running { background-image: url('./openmoji-svg-color/1F3C3-200D-2640-FE0F.svg') }
+.om-woman-running-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-running-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-running-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-running-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-running-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C3-1F3FF-200D-2640-FE0F.svg') }
+.om-person-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-200D-27A1-FE0F.svg') }
+.om-person-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FB-200D-27A1-FE0F.svg') }
+.om-person-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FC-200D-27A1-FE0F.svg') }
+.om-person-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FD-200D-27A1-FE0F.svg') }
+.om-person-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FE-200D-27A1-FE0F.svg') }
+.om-person-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FF-200D-27A1-FE0F.svg') }
+.om-woman-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FB-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FC-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FD-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FE-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FF-200D-2640-FE0F-200D-27A1-FE0F.svg') }
+.om-man-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FB-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FC-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FD-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FE-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-man-running-facing-right { background-image: url('./openmoji-svg-color/1F3C3-1F3FF-200D-2642-FE0F-200D-27A1-FE0F.svg') }
+.om-woman-dancing { background-image: url('./openmoji-svg-color/1F483.svg') }
+.om-woman-dancing-light-skin-tone { background-image: url('./openmoji-svg-color/1F483-1F3FB.svg') }
+.om-woman-dancing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F483-1F3FC.svg') }
+.om-woman-dancing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F483-1F3FD.svg') }
+.om-woman-dancing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F483-1F3FE.svg') }
+.om-woman-dancing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F483-1F3FF.svg') }
+.om-man-dancing { background-image: url('./openmoji-svg-color/1F57A.svg') }
+.om-man-dancing-light-skin-tone { background-image: url('./openmoji-svg-color/1F57A-1F3FB.svg') }
+.om-man-dancing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F57A-1F3FC.svg') }
+.om-man-dancing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F57A-1F3FD.svg') }
+.om-man-dancing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F57A-1F3FE.svg') }
+.om-man-dancing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F57A-1F3FF.svg') }
+.om-person-in-suit-levitating { background-image: url('./openmoji-svg-color/1F574.svg') }
+.om-person-in-suit-levitating-light-skin-tone { background-image: url('./openmoji-svg-color/1F574-1F3FB.svg') }
+.om-person-in-suit-levitating-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F574-1F3FC.svg') }
+.om-person-in-suit-levitating-medium-skin-tone { background-image: url('./openmoji-svg-color/1F574-1F3FD.svg') }
+.om-person-in-suit-levitating-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F574-1F3FE.svg') }
+.om-person-in-suit-levitating-dark-skin-tone { background-image: url('./openmoji-svg-color/1F574-1F3FF.svg') }
+.om-people-with-bunny-ears { background-image: url('./openmoji-svg-color/1F46F.svg') }
+.om-men-with-bunny-ears { background-image: url('./openmoji-svg-color/1F46F-200D-2642-FE0F.svg') }
+.om-women-with-bunny-ears { background-image: url('./openmoji-svg-color/1F46F-200D-2640-FE0F.svg') }
+.om-person-in-steamy-room { background-image: url('./openmoji-svg-color/1F9D6.svg') }
+.om-person-in-steamy-room-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FB.svg') }
+.om-person-in-steamy-room-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FC.svg') }
+.om-person-in-steamy-room-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FD.svg') }
+.om-person-in-steamy-room-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FE.svg') }
+.om-person-in-steamy-room-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FF.svg') }
+.om-man-in-steamy-room { background-image: url('./openmoji-svg-color/1F9D6-200D-2642-FE0F.svg') }
+.om-man-in-steamy-room-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FB-200D-2642-FE0F.svg') }
+.om-man-in-steamy-room-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FC-200D-2642-FE0F.svg') }
+.om-man-in-steamy-room-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FD-200D-2642-FE0F.svg') }
+.om-man-in-steamy-room-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FE-200D-2642-FE0F.svg') }
+.om-man-in-steamy-room-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-in-steamy-room { background-image: url('./openmoji-svg-color/1F9D6-200D-2640-FE0F.svg') }
+.om-woman-in-steamy-room-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-in-steamy-room-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-in-steamy-room-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-in-steamy-room-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-in-steamy-room-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D6-1F3FF-200D-2640-FE0F.svg') }
+.om-person-climbing { background-image: url('./openmoji-svg-color/1F9D7.svg') }
+.om-person-climbing-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FB.svg') }
+.om-person-climbing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FC.svg') }
+.om-person-climbing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FD.svg') }
+.om-person-climbing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FE.svg') }
+.om-person-climbing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FF.svg') }
+.om-man-climbing { background-image: url('./openmoji-svg-color/1F9D7-200D-2642-FE0F.svg') }
+.om-man-climbing-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FB-200D-2642-FE0F.svg') }
+.om-man-climbing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FC-200D-2642-FE0F.svg') }
+.om-man-climbing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FD-200D-2642-FE0F.svg') }
+.om-man-climbing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FE-200D-2642-FE0F.svg') }
+.om-man-climbing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-climbing { background-image: url('./openmoji-svg-color/1F9D7-200D-2640-FE0F.svg') }
+.om-woman-climbing-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-climbing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-climbing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-climbing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-climbing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D7-1F3FF-200D-2640-FE0F.svg') }
+.om-person-fencing { background-image: url('./openmoji-svg-color/1F93A.svg') }
+.om-horse-racing { background-image: url('./openmoji-svg-color/1F3C7.svg') }
+.om-horse-racing-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C7-1F3FB.svg') }
+.om-horse-racing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C7-1F3FC.svg') }
+.om-horse-racing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C7-1F3FD.svg') }
+.om-horse-racing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C7-1F3FE.svg') }
+.om-horse-racing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C7-1F3FF.svg') }
+.om-skier { background-image: url('./openmoji-svg-color/26F7.svg') }
+.om-snowboarder { background-image: url('./openmoji-svg-color/1F3C2.svg') }
+.om-snowboarder-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C2-1F3FB.svg') }
+.om-snowboarder-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C2-1F3FC.svg') }
+.om-snowboarder-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C2-1F3FD.svg') }
+.om-snowboarder-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C2-1F3FE.svg') }
+.om-snowboarder-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C2-1F3FF.svg') }
+.om-person-golfing { background-image: url('./openmoji-svg-color/1F3CC.svg') }
+.om-person-golfing-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FB.svg') }
+.om-person-golfing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FC.svg') }
+.om-person-golfing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FD.svg') }
+.om-person-golfing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FE.svg') }
+.om-person-golfing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FF.svg') }
+.om-man-golfing { background-image: url('./openmoji-svg-color/1F3CC-FE0F-200D-2642-FE0F.svg') }
+.om-man-golfing-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FB-200D-2642-FE0F.svg') }
+.om-man-golfing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FC-200D-2642-FE0F.svg') }
+.om-man-golfing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FD-200D-2642-FE0F.svg') }
+.om-man-golfing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FE-200D-2642-FE0F.svg') }
+.om-man-golfing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-golfing { background-image: url('./openmoji-svg-color/1F3CC-FE0F-200D-2640-FE0F.svg') }
+.om-woman-golfing-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-golfing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-golfing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-golfing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-golfing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CC-1F3FF-200D-2640-FE0F.svg') }
+.om-person-surfing { background-image: url('./openmoji-svg-color/1F3C4.svg') }
+.om-person-surfing-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FB.svg') }
+.om-person-surfing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FC.svg') }
+.om-person-surfing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FD.svg') }
+.om-person-surfing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FE.svg') }
+.om-person-surfing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FF.svg') }
+.om-man-surfing { background-image: url('./openmoji-svg-color/1F3C4-200D-2642-FE0F.svg') }
+.om-man-surfing-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FB-200D-2642-FE0F.svg') }
+.om-man-surfing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FC-200D-2642-FE0F.svg') }
+.om-man-surfing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FD-200D-2642-FE0F.svg') }
+.om-man-surfing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FE-200D-2642-FE0F.svg') }
+.om-man-surfing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-surfing { background-image: url('./openmoji-svg-color/1F3C4-200D-2640-FE0F.svg') }
+.om-woman-surfing-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-surfing-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-surfing-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-surfing-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-surfing-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3C4-1F3FF-200D-2640-FE0F.svg') }
+.om-person-rowing-boat { background-image: url('./openmoji-svg-color/1F6A3.svg') }
+.om-person-rowing-boat-light-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FB.svg') }
+.om-person-rowing-boat-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FC.svg') }
+.om-person-rowing-boat-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FD.svg') }
+.om-person-rowing-boat-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FE.svg') }
+.om-person-rowing-boat-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FF.svg') }
+.om-man-rowing-boat { background-image: url('./openmoji-svg-color/1F6A3-200D-2642-FE0F.svg') }
+.om-man-rowing-boat-light-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FB-200D-2642-FE0F.svg') }
+.om-man-rowing-boat-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FC-200D-2642-FE0F.svg') }
+.om-man-rowing-boat-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FD-200D-2642-FE0F.svg') }
+.om-man-rowing-boat-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FE-200D-2642-FE0F.svg') }
+.om-man-rowing-boat-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-rowing-boat { background-image: url('./openmoji-svg-color/1F6A3-200D-2640-FE0F.svg') }
+.om-woman-rowing-boat-light-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-rowing-boat-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-rowing-boat-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-rowing-boat-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-rowing-boat-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6A3-1F3FF-200D-2640-FE0F.svg') }
+.om-person-swimming { background-image: url('./openmoji-svg-color/1F3CA.svg') }
+.om-person-swimming-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FB.svg') }
+.om-person-swimming-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FC.svg') }
+.om-person-swimming-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FD.svg') }
+.om-person-swimming-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FE.svg') }
+.om-person-swimming-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FF.svg') }
+.om-man-swimming { background-image: url('./openmoji-svg-color/1F3CA-200D-2642-FE0F.svg') }
+.om-man-swimming-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FB-200D-2642-FE0F.svg') }
+.om-man-swimming-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FC-200D-2642-FE0F.svg') }
+.om-man-swimming-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FD-200D-2642-FE0F.svg') }
+.om-man-swimming-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FE-200D-2642-FE0F.svg') }
+.om-man-swimming-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-swimming { background-image: url('./openmoji-svg-color/1F3CA-200D-2640-FE0F.svg') }
+.om-woman-swimming-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-swimming-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-swimming-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-swimming-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-swimming-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CA-1F3FF-200D-2640-FE0F.svg') }
+.om-person-bouncing-ball { background-image: url('./openmoji-svg-color/26F9.svg') }
+.om-person-bouncing-ball-light-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FB.svg') }
+.om-person-bouncing-ball-medium-light-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FC.svg') }
+.om-person-bouncing-ball-medium-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FD.svg') }
+.om-person-bouncing-ball-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FE.svg') }
+.om-person-bouncing-ball-dark-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FF.svg') }
+.om-man-bouncing-ball { background-image: url('./openmoji-svg-color/26F9-FE0F-200D-2642-FE0F.svg') }
+.om-man-bouncing-ball-light-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FB-200D-2642-FE0F.svg') }
+.om-man-bouncing-ball-medium-light-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FC-200D-2642-FE0F.svg') }
+.om-man-bouncing-ball-medium-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FD-200D-2642-FE0F.svg') }
+.om-man-bouncing-ball-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FE-200D-2642-FE0F.svg') }
+.om-man-bouncing-ball-dark-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-bouncing-ball { background-image: url('./openmoji-svg-color/26F9-FE0F-200D-2640-FE0F.svg') }
+.om-woman-bouncing-ball-light-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-bouncing-ball-medium-light-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-bouncing-ball-medium-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-bouncing-ball-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-bouncing-ball-dark-skin-tone { background-image: url('./openmoji-svg-color/26F9-1F3FF-200D-2640-FE0F.svg') }
+.om-person-lifting-weights { background-image: url('./openmoji-svg-color/1F3CB.svg') }
+.om-person-lifting-weights-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FB.svg') }
+.om-person-lifting-weights-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FC.svg') }
+.om-person-lifting-weights-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FD.svg') }
+.om-person-lifting-weights-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FE.svg') }
+.om-person-lifting-weights-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FF.svg') }
+.om-man-lifting-weights { background-image: url('./openmoji-svg-color/1F3CB-FE0F-200D-2642-FE0F.svg') }
+.om-man-lifting-weights-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FB-200D-2642-FE0F.svg') }
+.om-man-lifting-weights-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FC-200D-2642-FE0F.svg') }
+.om-man-lifting-weights-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FD-200D-2642-FE0F.svg') }
+.om-man-lifting-weights-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FE-200D-2642-FE0F.svg') }
+.om-man-lifting-weights-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-lifting-weights { background-image: url('./openmoji-svg-color/1F3CB-FE0F-200D-2640-FE0F.svg') }
+.om-woman-lifting-weights-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-lifting-weights-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-lifting-weights-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-lifting-weights-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-lifting-weights-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3CB-1F3FF-200D-2640-FE0F.svg') }
+.om-person-biking { background-image: url('./openmoji-svg-color/1F6B4.svg') }
+.om-person-biking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FB.svg') }
+.om-person-biking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FC.svg') }
+.om-person-biking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FD.svg') }
+.om-person-biking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FE.svg') }
+.om-person-biking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FF.svg') }
+.om-man-biking { background-image: url('./openmoji-svg-color/1F6B4-200D-2642-FE0F.svg') }
+.om-man-biking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FB-200D-2642-FE0F.svg') }
+.om-man-biking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FC-200D-2642-FE0F.svg') }
+.om-man-biking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FD-200D-2642-FE0F.svg') }
+.om-man-biking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FE-200D-2642-FE0F.svg') }
+.om-man-biking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-biking { background-image: url('./openmoji-svg-color/1F6B4-200D-2640-FE0F.svg') }
+.om-woman-biking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-biking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-biking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-biking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-biking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B4-1F3FF-200D-2640-FE0F.svg') }
+.om-person-mountain-biking { background-image: url('./openmoji-svg-color/1F6B5.svg') }
+.om-person-mountain-biking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FB.svg') }
+.om-person-mountain-biking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FC.svg') }
+.om-person-mountain-biking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FD.svg') }
+.om-person-mountain-biking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FE.svg') }
+.om-person-mountain-biking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FF.svg') }
+.om-man-mountain-biking { background-image: url('./openmoji-svg-color/1F6B5-200D-2642-FE0F.svg') }
+.om-man-mountain-biking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FB-200D-2642-FE0F.svg') }
+.om-man-mountain-biking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FC-200D-2642-FE0F.svg') }
+.om-man-mountain-biking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FD-200D-2642-FE0F.svg') }
+.om-man-mountain-biking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FE-200D-2642-FE0F.svg') }
+.om-man-mountain-biking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-mountain-biking { background-image: url('./openmoji-svg-color/1F6B5-200D-2640-FE0F.svg') }
+.om-woman-mountain-biking-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-mountain-biking-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-mountain-biking-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-mountain-biking-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-mountain-biking-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6B5-1F3FF-200D-2640-FE0F.svg') }
+.om-person-cartwheeling { background-image: url('./openmoji-svg-color/1F938.svg') }
+.om-person-cartwheeling-light-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FB.svg') }
+.om-person-cartwheeling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FC.svg') }
+.om-person-cartwheeling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FD.svg') }
+.om-person-cartwheeling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FE.svg') }
+.om-person-cartwheeling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FF.svg') }
+.om-man-cartwheeling { background-image: url('./openmoji-svg-color/1F938-200D-2642-FE0F.svg') }
+.om-man-cartwheeling-light-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FB-200D-2642-FE0F.svg') }
+.om-man-cartwheeling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FC-200D-2642-FE0F.svg') }
+.om-man-cartwheeling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FD-200D-2642-FE0F.svg') }
+.om-man-cartwheeling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FE-200D-2642-FE0F.svg') }
+.om-man-cartwheeling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-cartwheeling { background-image: url('./openmoji-svg-color/1F938-200D-2640-FE0F.svg') }
+.om-woman-cartwheeling-light-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-cartwheeling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-cartwheeling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-cartwheeling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-cartwheeling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F938-1F3FF-200D-2640-FE0F.svg') }
+.om-people-wrestling { background-image: url('./openmoji-svg-color/1F93C.svg') }
+.om-men-wrestling { background-image: url('./openmoji-svg-color/1F93C-200D-2642-FE0F.svg') }
+.om-women-wrestling { background-image: url('./openmoji-svg-color/1F93C-200D-2640-FE0F.svg') }
+.om-person-playing-water-polo { background-image: url('./openmoji-svg-color/1F93D.svg') }
+.om-person-playing-water-polo-light-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FB.svg') }
+.om-person-playing-water-polo-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FC.svg') }
+.om-person-playing-water-polo-medium-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FD.svg') }
+.om-person-playing-water-polo-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FE.svg') }
+.om-person-playing-water-polo-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FF.svg') }
+.om-man-playing-water-polo { background-image: url('./openmoji-svg-color/1F93D-200D-2642-FE0F.svg') }
+.om-man-playing-water-polo-light-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FB-200D-2642-FE0F.svg') }
+.om-man-playing-water-polo-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FC-200D-2642-FE0F.svg') }
+.om-man-playing-water-polo-medium-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FD-200D-2642-FE0F.svg') }
+.om-man-playing-water-polo-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FE-200D-2642-FE0F.svg') }
+.om-man-playing-water-polo-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-playing-water-polo { background-image: url('./openmoji-svg-color/1F93D-200D-2640-FE0F.svg') }
+.om-woman-playing-water-polo-light-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-playing-water-polo-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-playing-water-polo-medium-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-playing-water-polo-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-playing-water-polo-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93D-1F3FF-200D-2640-FE0F.svg') }
+.om-person-playing-handball { background-image: url('./openmoji-svg-color/1F93E.svg') }
+.om-person-playing-handball-light-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FB.svg') }
+.om-person-playing-handball-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FC.svg') }
+.om-person-playing-handball-medium-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FD.svg') }
+.om-person-playing-handball-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FE.svg') }
+.om-person-playing-handball-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FF.svg') }
+.om-man-playing-handball { background-image: url('./openmoji-svg-color/1F93E-200D-2642-FE0F.svg') }
+.om-man-playing-handball-light-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FB-200D-2642-FE0F.svg') }
+.om-man-playing-handball-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FC-200D-2642-FE0F.svg') }
+.om-man-playing-handball-medium-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FD-200D-2642-FE0F.svg') }
+.om-man-playing-handball-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FE-200D-2642-FE0F.svg') }
+.om-man-playing-handball-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-playing-handball { background-image: url('./openmoji-svg-color/1F93E-200D-2640-FE0F.svg') }
+.om-woman-playing-handball-light-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-playing-handball-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-playing-handball-medium-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-playing-handball-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-playing-handball-dark-skin-tone { background-image: url('./openmoji-svg-color/1F93E-1F3FF-200D-2640-FE0F.svg') }
+.om-person-juggling { background-image: url('./openmoji-svg-color/1F939.svg') }
+.om-person-juggling-light-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FB.svg') }
+.om-person-juggling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FC.svg') }
+.om-person-juggling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FD.svg') }
+.om-person-juggling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FE.svg') }
+.om-person-juggling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FF.svg') }
+.om-man-juggling { background-image: url('./openmoji-svg-color/1F939-200D-2642-FE0F.svg') }
+.om-man-juggling-light-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FB-200D-2642-FE0F.svg') }
+.om-man-juggling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FC-200D-2642-FE0F.svg') }
+.om-man-juggling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FD-200D-2642-FE0F.svg') }
+.om-man-juggling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FE-200D-2642-FE0F.svg') }
+.om-man-juggling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-juggling { background-image: url('./openmoji-svg-color/1F939-200D-2640-FE0F.svg') }
+.om-woman-juggling-light-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-juggling-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-juggling-medium-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-juggling-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-juggling-dark-skin-tone { background-image: url('./openmoji-svg-color/1F939-1F3FF-200D-2640-FE0F.svg') }
+.om-person-in-lotus-position { background-image: url('./openmoji-svg-color/1F9D8.svg') }
+.om-person-in-lotus-position-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FB.svg') }
+.om-person-in-lotus-position-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FC.svg') }
+.om-person-in-lotus-position-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FD.svg') }
+.om-person-in-lotus-position-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FE.svg') }
+.om-person-in-lotus-position-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FF.svg') }
+.om-man-in-lotus-position { background-image: url('./openmoji-svg-color/1F9D8-200D-2642-FE0F.svg') }
+.om-man-in-lotus-position-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FB-200D-2642-FE0F.svg') }
+.om-man-in-lotus-position-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FC-200D-2642-FE0F.svg') }
+.om-man-in-lotus-position-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FD-200D-2642-FE0F.svg') }
+.om-man-in-lotus-position-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FE-200D-2642-FE0F.svg') }
+.om-man-in-lotus-position-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FF-200D-2642-FE0F.svg') }
+.om-woman-in-lotus-position { background-image: url('./openmoji-svg-color/1F9D8-200D-2640-FE0F.svg') }
+.om-woman-in-lotus-position-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FB-200D-2640-FE0F.svg') }
+.om-woman-in-lotus-position-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FC-200D-2640-FE0F.svg') }
+.om-woman-in-lotus-position-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FD-200D-2640-FE0F.svg') }
+.om-woman-in-lotus-position-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FE-200D-2640-FE0F.svg') }
+.om-woman-in-lotus-position-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D8-1F3FF-200D-2640-FE0F.svg') }
+.om-person-taking-bath { background-image: url('./openmoji-svg-color/1F6C0.svg') }
+.om-person-taking-bath-light-skin-tone { background-image: url('./openmoji-svg-color/1F6C0-1F3FB.svg') }
+.om-person-taking-bath-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6C0-1F3FC.svg') }
+.om-person-taking-bath-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6C0-1F3FD.svg') }
+.om-person-taking-bath-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6C0-1F3FE.svg') }
+.om-person-taking-bath-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6C0-1F3FF.svg') }
+.om-person-in-bed { background-image: url('./openmoji-svg-color/1F6CC.svg') }
+.om-person-in-bed-light-skin-tone { background-image: url('./openmoji-svg-color/1F6CC-1F3FB.svg') }
+.om-person-in-bed-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F6CC-1F3FC.svg') }
+.om-person-in-bed-medium-skin-tone { background-image: url('./openmoji-svg-color/1F6CC-1F3FD.svg') }
+.om-person-in-bed-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6CC-1F3FE.svg') }
+.om-person-in-bed-dark-skin-tone { background-image: url('./openmoji-svg-color/1F6CC-1F3FF.svg') }
+.om-people-holding-hands { background-image: url('./openmoji-svg-color/1F9D1-200D-1F91D-200D-1F9D1.svg') }
+.om-people-holding-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB.svg') }
+.om-people-holding-hands-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC.svg') }
+.om-people-holding-hands-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD.svg') }
+.om-people-holding-hands-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE.svg') }
+.om-people-holding-hands-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF.svg') }
+.om-people-holding-hands-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB.svg') }
+.om-people-holding-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC.svg') }
+.om-people-holding-hands-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD.svg') }
+.om-people-holding-hands-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE.svg') }
+.om-people-holding-hands-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF.svg') }
+.om-people-holding-hands-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB.svg') }
+.om-people-holding-hands-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC.svg') }
+.om-people-holding-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD.svg') }
+.om-people-holding-hands-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE.svg') }
+.om-people-holding-hands-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF.svg') }
+.om-people-holding-hands-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB.svg') }
+.om-people-holding-hands-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC.svg') }
+.om-people-holding-hands-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD.svg') }
+.om-people-holding-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE.svg') }
+.om-people-holding-hands-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF.svg') }
+.om-people-holding-hands-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB.svg') }
+.om-people-holding-hands-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC.svg') }
+.om-people-holding-hands-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD.svg') }
+.om-people-holding-hands-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE.svg') }
+.om-people-holding-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF.svg') }
+.om-women-holding-hands { background-image: url('./openmoji-svg-color/1F46D.svg') }
+.om-women-holding-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F46D-1F3FB.svg') }
+.om-women-holding-hands-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC.svg') }
+.om-women-holding-hands-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD.svg') }
+.om-women-holding-hands-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE.svg') }
+.om-women-holding-hands-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF.svg') }
+.om-women-holding-hands-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB.svg') }
+.om-women-holding-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F46D-1F3FC.svg') }
+.om-women-holding-hands-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD.svg') }
+.om-women-holding-hands-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE.svg') }
+.om-women-holding-hands-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF.svg') }
+.om-women-holding-hands-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB.svg') }
+.om-women-holding-hands-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC.svg') }
+.om-women-holding-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F46D-1F3FD.svg') }
+.om-women-holding-hands-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE.svg') }
+.om-women-holding-hands-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF.svg') }
+.om-women-holding-hands-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB.svg') }
+.om-women-holding-hands-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC.svg') }
+.om-women-holding-hands-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD.svg') }
+.om-women-holding-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46D-1F3FE.svg') }
+.om-women-holding-hands-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF.svg') }
+.om-women-holding-hands-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB.svg') }
+.om-women-holding-hands-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC.svg') }
+.om-women-holding-hands-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD.svg') }
+.om-women-holding-hands-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE.svg') }
+.om-women-holding-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46D-1F3FF.svg') }
+.om-woman-and-man-holding-hands { background-image: url('./openmoji-svg-color/1F46B.svg') }
+.om-woman-and-man-holding-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F46B-1F3FB.svg') }
+.om-woman-and-man-holding-hands-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-woman-and-man-holding-hands-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-woman-and-man-holding-hands-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-woman-and-man-holding-hands-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-woman-and-man-holding-hands-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-woman-and-man-holding-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F46B-1F3FC.svg') }
+.om-woman-and-man-holding-hands-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-woman-and-man-holding-hands-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-woman-and-man-holding-hands-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-woman-and-man-holding-hands-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-woman-and-man-holding-hands-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-woman-and-man-holding-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F46B-1F3FD.svg') }
+.om-woman-and-man-holding-hands-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-woman-and-man-holding-hands-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-woman-and-man-holding-hands-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-woman-and-man-holding-hands-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-woman-and-man-holding-hands-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-woman-and-man-holding-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46B-1F3FE.svg') }
+.om-woman-and-man-holding-hands-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-woman-and-man-holding-hands-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-woman-and-man-holding-hands-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-woman-and-man-holding-hands-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-woman-and-man-holding-hands-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-woman-and-man-holding-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46B-1F3FF.svg') }
+.om-men-holding-hands { background-image: url('./openmoji-svg-color/1F46C.svg') }
+.om-men-holding-hands-light-skin-tone { background-image: url('./openmoji-svg-color/1F46C-1F3FB.svg') }
+.om-men-holding-hands-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-men-holding-hands-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-men-holding-hands-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-men-holding-hands-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-men-holding-hands-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-men-holding-hands-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F46C-1F3FC.svg') }
+.om-men-holding-hands-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-men-holding-hands-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-men-holding-hands-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-men-holding-hands-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-men-holding-hands-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-men-holding-hands-medium-skin-tone { background-image: url('./openmoji-svg-color/1F46C-1F3FD.svg') }
+.om-men-holding-hands-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-men-holding-hands-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-men-holding-hands-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-men-holding-hands-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-men-holding-hands-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-men-holding-hands-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46C-1F3FE.svg') }
+.om-men-holding-hands-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF.svg') }
+.om-men-holding-hands-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB.svg') }
+.om-men-holding-hands-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC.svg') }
+.om-men-holding-hands-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD.svg') }
+.om-men-holding-hands-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE.svg') }
+.om-men-holding-hands-dark-skin-tone { background-image: url('./openmoji-svg-color/1F46C-1F3FF.svg') }
+.om-kiss { background-image: url('./openmoji-svg-color/1F48F.svg') }
+.om-kiss-light-skin-tone { background-image: url('./openmoji-svg-color/1F48F-1F3FB.svg') }
+.om-kiss-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F48F-1F3FC.svg') }
+.om-kiss-medium-skin-tone { background-image: url('./openmoji-svg-color/1F48F-1F3FD.svg') }
+.om-kiss-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F48F-1F3FE.svg') }
+.om-kiss-dark-skin-tone { background-image: url('./openmoji-svg-color/1F48F-1F3FF.svg') }
+.om-kiss-person-person-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC.svg') }
+.om-kiss-person-person-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD.svg') }
+.om-kiss-person-person-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE.svg') }
+.om-kiss-person-person-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF.svg') }
+.om-kiss-person-person-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB.svg') }
+.om-kiss-person-person-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD.svg') }
+.om-kiss-person-person-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE.svg') }
+.om-kiss-person-person-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF.svg') }
+.om-kiss-person-person-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB.svg') }
+.om-kiss-person-person-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC.svg') }
+.om-kiss-person-person-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE.svg') }
+.om-kiss-person-person-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF.svg') }
+.om-kiss-person-person-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB.svg') }
+.om-kiss-person-person-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC.svg') }
+.om-kiss-person-person-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD.svg') }
+.om-kiss-person-person-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF.svg') }
+.om-kiss-person-person-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB.svg') }
+.om-kiss-person-person-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC.svg') }
+.om-kiss-person-person-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD.svg') }
+.om-kiss-person-person-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE.svg') }
+.om-kiss-woman-man { background-image: url('./openmoji-svg-color/1F469-200D-2764-FE0F-200D-1F48B-200D-1F468.svg') }
+.om-kiss-woman-man-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-woman-man-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-woman-man-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-woman-man-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-woman-man-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-woman-man-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-woman-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-woman-man-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-woman-man-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-woman-man-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-woman-man-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-woman-man-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-woman-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-woman-man-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-woman-man-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-woman-man-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-woman-man-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-woman-man-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-woman-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-woman-man-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-woman-man-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-woman-man-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-woman-man-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-woman-man-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-woman-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-man-man { background-image: url('./openmoji-svg-color/1F468-200D-2764-FE0F-200D-1F48B-200D-1F468.svg') }
+.om-kiss-man-man-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-man-man-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-man-man-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-man-man-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-man-man-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-man-man-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-man-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-man-man-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-man-man-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-man-man-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-man-man-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-man-man-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-man-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-man-man-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-man-man-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-man-man-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-man-man-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-man-man-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-man-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-man-man-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-man-man-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB.svg') }
+.om-kiss-man-man-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC.svg') }
+.om-kiss-man-man-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD.svg') }
+.om-kiss-man-man-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE.svg') }
+.om-kiss-man-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF.svg') }
+.om-kiss-woman-woman { background-image: url('./openmoji-svg-color/1F469-200D-2764-FE0F-200D-1F48B-200D-1F469.svg') }
+.om-kiss-woman-woman-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB.svg') }
+.om-kiss-woman-woman-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC.svg') }
+.om-kiss-woman-woman-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD.svg') }
+.om-kiss-woman-woman-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE.svg') }
+.om-kiss-woman-woman-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF.svg') }
+.om-kiss-woman-woman-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB.svg') }
+.om-kiss-woman-woman-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC.svg') }
+.om-kiss-woman-woman-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD.svg') }
+.om-kiss-woman-woman-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE.svg') }
+.om-kiss-woman-woman-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF.svg') }
+.om-kiss-woman-woman-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB.svg') }
+.om-kiss-woman-woman-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC.svg') }
+.om-kiss-woman-woman-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD.svg') }
+.om-kiss-woman-woman-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE.svg') }
+.om-kiss-woman-woman-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF.svg') }
+.om-kiss-woman-woman-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB.svg') }
+.om-kiss-woman-woman-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC.svg') }
+.om-kiss-woman-woman-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD.svg') }
+.om-kiss-woman-woman-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE.svg') }
+.om-kiss-woman-woman-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF.svg') }
+.om-kiss-woman-woman-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB.svg') }
+.om-kiss-woman-woman-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC.svg') }
+.om-kiss-woman-woman-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD.svg') }
+.om-kiss-woman-woman-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE.svg') }
+.om-kiss-woman-woman-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF.svg') }
+.om-couple-with-heart { background-image: url('./openmoji-svg-color/1F491.svg') }
+.om-couple-with-heart-light-skin-tone { background-image: url('./openmoji-svg-color/1F491-1F3FB.svg') }
+.om-couple-with-heart-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F491-1F3FC.svg') }
+.om-couple-with-heart-medium-skin-tone { background-image: url('./openmoji-svg-color/1F491-1F3FD.svg') }
+.om-couple-with-heart-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F491-1F3FE.svg') }
+.om-couple-with-heart-dark-skin-tone { background-image: url('./openmoji-svg-color/1F491-1F3FF.svg') }
+.om-couple-with-heart-person-person-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC.svg') }
+.om-couple-with-heart-person-person-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD.svg') }
+.om-couple-with-heart-person-person-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE.svg') }
+.om-couple-with-heart-person-person-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF.svg') }
+.om-couple-with-heart-person-person-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB.svg') }
+.om-couple-with-heart-person-person-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD.svg') }
+.om-couple-with-heart-person-person-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE.svg') }
+.om-couple-with-heart-person-person-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF.svg') }
+.om-couple-with-heart-person-person-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB.svg') }
+.om-couple-with-heart-person-person-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC.svg') }
+.om-couple-with-heart-person-person-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE.svg') }
+.om-couple-with-heart-person-person-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF.svg') }
+.om-couple-with-heart-person-person-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB.svg') }
+.om-couple-with-heart-person-person-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC.svg') }
+.om-couple-with-heart-person-person-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD.svg') }
+.om-couple-with-heart-person-person-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF.svg') }
+.om-couple-with-heart-person-person-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB.svg') }
+.om-couple-with-heart-person-person-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC.svg') }
+.om-couple-with-heart-person-person-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD.svg') }
+.om-couple-with-heart-person-person-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE.svg') }
+.om-couple-with-heart-woman-man { background-image: url('./openmoji-svg-color/1F469-200D-2764-FE0F-200D-1F468.svg') }
+.om-couple-with-heart-woman-man-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-woman-man-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-woman-man-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-woman-man-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-woman-man-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-woman-man-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-woman-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-woman-man-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-woman-man-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-woman-man-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-woman-man-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-woman-man-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-woman-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-woman-man-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-woman-man-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-woman-man-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-woman-man-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-woman-man-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-woman-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-woman-man-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-woman-man-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-woman-man-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-woman-man-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-woman-man-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-woman-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-man-man { background-image: url('./openmoji-svg-color/1F468-200D-2764-FE0F-200D-1F468.svg') }
+.om-couple-with-heart-man-man-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-man-man-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-man-man-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-man-man-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-man-man-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-man-man-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-man-man-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-man-man-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-man-man-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-man-man-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-man-man-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-man-man-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-man-man-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-man-man-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-man-man-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-man-man-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-man-man-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-man-man-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-man-man-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-man-man-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-man-man-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB.svg') }
+.om-couple-with-heart-man-man-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC.svg') }
+.om-couple-with-heart-man-man-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD.svg') }
+.om-couple-with-heart-man-man-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE.svg') }
+.om-couple-with-heart-man-man-dark-skin-tone { background-image: url('./openmoji-svg-color/1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF.svg') }
+.om-couple-with-heart-woman-woman { background-image: url('./openmoji-svg-color/1F469-200D-2764-FE0F-200D-1F469.svg') }
+.om-couple-with-heart-woman-woman-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB.svg') }
+.om-couple-with-heart-woman-woman-light-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC.svg') }
+.om-couple-with-heart-woman-woman-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD.svg') }
+.om-couple-with-heart-woman-woman-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE.svg') }
+.om-couple-with-heart-woman-woman-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF.svg') }
+.om-couple-with-heart-woman-woman-medium-light-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB.svg') }
+.om-couple-with-heart-woman-woman-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC.svg') }
+.om-couple-with-heart-woman-woman-medium-light-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD.svg') }
+.om-couple-with-heart-woman-woman-medium-light-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE.svg') }
+.om-couple-with-heart-woman-woman-medium-light-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF.svg') }
+.om-couple-with-heart-woman-woman-medium-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB.svg') }
+.om-couple-with-heart-woman-woman-medium-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC.svg') }
+.om-couple-with-heart-woman-woman-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD.svg') }
+.om-couple-with-heart-woman-woman-medium-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE.svg') }
+.om-couple-with-heart-woman-woman-medium-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF.svg') }
+.om-couple-with-heart-woman-woman-medium-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB.svg') }
+.om-couple-with-heart-woman-woman-medium-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC.svg') }
+.om-couple-with-heart-woman-woman-medium-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD.svg') }
+.om-couple-with-heart-woman-woman-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE.svg') }
+.om-couple-with-heart-woman-woman-medium-dark-skin-tone-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF.svg') }
+.om-couple-with-heart-woman-woman-dark-skin-tone-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB.svg') }
+.om-couple-with-heart-woman-woman-dark-skin-tone-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC.svg') }
+.om-couple-with-heart-woman-woman-dark-skin-tone-medium-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD.svg') }
+.om-couple-with-heart-woman-woman-dark-skin-tone-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE.svg') }
+.om-couple-with-heart-woman-woman-dark-skin-tone { background-image: url('./openmoji-svg-color/1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF.svg') }
+.om-family-man-woman-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F469-200D-1F466.svg') }
+.om-family-man-woman-girl { background-image: url('./openmoji-svg-color/1F468-200D-1F469-200D-1F467.svg') }
+.om-family-man-woman-girl-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F469-200D-1F467-200D-1F466.svg') }
+.om-family-man-woman-boy-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F469-200D-1F466-200D-1F466.svg') }
+.om-family-man-woman-girl-girl { background-image: url('./openmoji-svg-color/1F468-200D-1F469-200D-1F467-200D-1F467.svg') }
+.om-family-man-man-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F468-200D-1F466.svg') }
+.om-family-man-man-girl { background-image: url('./openmoji-svg-color/1F468-200D-1F468-200D-1F467.svg') }
+.om-family-man-man-girl-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F468-200D-1F467-200D-1F466.svg') }
+.om-family-man-man-boy-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F468-200D-1F466-200D-1F466.svg') }
+.om-family-man-man-girl-girl { background-image: url('./openmoji-svg-color/1F468-200D-1F468-200D-1F467-200D-1F467.svg') }
+.om-family-woman-woman-boy { background-image: url('./openmoji-svg-color/1F469-200D-1F469-200D-1F466.svg') }
+.om-family-woman-woman-girl { background-image: url('./openmoji-svg-color/1F469-200D-1F469-200D-1F467.svg') }
+.om-family-woman-woman-girl-boy { background-image: url('./openmoji-svg-color/1F469-200D-1F469-200D-1F467-200D-1F466.svg') }
+.om-family-woman-woman-boy-boy { background-image: url('./openmoji-svg-color/1F469-200D-1F469-200D-1F466-200D-1F466.svg') }
+.om-family-woman-woman-girl-girl { background-image: url('./openmoji-svg-color/1F469-200D-1F469-200D-1F467-200D-1F467.svg') }
+.om-family-man-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F466.svg') }
+.om-family-man-boy-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F466-200D-1F466.svg') }
+.om-family-man-girl { background-image: url('./openmoji-svg-color/1F468-200D-1F467.svg') }
+.om-family-man-girl-boy { background-image: url('./openmoji-svg-color/1F468-200D-1F467-200D-1F466.svg') }
+.om-family-man-girl-girl { background-image: url('./openmoji-svg-color/1F468-200D-1F467-200D-1F467.svg') }
+.om-family-woman-boy { background-image: url('./openmoji-svg-color/1F469-200D-1F466.svg') }
+.om-family-woman-boy-boy { background-image: url('./openmoji-svg-color/1F469-200D-1F466-200D-1F466.svg') }
+.om-family-woman-girl { background-image: url('./openmoji-svg-color/1F469-200D-1F467.svg') }
+.om-family-woman-girl-boy { background-image: url('./openmoji-svg-color/1F469-200D-1F467-200D-1F466.svg') }
+.om-family-woman-girl-girl { background-image: url('./openmoji-svg-color/1F469-200D-1F467-200D-1F467.svg') }
+.om-speaking-head { background-image: url('./openmoji-svg-color/1F5E3.svg') }
+.om-bust-in-silhouette { background-image: url('./openmoji-svg-color/1F464.svg') }
+.om-busts-in-silhouette { background-image: url('./openmoji-svg-color/1F465.svg') }
+.om-people-hugging { background-image: url('./openmoji-svg-color/1FAC2.svg') }
+.om-family { background-image: url('./openmoji-svg-color/1F46A.svg') }
+.om-family-adult-adult-child { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9D1-200D-1F9D2.svg') }
+.om-family-adult-adult-child-child { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2.svg') }
+.om-family-adult-child { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9D2.svg') }
+.om-family-adult-child-child { background-image: url('./openmoji-svg-color/1F9D1-200D-1F9D2-200D-1F9D2.svg') }
+.om-footprints { background-image: url('./openmoji-svg-color/1F463.svg') }
+.om-fingerprint { background-image: url('./openmoji-svg-color/1FAC6.svg') }
+.om-light-skin-tone { background-image: url('./openmoji-svg-color/1F3FB.svg') }
+.om-medium-light-skin-tone { background-image: url('./openmoji-svg-color/1F3FC.svg') }
+.om-medium-skin-tone { background-image: url('./openmoji-svg-color/1F3FD.svg') }
+.om-medium-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3FE.svg') }
+.om-dark-skin-tone { background-image: url('./openmoji-svg-color/1F3FF.svg') }
+.om-red-hair { background-image: url('./openmoji-svg-color/1F9B0.svg') }
+.om-curly-hair { background-image: url('./openmoji-svg-color/1F9B1.svg') }
+.om-white-hair { background-image: url('./openmoji-svg-color/1F9B3.svg') }
+.om-bald { background-image: url('./openmoji-svg-color/1F9B2.svg') }
+.om-monkey-face { background-image: url('./openmoji-svg-color/1F435.svg') }
+.om-monkey { background-image: url('./openmoji-svg-color/1F412.svg') }
+.om-gorilla { background-image: url('./openmoji-svg-color/1F98D.svg') }
+.om-orangutan { background-image: url('./openmoji-svg-color/1F9A7.svg') }
+.om-dog-face { background-image: url('./openmoji-svg-color/1F436.svg') }
+.om-dog { background-image: url('./openmoji-svg-color/1F415.svg') }
+.om-guide-dog { background-image: url('./openmoji-svg-color/1F9AE.svg') }
+.om-service-dog { background-image: url('./openmoji-svg-color/1F415-200D-1F9BA.svg') }
+.om-poodle { background-image: url('./openmoji-svg-color/1F429.svg') }
+.om-wolf { background-image: url('./openmoji-svg-color/1F43A.svg') }
+.om-fox { background-image: url('./openmoji-svg-color/1F98A.svg') }
+.om-raccoon { background-image: url('./openmoji-svg-color/1F99D.svg') }
+.om-cat-face { background-image: url('./openmoji-svg-color/1F431.svg') }
+.om-cat { background-image: url('./openmoji-svg-color/1F408.svg') }
+.om-black-cat { background-image: url('./openmoji-svg-color/1F408-200D-2B1B.svg') }
+.om-lion { background-image: url('./openmoji-svg-color/1F981.svg') }
+.om-tiger-face { background-image: url('./openmoji-svg-color/1F42F.svg') }
+.om-tiger { background-image: url('./openmoji-svg-color/1F405.svg') }
+.om-leopard { background-image: url('./openmoji-svg-color/1F406.svg') }
+.om-horse-face { background-image: url('./openmoji-svg-color/1F434.svg') }
+.om-moose { background-image: url('./openmoji-svg-color/1FACE.svg') }
+.om-donkey { background-image: url('./openmoji-svg-color/1FACF.svg') }
+.om-horse { background-image: url('./openmoji-svg-color/1F40E.svg') }
+.om-unicorn { background-image: url('./openmoji-svg-color/1F984.svg') }
+.om-zebra { background-image: url('./openmoji-svg-color/1F993.svg') }
+.om-deer { background-image: url('./openmoji-svg-color/1F98C.svg') }
+.om-bison { background-image: url('./openmoji-svg-color/1F9AC.svg') }
+.om-cow-face { background-image: url('./openmoji-svg-color/1F42E.svg') }
+.om-ox { background-image: url('./openmoji-svg-color/1F402.svg') }
+.om-water-buffalo { background-image: url('./openmoji-svg-color/1F403.svg') }
+.om-cow { background-image: url('./openmoji-svg-color/1F404.svg') }
+.om-pig-face { background-image: url('./openmoji-svg-color/1F437.svg') }
+.om-pig { background-image: url('./openmoji-svg-color/1F416.svg') }
+.om-boar { background-image: url('./openmoji-svg-color/1F417.svg') }
+.om-pig-nose { background-image: url('./openmoji-svg-color/1F43D.svg') }
+.om-ram { background-image: url('./openmoji-svg-color/1F40F.svg') }
+.om-ewe { background-image: url('./openmoji-svg-color/1F411.svg') }
+.om-goat { background-image: url('./openmoji-svg-color/1F410.svg') }
+.om-camel { background-image: url('./openmoji-svg-color/1F42A.svg') }
+.om-two-hump-camel { background-image: url('./openmoji-svg-color/1F42B.svg') }
+.om-llama { background-image: url('./openmoji-svg-color/1F999.svg') }
+.om-giraffe { background-image: url('./openmoji-svg-color/1F992.svg') }
+.om-elephant { background-image: url('./openmoji-svg-color/1F418.svg') }
+.om-mammoth { background-image: url('./openmoji-svg-color/1F9A3.svg') }
+.om-rhinoceros { background-image: url('./openmoji-svg-color/1F98F.svg') }
+.om-hippopotamus { background-image: url('./openmoji-svg-color/1F99B.svg') }
+.om-mouse-face { background-image: url('./openmoji-svg-color/1F42D.svg') }
+.om-mouse { background-image: url('./openmoji-svg-color/1F401.svg') }
+.om-rat { background-image: url('./openmoji-svg-color/1F400.svg') }
+.om-hamster { background-image: url('./openmoji-svg-color/1F439.svg') }
+.om-rabbit-face { background-image: url('./openmoji-svg-color/1F430.svg') }
+.om-rabbit { background-image: url('./openmoji-svg-color/1F407.svg') }
+.om-chipmunk { background-image: url('./openmoji-svg-color/1F43F.svg') }
+.om-beaver { background-image: url('./openmoji-svg-color/1F9AB.svg') }
+.om-hedgehog { background-image: url('./openmoji-svg-color/1F994.svg') }
+.om-bat { background-image: url('./openmoji-svg-color/1F987.svg') }
+.om-bear { background-image: url('./openmoji-svg-color/1F43B.svg') }
+.om-polar-bear { background-image: url('./openmoji-svg-color/1F43B-200D-2744-FE0F.svg') }
+.om-koala { background-image: url('./openmoji-svg-color/1F428.svg') }
+.om-panda { background-image: url('./openmoji-svg-color/1F43C.svg') }
+.om-sloth { background-image: url('./openmoji-svg-color/1F9A5.svg') }
+.om-otter { background-image: url('./openmoji-svg-color/1F9A6.svg') }
+.om-skunk { background-image: url('./openmoji-svg-color/1F9A8.svg') }
+.om-kangaroo { background-image: url('./openmoji-svg-color/1F998.svg') }
+.om-badger { background-image: url('./openmoji-svg-color/1F9A1.svg') }
+.om-paw-prints { background-image: url('./openmoji-svg-color/1F43E.svg') }
+.om-turkey { background-image: url('./openmoji-svg-color/1F983.svg') }
+.om-chicken { background-image: url('./openmoji-svg-color/1F414.svg') }
+.om-rooster { background-image: url('./openmoji-svg-color/1F413.svg') }
+.om-hatching-chick { background-image: url('./openmoji-svg-color/1F423.svg') }
+.om-baby-chick { background-image: url('./openmoji-svg-color/1F424.svg') }
+.om-front-facing-baby-chick { background-image: url('./openmoji-svg-color/1F425.svg') }
+.om-bird { background-image: url('./openmoji-svg-color/1F426.svg') }
+.om-penguin { background-image: url('./openmoji-svg-color/1F427.svg') }
+.om-dove { background-image: url('./openmoji-svg-color/1F54A.svg') }
+.om-eagle { background-image: url('./openmoji-svg-color/1F985.svg') }
+.om-duck { background-image: url('./openmoji-svg-color/1F986.svg') }
+.om-swan { background-image: url('./openmoji-svg-color/1F9A2.svg') }
+.om-owl { background-image: url('./openmoji-svg-color/1F989.svg') }
+.om-dodo { background-image: url('./openmoji-svg-color/1F9A4.svg') }
+.om-feather { background-image: url('./openmoji-svg-color/1FAB6.svg') }
+.om-flamingo { background-image: url('./openmoji-svg-color/1F9A9.svg') }
+.om-peacock { background-image: url('./openmoji-svg-color/1F99A.svg') }
+.om-parrot { background-image: url('./openmoji-svg-color/1F99C.svg') }
+.om-wing { background-image: url('./openmoji-svg-color/1FABD.svg') }
+.om-black-bird { background-image: url('./openmoji-svg-color/1F426-200D-2B1B.svg') }
+.om-goose { background-image: url('./openmoji-svg-color/1FABF.svg') }
+.om-phoenix { background-image: url('./openmoji-svg-color/1F426-200D-1F525.svg') }
+.om-frog { background-image: url('./openmoji-svg-color/1F438.svg') }
+.om-crocodile { background-image: url('./openmoji-svg-color/1F40A.svg') }
+.om-turtle { background-image: url('./openmoji-svg-color/1F422.svg') }
+.om-lizard { background-image: url('./openmoji-svg-color/1F98E.svg') }
+.om-snake { background-image: url('./openmoji-svg-color/1F40D.svg') }
+.om-dragon-face { background-image: url('./openmoji-svg-color/1F432.svg') }
+.om-dragon { background-image: url('./openmoji-svg-color/1F409.svg') }
+.om-sauropod { background-image: url('./openmoji-svg-color/1F995.svg') }
+.om-t-rex { background-image: url('./openmoji-svg-color/1F996.svg') }
+.om-spouting-whale { background-image: url('./openmoji-svg-color/1F433.svg') }
+.om-whale { background-image: url('./openmoji-svg-color/1F40B.svg') }
+.om-dolphin { background-image: url('./openmoji-svg-color/1F42C.svg') }
+.om-seal { background-image: url('./openmoji-svg-color/1F9AD.svg') }
+.om-fish { background-image: url('./openmoji-svg-color/1F41F.svg') }
+.om-tropical-fish { background-image: url('./openmoji-svg-color/1F420.svg') }
+.om-blowfish { background-image: url('./openmoji-svg-color/1F421.svg') }
+.om-shark { background-image: url('./openmoji-svg-color/1F988.svg') }
+.om-octopus { background-image: url('./openmoji-svg-color/1F419.svg') }
+.om-spiral-shell { background-image: url('./openmoji-svg-color/1F41A.svg') }
+.om-coral { background-image: url('./openmoji-svg-color/1FAB8.svg') }
+.om-jellyfish { background-image: url('./openmoji-svg-color/1FABC.svg') }
+.om-crab { background-image: url('./openmoji-svg-color/1F980.svg') }
+.om-lobster { background-image: url('./openmoji-svg-color/1F99E.svg') }
+.om-shrimp { background-image: url('./openmoji-svg-color/1F990.svg') }
+.om-squid { background-image: url('./openmoji-svg-color/1F991.svg') }
+.om-oyster { background-image: url('./openmoji-svg-color/1F9AA.svg') }
+.om-snail { background-image: url('./openmoji-svg-color/1F40C.svg') }
+.om-butterfly { background-image: url('./openmoji-svg-color/1F98B.svg') }
+.om-bug { background-image: url('./openmoji-svg-color/1F41B.svg') }
+.om-ant { background-image: url('./openmoji-svg-color/1F41C.svg') }
+.om-honeybee { background-image: url('./openmoji-svg-color/1F41D.svg') }
+.om-beetle { background-image: url('./openmoji-svg-color/1FAB2.svg') }
+.om-lady-beetle { background-image: url('./openmoji-svg-color/1F41E.svg') }
+.om-cricket { background-image: url('./openmoji-svg-color/1F997.svg') }
+.om-cockroach { background-image: url('./openmoji-svg-color/1FAB3.svg') }
+.om-spider { background-image: url('./openmoji-svg-color/1F577.svg') }
+.om-spider-web { background-image: url('./openmoji-svg-color/1F578.svg') }
+.om-scorpion { background-image: url('./openmoji-svg-color/1F982.svg') }
+.om-mosquito { background-image: url('./openmoji-svg-color/1F99F.svg') }
+.om-fly { background-image: url('./openmoji-svg-color/1FAB0.svg') }
+.om-worm { background-image: url('./openmoji-svg-color/1FAB1.svg') }
+.om-microbe { background-image: url('./openmoji-svg-color/1F9A0.svg') }
+.om-bouquet { background-image: url('./openmoji-svg-color/1F490.svg') }
+.om-cherry-blossom { background-image: url('./openmoji-svg-color/1F338.svg') }
+.om-white-flower { background-image: url('./openmoji-svg-color/1F4AE.svg') }
+.om-lotus { background-image: url('./openmoji-svg-color/1FAB7.svg') }
+.om-rosette { background-image: url('./openmoji-svg-color/1F3F5.svg') }
+.om-rose { background-image: url('./openmoji-svg-color/1F339.svg') }
+.om-wilted-flower { background-image: url('./openmoji-svg-color/1F940.svg') }
+.om-hibiscus { background-image: url('./openmoji-svg-color/1F33A.svg') }
+.om-sunflower { background-image: url('./openmoji-svg-color/1F33B.svg') }
+.om-blossom { background-image: url('./openmoji-svg-color/1F33C.svg') }
+.om-tulip { background-image: url('./openmoji-svg-color/1F337.svg') }
+.om-hyacinth { background-image: url('./openmoji-svg-color/1FABB.svg') }
+.om-seedling { background-image: url('./openmoji-svg-color/1F331.svg') }
+.om-potted-plant { background-image: url('./openmoji-svg-color/1FAB4.svg') }
+.om-evergreen-tree { background-image: url('./openmoji-svg-color/1F332.svg') }
+.om-deciduous-tree { background-image: url('./openmoji-svg-color/1F333.svg') }
+.om-palm-tree { background-image: url('./openmoji-svg-color/1F334.svg') }
+.om-cactus { background-image: url('./openmoji-svg-color/1F335.svg') }
+.om-sheaf-of-rice { background-image: url('./openmoji-svg-color/1F33E.svg') }
+.om-herb { background-image: url('./openmoji-svg-color/1F33F.svg') }
+.om-shamrock { background-image: url('./openmoji-svg-color/2618.svg') }
+.om-four-leaf-clover { background-image: url('./openmoji-svg-color/1F340.svg') }
+.om-maple-leaf { background-image: url('./openmoji-svg-color/1F341.svg') }
+.om-fallen-leaf { background-image: url('./openmoji-svg-color/1F342.svg') }
+.om-leaf-fluttering-in-wind { background-image: url('./openmoji-svg-color/1F343.svg') }
+.om-empty-nest { background-image: url('./openmoji-svg-color/1FAB9.svg') }
+.om-nest-with-eggs { background-image: url('./openmoji-svg-color/1FABA.svg') }
+.om-mushroom { background-image: url('./openmoji-svg-color/1F344.svg') }
+.om-leafless-tree { background-image: url('./openmoji-svg-color/1FABE.svg') }
+.om-grapes { background-image: url('./openmoji-svg-color/1F347.svg') }
+.om-melon { background-image: url('./openmoji-svg-color/1F348.svg') }
+.om-watermelon { background-image: url('./openmoji-svg-color/1F349.svg') }
+.om-tangerine { background-image: url('./openmoji-svg-color/1F34A.svg') }
+.om-lemon { background-image: url('./openmoji-svg-color/1F34B.svg') }
+.om-lime { background-image: url('./openmoji-svg-color/1F34B-200D-1F7E9.svg') }
+.om-banana { background-image: url('./openmoji-svg-color/1F34C.svg') }
+.om-pineapple { background-image: url('./openmoji-svg-color/1F34D.svg') }
+.om-mango { background-image: url('./openmoji-svg-color/1F96D.svg') }
+.om-red-apple { background-image: url('./openmoji-svg-color/1F34E.svg') }
+.om-green-apple { background-image: url('./openmoji-svg-color/1F34F.svg') }
+.om-pear { background-image: url('./openmoji-svg-color/1F350.svg') }
+.om-peach { background-image: url('./openmoji-svg-color/1F351.svg') }
+.om-cherries { background-image: url('./openmoji-svg-color/1F352.svg') }
+.om-strawberry { background-image: url('./openmoji-svg-color/1F353.svg') }
+.om-blueberries { background-image: url('./openmoji-svg-color/1FAD0.svg') }
+.om-kiwi-fruit { background-image: url('./openmoji-svg-color/1F95D.svg') }
+.om-tomato { background-image: url('./openmoji-svg-color/1F345.svg') }
+.om-olive { background-image: url('./openmoji-svg-color/1FAD2.svg') }
+.om-coconut { background-image: url('./openmoji-svg-color/1F965.svg') }
+.om-avocado { background-image: url('./openmoji-svg-color/1F951.svg') }
+.om-eggplant { background-image: url('./openmoji-svg-color/1F346.svg') }
+.om-potato { background-image: url('./openmoji-svg-color/1F954.svg') }
+.om-carrot { background-image: url('./openmoji-svg-color/1F955.svg') }
+.om-ear-of-corn { background-image: url('./openmoji-svg-color/1F33D.svg') }
+.om-hot-pepper { background-image: url('./openmoji-svg-color/1F336.svg') }
+.om-bell-pepper { background-image: url('./openmoji-svg-color/1FAD1.svg') }
+.om-cucumber { background-image: url('./openmoji-svg-color/1F952.svg') }
+.om-leafy-green { background-image: url('./openmoji-svg-color/1F96C.svg') }
+.om-broccoli { background-image: url('./openmoji-svg-color/1F966.svg') }
+.om-garlic { background-image: url('./openmoji-svg-color/1F9C4.svg') }
+.om-onion { background-image: url('./openmoji-svg-color/1F9C5.svg') }
+.om-peanuts { background-image: url('./openmoji-svg-color/1F95C.svg') }
+.om-beans { background-image: url('./openmoji-svg-color/1FAD8.svg') }
+.om-chestnut { background-image: url('./openmoji-svg-color/1F330.svg') }
+.om-ginger-root { background-image: url('./openmoji-svg-color/1FADA.svg') }
+.om-pea-pod { background-image: url('./openmoji-svg-color/1FADB.svg') }
+.om-brown-mushroom { background-image: url('./openmoji-svg-color/1F344-200D-1F7EB.svg') }
+.om-root-vegetable { background-image: url('./openmoji-svg-color/1FADC.svg') }
+.om-bread { background-image: url('./openmoji-svg-color/1F35E.svg') }
+.om-croissant { background-image: url('./openmoji-svg-color/1F950.svg') }
+.om-baguette-bread { background-image: url('./openmoji-svg-color/1F956.svg') }
+.om-flatbread { background-image: url('./openmoji-svg-color/1FAD3.svg') }
+.om-pretzel { background-image: url('./openmoji-svg-color/1F968.svg') }
+.om-bagel { background-image: url('./openmoji-svg-color/1F96F.svg') }
+.om-pancakes { background-image: url('./openmoji-svg-color/1F95E.svg') }
+.om-waffle { background-image: url('./openmoji-svg-color/1F9C7.svg') }
+.om-cheese-wedge { background-image: url('./openmoji-svg-color/1F9C0.svg') }
+.om-meat-on-bone { background-image: url('./openmoji-svg-color/1F356.svg') }
+.om-poultry-leg { background-image: url('./openmoji-svg-color/1F357.svg') }
+.om-cut-of-meat { background-image: url('./openmoji-svg-color/1F969.svg') }
+.om-bacon { background-image: url('./openmoji-svg-color/1F953.svg') }
+.om-hamburger { background-image: url('./openmoji-svg-color/1F354.svg') }
+.om-french-fries { background-image: url('./openmoji-svg-color/1F35F.svg') }
+.om-pizza { background-image: url('./openmoji-svg-color/1F355.svg') }
+.om-hot-dog { background-image: url('./openmoji-svg-color/1F32D.svg') }
+.om-sandwich { background-image: url('./openmoji-svg-color/1F96A.svg') }
+.om-taco { background-image: url('./openmoji-svg-color/1F32E.svg') }
+.om-burrito { background-image: url('./openmoji-svg-color/1F32F.svg') }
+.om-tamale { background-image: url('./openmoji-svg-color/1FAD4.svg') }
+.om-stuffed-flatbread { background-image: url('./openmoji-svg-color/1F959.svg') }
+.om-falafel { background-image: url('./openmoji-svg-color/1F9C6.svg') }
+.om-egg { background-image: url('./openmoji-svg-color/1F95A.svg') }
+.om-cooking { background-image: url('./openmoji-svg-color/1F373.svg') }
+.om-shallow-pan-of-food { background-image: url('./openmoji-svg-color/1F958.svg') }
+.om-pot-of-food { background-image: url('./openmoji-svg-color/1F372.svg') }
+.om-fondue { background-image: url('./openmoji-svg-color/1FAD5.svg') }
+.om-bowl-with-spoon { background-image: url('./openmoji-svg-color/1F963.svg') }
+.om-green-salad { background-image: url('./openmoji-svg-color/1F957.svg') }
+.om-popcorn { background-image: url('./openmoji-svg-color/1F37F.svg') }
+.om-butter { background-image: url('./openmoji-svg-color/1F9C8.svg') }
+.om-salt { background-image: url('./openmoji-svg-color/1F9C2.svg') }
+.om-canned-food { background-image: url('./openmoji-svg-color/1F96B.svg') }
+.om-bento-box { background-image: url('./openmoji-svg-color/1F371.svg') }
+.om-rice-cracker { background-image: url('./openmoji-svg-color/1F358.svg') }
+.om-rice-ball { background-image: url('./openmoji-svg-color/1F359.svg') }
+.om-cooked-rice { background-image: url('./openmoji-svg-color/1F35A.svg') }
+.om-curry-rice { background-image: url('./openmoji-svg-color/1F35B.svg') }
+.om-steaming-bowl { background-image: url('./openmoji-svg-color/1F35C.svg') }
+.om-spaghetti { background-image: url('./openmoji-svg-color/1F35D.svg') }
+.om-roasted-sweet-potato { background-image: url('./openmoji-svg-color/1F360.svg') }
+.om-oden { background-image: url('./openmoji-svg-color/1F362.svg') }
+.om-sushi { background-image: url('./openmoji-svg-color/1F363.svg') }
+.om-fried-shrimp { background-image: url('./openmoji-svg-color/1F364.svg') }
+.om-fish-cake-with-swirl { background-image: url('./openmoji-svg-color/1F365.svg') }
+.om-moon-cake { background-image: url('./openmoji-svg-color/1F96E.svg') }
+.om-dango { background-image: url('./openmoji-svg-color/1F361.svg') }
+.om-dumpling { background-image: url('./openmoji-svg-color/1F95F.svg') }
+.om-fortune-cookie { background-image: url('./openmoji-svg-color/1F960.svg') }
+.om-takeout-box { background-image: url('./openmoji-svg-color/1F961.svg') }
+.om-soft-ice-cream { background-image: url('./openmoji-svg-color/1F366.svg') }
+.om-shaved-ice { background-image: url('./openmoji-svg-color/1F367.svg') }
+.om-ice-cream { background-image: url('./openmoji-svg-color/1F368.svg') }
+.om-doughnut { background-image: url('./openmoji-svg-color/1F369.svg') }
+.om-cookie { background-image: url('./openmoji-svg-color/1F36A.svg') }
+.om-birthday-cake { background-image: url('./openmoji-svg-color/1F382.svg') }
+.om-shortcake { background-image: url('./openmoji-svg-color/1F370.svg') }
+.om-cupcake { background-image: url('./openmoji-svg-color/1F9C1.svg') }
+.om-pie { background-image: url('./openmoji-svg-color/1F967.svg') }
+.om-chocolate-bar { background-image: url('./openmoji-svg-color/1F36B.svg') }
+.om-candy { background-image: url('./openmoji-svg-color/1F36C.svg') }
+.om-lollipop { background-image: url('./openmoji-svg-color/1F36D.svg') }
+.om-custard { background-image: url('./openmoji-svg-color/1F36E.svg') }
+.om-honey-pot { background-image: url('./openmoji-svg-color/1F36F.svg') }
+.om-baby-bottle { background-image: url('./openmoji-svg-color/1F37C.svg') }
+.om-glass-of-milk { background-image: url('./openmoji-svg-color/1F95B.svg') }
+.om-hot-beverage { background-image: url('./openmoji-svg-color/2615.svg') }
+.om-teapot { background-image: url('./openmoji-svg-color/1FAD6.svg') }
+.om-teacup-without-handle { background-image: url('./openmoji-svg-color/1F375.svg') }
+.om-sake { background-image: url('./openmoji-svg-color/1F376.svg') }
+.om-bottle-with-popping-cork { background-image: url('./openmoji-svg-color/1F37E.svg') }
+.om-wine-glass { background-image: url('./openmoji-svg-color/1F377.svg') }
+.om-cocktail-glass { background-image: url('./openmoji-svg-color/1F378.svg') }
+.om-tropical-drink { background-image: url('./openmoji-svg-color/1F379.svg') }
+.om-beer-mug { background-image: url('./openmoji-svg-color/1F37A.svg') }
+.om-clinking-beer-mugs { background-image: url('./openmoji-svg-color/1F37B.svg') }
+.om-clinking-glasses { background-image: url('./openmoji-svg-color/1F942.svg') }
+.om-tumbler-glass { background-image: url('./openmoji-svg-color/1F943.svg') }
+.om-pouring-liquid { background-image: url('./openmoji-svg-color/1FAD7.svg') }
+.om-cup-with-straw { background-image: url('./openmoji-svg-color/1F964.svg') }
+.om-bubble-tea { background-image: url('./openmoji-svg-color/1F9CB.svg') }
+.om-beverage-box { background-image: url('./openmoji-svg-color/1F9C3.svg') }
+.om-mate { background-image: url('./openmoji-svg-color/1F9C9.svg') }
+.om-ice { background-image: url('./openmoji-svg-color/1F9CA.svg') }
+.om-chopsticks { background-image: url('./openmoji-svg-color/1F962.svg') }
+.om-fork-and-knife-with-plate { background-image: url('./openmoji-svg-color/1F37D.svg') }
+.om-fork-and-knife { background-image: url('./openmoji-svg-color/1F374.svg') }
+.om-spoon { background-image: url('./openmoji-svg-color/1F944.svg') }
+.om-kitchen-knife { background-image: url('./openmoji-svg-color/1F52A.svg') }
+.om-jar { background-image: url('./openmoji-svg-color/1FAD9.svg') }
+.om-amphora { background-image: url('./openmoji-svg-color/1F3FA.svg') }
+.om-globe-showing-europe-africa { background-image: url('./openmoji-svg-color/1F30D.svg') }
+.om-globe-showing-americas { background-image: url('./openmoji-svg-color/1F30E.svg') }
+.om-globe-showing-asia-australia { background-image: url('./openmoji-svg-color/1F30F.svg') }
+.om-globe-with-meridians { background-image: url('./openmoji-svg-color/1F310.svg') }
+.om-world-map { background-image: url('./openmoji-svg-color/1F5FA.svg') }
+.om-map-of-japan { background-image: url('./openmoji-svg-color/1F5FE.svg') }
+.om-compass { background-image: url('./openmoji-svg-color/1F9ED.svg') }
+.om-snow-capped-mountain { background-image: url('./openmoji-svg-color/1F3D4.svg') }
+.om-mountain { background-image: url('./openmoji-svg-color/26F0.svg') }
+.om-volcano { background-image: url('./openmoji-svg-color/1F30B.svg') }
+.om-mount-fuji { background-image: url('./openmoji-svg-color/1F5FB.svg') }
+.om-camping { background-image: url('./openmoji-svg-color/1F3D5.svg') }
+.om-beach-with-umbrella { background-image: url('./openmoji-svg-color/1F3D6.svg') }
+.om-desert { background-image: url('./openmoji-svg-color/1F3DC.svg') }
+.om-desert-island { background-image: url('./openmoji-svg-color/1F3DD.svg') }
+.om-national-park { background-image: url('./openmoji-svg-color/1F3DE.svg') }
+.om-stadium { background-image: url('./openmoji-svg-color/1F3DF.svg') }
+.om-classical-building { background-image: url('./openmoji-svg-color/1F3DB.svg') }
+.om-building-construction { background-image: url('./openmoji-svg-color/1F3D7.svg') }
+.om-brick { background-image: url('./openmoji-svg-color/1F9F1.svg') }
+.om-rock { background-image: url('./openmoji-svg-color/1FAA8.svg') }
+.om-wood { background-image: url('./openmoji-svg-color/1FAB5.svg') }
+.om-hut { background-image: url('./openmoji-svg-color/1F6D6.svg') }
+.om-houses { background-image: url('./openmoji-svg-color/1F3D8.svg') }
+.om-derelict-house { background-image: url('./openmoji-svg-color/1F3DA.svg') }
+.om-house { background-image: url('./openmoji-svg-color/1F3E0.svg') }
+.om-house-with-garden { background-image: url('./openmoji-svg-color/1F3E1.svg') }
+.om-office-building { background-image: url('./openmoji-svg-color/1F3E2.svg') }
+.om-japanese-post-office { background-image: url('./openmoji-svg-color/1F3E3.svg') }
+.om-post-office { background-image: url('./openmoji-svg-color/1F3E4.svg') }
+.om-hospital { background-image: url('./openmoji-svg-color/1F3E5.svg') }
+.om-bank { background-image: url('./openmoji-svg-color/1F3E6.svg') }
+.om-hotel { background-image: url('./openmoji-svg-color/1F3E8.svg') }
+.om-love-hotel { background-image: url('./openmoji-svg-color/1F3E9.svg') }
+.om-convenience-store { background-image: url('./openmoji-svg-color/1F3EA.svg') }
+.om-school { background-image: url('./openmoji-svg-color/1F3EB.svg') }
+.om-department-store { background-image: url('./openmoji-svg-color/1F3EC.svg') }
+.om-factory { background-image: url('./openmoji-svg-color/1F3ED.svg') }
+.om-japanese-castle { background-image: url('./openmoji-svg-color/1F3EF.svg') }
+.om-castle { background-image: url('./openmoji-svg-color/1F3F0.svg') }
+.om-wedding { background-image: url('./openmoji-svg-color/1F492.svg') }
+.om-tokyo-tower { background-image: url('./openmoji-svg-color/1F5FC.svg') }
+.om-statue-of-liberty { background-image: url('./openmoji-svg-color/1F5FD.svg') }
+.om-church { background-image: url('./openmoji-svg-color/26EA.svg') }
+.om-mosque { background-image: url('./openmoji-svg-color/1F54C.svg') }
+.om-hindu-temple { background-image: url('./openmoji-svg-color/1F6D5.svg') }
+.om-synagogue { background-image: url('./openmoji-svg-color/1F54D.svg') }
+.om-shinto-shrine { background-image: url('./openmoji-svg-color/26E9.svg') }
+.om-kaaba { background-image: url('./openmoji-svg-color/1F54B.svg') }
+.om-fountain { background-image: url('./openmoji-svg-color/26F2.svg') }
+.om-tent { background-image: url('./openmoji-svg-color/26FA.svg') }
+.om-foggy { background-image: url('./openmoji-svg-color/1F301.svg') }
+.om-night-with-stars { background-image: url('./openmoji-svg-color/1F303.svg') }
+.om-cityscape { background-image: url('./openmoji-svg-color/1F3D9.svg') }
+.om-sunrise-over-mountains { background-image: url('./openmoji-svg-color/1F304.svg') }
+.om-sunrise { background-image: url('./openmoji-svg-color/1F305.svg') }
+.om-cityscape-at-dusk { background-image: url('./openmoji-svg-color/1F306.svg') }
+.om-sunset { background-image: url('./openmoji-svg-color/1F307.svg') }
+.om-bridge-at-night { background-image: url('./openmoji-svg-color/1F309.svg') }
+.om-hot-springs { background-image: url('./openmoji-svg-color/2668.svg') }
+.om-carousel-horse { background-image: url('./openmoji-svg-color/1F3A0.svg') }
+.om-playground-slide { background-image: url('./openmoji-svg-color/1F6DD.svg') }
+.om-ferris-wheel { background-image: url('./openmoji-svg-color/1F3A1.svg') }
+.om-roller-coaster { background-image: url('./openmoji-svg-color/1F3A2.svg') }
+.om-barber-pole { background-image: url('./openmoji-svg-color/1F488.svg') }
+.om-circus-tent { background-image: url('./openmoji-svg-color/1F3AA.svg') }
+.om-locomotive { background-image: url('./openmoji-svg-color/1F682.svg') }
+.om-railway-car { background-image: url('./openmoji-svg-color/1F683.svg') }
+.om-high-speed-train { background-image: url('./openmoji-svg-color/1F684.svg') }
+.om-bullet-train { background-image: url('./openmoji-svg-color/1F685.svg') }
+.om-train { background-image: url('./openmoji-svg-color/1F686.svg') }
+.om-metro { background-image: url('./openmoji-svg-color/1F687.svg') }
+.om-light-rail { background-image: url('./openmoji-svg-color/1F688.svg') }
+.om-station { background-image: url('./openmoji-svg-color/1F689.svg') }
+.om-tram { background-image: url('./openmoji-svg-color/1F68A.svg') }
+.om-monorail { background-image: url('./openmoji-svg-color/1F69D.svg') }
+.om-mountain-railway { background-image: url('./openmoji-svg-color/1F69E.svg') }
+.om-tram-car { background-image: url('./openmoji-svg-color/1F68B.svg') }
+.om-bus { background-image: url('./openmoji-svg-color/1F68C.svg') }
+.om-oncoming-bus { background-image: url('./openmoji-svg-color/1F68D.svg') }
+.om-trolleybus { background-image: url('./openmoji-svg-color/1F68E.svg') }
+.om-minibus { background-image: url('./openmoji-svg-color/1F690.svg') }
+.om-ambulance { background-image: url('./openmoji-svg-color/1F691.svg') }
+.om-fire-engine { background-image: url('./openmoji-svg-color/1F692.svg') }
+.om-police-car { background-image: url('./openmoji-svg-color/1F693.svg') }
+.om-oncoming-police-car { background-image: url('./openmoji-svg-color/1F694.svg') }
+.om-taxi { background-image: url('./openmoji-svg-color/1F695.svg') }
+.om-oncoming-taxi { background-image: url('./openmoji-svg-color/1F696.svg') }
+.om-automobile { background-image: url('./openmoji-svg-color/1F697.svg') }
+.om-oncoming-automobile { background-image: url('./openmoji-svg-color/1F698.svg') }
+.om-sport-utility-vehicle { background-image: url('./openmoji-svg-color/1F699.svg') }
+.om-pickup-truck { background-image: url('./openmoji-svg-color/1F6FB.svg') }
+.om-delivery-truck { background-image: url('./openmoji-svg-color/1F69A.svg') }
+.om-articulated-lorry { background-image: url('./openmoji-svg-color/1F69B.svg') }
+.om-tractor { background-image: url('./openmoji-svg-color/1F69C.svg') }
+.om-racing-car { background-image: url('./openmoji-svg-color/1F3CE.svg') }
+.om-motorcycle { background-image: url('./openmoji-svg-color/1F3CD.svg') }
+.om-motor-scooter { background-image: url('./openmoji-svg-color/1F6F5.svg') }
+.om-manual-wheelchair { background-image: url('./openmoji-svg-color/1F9BD.svg') }
+.om-motorized-wheelchair { background-image: url('./openmoji-svg-color/1F9BC.svg') }
+.om-auto-rickshaw { background-image: url('./openmoji-svg-color/1F6FA.svg') }
+.om-bicycle { background-image: url('./openmoji-svg-color/1F6B2.svg') }
+.om-kick-scooter { background-image: url('./openmoji-svg-color/1F6F4.svg') }
+.om-skateboard { background-image: url('./openmoji-svg-color/1F6F9.svg') }
+.om-roller-skate { background-image: url('./openmoji-svg-color/1F6FC.svg') }
+.om-bus-stop { background-image: url('./openmoji-svg-color/1F68F.svg') }
+.om-motorway { background-image: url('./openmoji-svg-color/1F6E3.svg') }
+.om-railway-track { background-image: url('./openmoji-svg-color/1F6E4.svg') }
+.om-oil-drum { background-image: url('./openmoji-svg-color/1F6E2.svg') }
+.om-fuel-pump { background-image: url('./openmoji-svg-color/26FD.svg') }
+.om-wheel { background-image: url('./openmoji-svg-color/1F6DE.svg') }
+.om-police-car-light { background-image: url('./openmoji-svg-color/1F6A8.svg') }
+.om-horizontal-traffic-light { background-image: url('./openmoji-svg-color/1F6A5.svg') }
+.om-vertical-traffic-light { background-image: url('./openmoji-svg-color/1F6A6.svg') }
+.om-stop-sign { background-image: url('./openmoji-svg-color/1F6D1.svg') }
+.om-construction { background-image: url('./openmoji-svg-color/1F6A7.svg') }
+.om-anchor { background-image: url('./openmoji-svg-color/2693.svg') }
+.om-ring-buoy { background-image: url('./openmoji-svg-color/1F6DF.svg') }
+.om-sailboat { background-image: url('./openmoji-svg-color/26F5.svg') }
+.om-canoe { background-image: url('./openmoji-svg-color/1F6F6.svg') }
+.om-speedboat { background-image: url('./openmoji-svg-color/1F6A4.svg') }
+.om-passenger-ship { background-image: url('./openmoji-svg-color/1F6F3.svg') }
+.om-ferry { background-image: url('./openmoji-svg-color/26F4.svg') }
+.om-motor-boat { background-image: url('./openmoji-svg-color/1F6E5.svg') }
+.om-ship { background-image: url('./openmoji-svg-color/1F6A2.svg') }
+.om-airplane { background-image: url('./openmoji-svg-color/2708.svg') }
+.om-small-airplane { background-image: url('./openmoji-svg-color/1F6E9.svg') }
+.om-airplane-departure { background-image: url('./openmoji-svg-color/1F6EB.svg') }
+.om-airplane-arrival { background-image: url('./openmoji-svg-color/1F6EC.svg') }
+.om-parachute { background-image: url('./openmoji-svg-color/1FA82.svg') }
+.om-seat { background-image: url('./openmoji-svg-color/1F4BA.svg') }
+.om-helicopter { background-image: url('./openmoji-svg-color/1F681.svg') }
+.om-suspension-railway { background-image: url('./openmoji-svg-color/1F69F.svg') }
+.om-mountain-cableway { background-image: url('./openmoji-svg-color/1F6A0.svg') }
+.om-aerial-tramway { background-image: url('./openmoji-svg-color/1F6A1.svg') }
+.om-satellite { background-image: url('./openmoji-svg-color/1F6F0.svg') }
+.om-rocket { background-image: url('./openmoji-svg-color/1F680.svg') }
+.om-flying-saucer { background-image: url('./openmoji-svg-color/1F6F8.svg') }
+.om-bellhop-bell { background-image: url('./openmoji-svg-color/1F6CE.svg') }
+.om-luggage { background-image: url('./openmoji-svg-color/1F9F3.svg') }
+.om-hourglass-done { background-image: url('./openmoji-svg-color/231B.svg') }
+.om-hourglass-not-done { background-image: url('./openmoji-svg-color/23F3.svg') }
+.om-watch { background-image: url('./openmoji-svg-color/231A.svg') }
+.om-alarm-clock { background-image: url('./openmoji-svg-color/23F0.svg') }
+.om-stopwatch { background-image: url('./openmoji-svg-color/23F1.svg') }
+.om-timer-clock { background-image: url('./openmoji-svg-color/23F2.svg') }
+.om-mantelpiece-clock { background-image: url('./openmoji-svg-color/1F570.svg') }
+.om-twelve-o-clock { background-image: url('./openmoji-svg-color/1F55B.svg') }
+.om-twelve-thirty { background-image: url('./openmoji-svg-color/1F567.svg') }
+.om-one-o-clock { background-image: url('./openmoji-svg-color/1F550.svg') }
+.om-one-thirty { background-image: url('./openmoji-svg-color/1F55C.svg') }
+.om-two-o-clock { background-image: url('./openmoji-svg-color/1F551.svg') }
+.om-two-thirty { background-image: url('./openmoji-svg-color/1F55D.svg') }
+.om-three-o-clock { background-image: url('./openmoji-svg-color/1F552.svg') }
+.om-three-thirty { background-image: url('./openmoji-svg-color/1F55E.svg') }
+.om-four-o-clock { background-image: url('./openmoji-svg-color/1F553.svg') }
+.om-four-thirty { background-image: url('./openmoji-svg-color/1F55F.svg') }
+.om-five-o-clock { background-image: url('./openmoji-svg-color/1F554.svg') }
+.om-five-thirty { background-image: url('./openmoji-svg-color/1F560.svg') }
+.om-six-o-clock { background-image: url('./openmoji-svg-color/1F555.svg') }
+.om-six-thirty { background-image: url('./openmoji-svg-color/1F561.svg') }
+.om-seven-o-clock { background-image: url('./openmoji-svg-color/1F556.svg') }
+.om-seven-thirty { background-image: url('./openmoji-svg-color/1F562.svg') }
+.om-eight-o-clock { background-image: url('./openmoji-svg-color/1F557.svg') }
+.om-eight-thirty { background-image: url('./openmoji-svg-color/1F563.svg') }
+.om-nine-o-clock { background-image: url('./openmoji-svg-color/1F558.svg') }
+.om-nine-thirty { background-image: url('./openmoji-svg-color/1F564.svg') }
+.om-ten-o-clock { background-image: url('./openmoji-svg-color/1F559.svg') }
+.om-ten-thirty { background-image: url('./openmoji-svg-color/1F565.svg') }
+.om-eleven-o-clock { background-image: url('./openmoji-svg-color/1F55A.svg') }
+.om-eleven-thirty { background-image: url('./openmoji-svg-color/1F566.svg') }
+.om-new-moon { background-image: url('./openmoji-svg-color/1F311.svg') }
+.om-waxing-crescent-moon { background-image: url('./openmoji-svg-color/1F312.svg') }
+.om-first-quarter-moon { background-image: url('./openmoji-svg-color/1F313.svg') }
+.om-waxing-gibbous-moon { background-image: url('./openmoji-svg-color/1F314.svg') }
+.om-full-moon { background-image: url('./openmoji-svg-color/1F315.svg') }
+.om-waning-gibbous-moon { background-image: url('./openmoji-svg-color/1F316.svg') }
+.om-last-quarter-moon { background-image: url('./openmoji-svg-color/1F317.svg') }
+.om-waning-crescent-moon { background-image: url('./openmoji-svg-color/1F318.svg') }
+.om-crescent-moon { background-image: url('./openmoji-svg-color/1F319.svg') }
+.om-new-moon-face { background-image: url('./openmoji-svg-color/1F31A.svg') }
+.om-first-quarter-moon-face { background-image: url('./openmoji-svg-color/1F31B.svg') }
+.om-last-quarter-moon-face { background-image: url('./openmoji-svg-color/1F31C.svg') }
+.om-thermometer { background-image: url('./openmoji-svg-color/1F321.svg') }
+.om-sun { background-image: url('./openmoji-svg-color/2600.svg') }
+.om-full-moon-face { background-image: url('./openmoji-svg-color/1F31D.svg') }
+.om-sun-with-face { background-image: url('./openmoji-svg-color/1F31E.svg') }
+.om-ringed-planet { background-image: url('./openmoji-svg-color/1FA90.svg') }
+.om-star { background-image: url('./openmoji-svg-color/2B50.svg') }
+.om-glowing-star { background-image: url('./openmoji-svg-color/1F31F.svg') }
+.om-shooting-star { background-image: url('./openmoji-svg-color/1F320.svg') }
+.om-milky-way { background-image: url('./openmoji-svg-color/1F30C.svg') }
+.om-cloud { background-image: url('./openmoji-svg-color/2601.svg') }
+.om-sun-behind-cloud { background-image: url('./openmoji-svg-color/26C5.svg') }
+.om-cloud-with-lightning-and-rain { background-image: url('./openmoji-svg-color/26C8.svg') }
+.om-sun-behind-small-cloud { background-image: url('./openmoji-svg-color/1F324.svg') }
+.om-sun-behind-large-cloud { background-image: url('./openmoji-svg-color/1F325.svg') }
+.om-sun-behind-rain-cloud { background-image: url('./openmoji-svg-color/1F326.svg') }
+.om-cloud-with-rain { background-image: url('./openmoji-svg-color/1F327.svg') }
+.om-cloud-with-snow { background-image: url('./openmoji-svg-color/1F328.svg') }
+.om-cloud-with-lightning { background-image: url('./openmoji-svg-color/1F329.svg') }
+.om-tornado { background-image: url('./openmoji-svg-color/1F32A.svg') }
+.om-fog { background-image: url('./openmoji-svg-color/1F32B.svg') }
+.om-wind-face { background-image: url('./openmoji-svg-color/1F32C.svg') }
+.om-cyclone { background-image: url('./openmoji-svg-color/1F300.svg') }
+.om-rainbow { background-image: url('./openmoji-svg-color/1F308.svg') }
+.om-closed-umbrella { background-image: url('./openmoji-svg-color/1F302.svg') }
+.om-umbrella { background-image: url('./openmoji-svg-color/2602.svg') }
+.om-umbrella-with-rain-drops { background-image: url('./openmoji-svg-color/2614.svg') }
+.om-umbrella-on-ground { background-image: url('./openmoji-svg-color/26F1.svg') }
+.om-high-voltage { background-image: url('./openmoji-svg-color/26A1.svg') }
+.om-snowflake { background-image: url('./openmoji-svg-color/2744.svg') }
+.om-snowman { background-image: url('./openmoji-svg-color/2603.svg') }
+.om-snowman-without-snow { background-image: url('./openmoji-svg-color/26C4.svg') }
+.om-comet { background-image: url('./openmoji-svg-color/2604.svg') }
+.om-fire { background-image: url('./openmoji-svg-color/1F525.svg') }
+.om-droplet { background-image: url('./openmoji-svg-color/1F4A7.svg') }
+.om-water-wave { background-image: url('./openmoji-svg-color/1F30A.svg') }
+.om-jack-o-lantern { background-image: url('./openmoji-svg-color/1F383.svg') }
+.om-christmas-tree { background-image: url('./openmoji-svg-color/1F384.svg') }
+.om-fireworks { background-image: url('./openmoji-svg-color/1F386.svg') }
+.om-sparkler { background-image: url('./openmoji-svg-color/1F387.svg') }
+.om-firecracker { background-image: url('./openmoji-svg-color/1F9E8.svg') }
+.om-sparkles { background-image: url('./openmoji-svg-color/2728.svg') }
+.om-balloon { background-image: url('./openmoji-svg-color/1F388.svg') }
+.om-party-popper { background-image: url('./openmoji-svg-color/1F389.svg') }
+.om-confetti-ball { background-image: url('./openmoji-svg-color/1F38A.svg') }
+.om-tanabata-tree { background-image: url('./openmoji-svg-color/1F38B.svg') }
+.om-pine-decoration { background-image: url('./openmoji-svg-color/1F38D.svg') }
+.om-japanese-dolls { background-image: url('./openmoji-svg-color/1F38E.svg') }
+.om-carp-streamer { background-image: url('./openmoji-svg-color/1F38F.svg') }
+.om-wind-chime { background-image: url('./openmoji-svg-color/1F390.svg') }
+.om-moon-viewing-ceremony { background-image: url('./openmoji-svg-color/1F391.svg') }
+.om-red-envelope { background-image: url('./openmoji-svg-color/1F9E7.svg') }
+.om-ribbon { background-image: url('./openmoji-svg-color/1F380.svg') }
+.om-wrapped-gift { background-image: url('./openmoji-svg-color/1F381.svg') }
+.om-reminder-ribbon { background-image: url('./openmoji-svg-color/1F397.svg') }
+.om-admission-tickets { background-image: url('./openmoji-svg-color/1F39F.svg') }
+.om-ticket { background-image: url('./openmoji-svg-color/1F3AB.svg') }
+.om-military-medal { background-image: url('./openmoji-svg-color/1F396.svg') }
+.om-trophy { background-image: url('./openmoji-svg-color/1F3C6.svg') }
+.om-sports-medal { background-image: url('./openmoji-svg-color/1F3C5.svg') }
+.om-1st-place-medal { background-image: url('./openmoji-svg-color/1F947.svg') }
+.om-2nd-place-medal { background-image: url('./openmoji-svg-color/1F948.svg') }
+.om-3rd-place-medal { background-image: url('./openmoji-svg-color/1F949.svg') }
+.om-soccer-ball { background-image: url('./openmoji-svg-color/26BD.svg') }
+.om-baseball { background-image: url('./openmoji-svg-color/26BE.svg') }
+.om-softball { background-image: url('./openmoji-svg-color/1F94E.svg') }
+.om-basketball { background-image: url('./openmoji-svg-color/1F3C0.svg') }
+.om-volleyball { background-image: url('./openmoji-svg-color/1F3D0.svg') }
+.om-american-football { background-image: url('./openmoji-svg-color/1F3C8.svg') }
+.om-rugby-football { background-image: url('./openmoji-svg-color/1F3C9.svg') }
+.om-tennis { background-image: url('./openmoji-svg-color/1F3BE.svg') }
+.om-flying-disc { background-image: url('./openmoji-svg-color/1F94F.svg') }
+.om-bowling { background-image: url('./openmoji-svg-color/1F3B3.svg') }
+.om-cricket-game { background-image: url('./openmoji-svg-color/1F3CF.svg') }
+.om-field-hockey { background-image: url('./openmoji-svg-color/1F3D1.svg') }
+.om-ice-hockey { background-image: url('./openmoji-svg-color/1F3D2.svg') }
+.om-lacrosse { background-image: url('./openmoji-svg-color/1F94D.svg') }
+.om-ping-pong { background-image: url('./openmoji-svg-color/1F3D3.svg') }
+.om-badminton { background-image: url('./openmoji-svg-color/1F3F8.svg') }
+.om-boxing-glove { background-image: url('./openmoji-svg-color/1F94A.svg') }
+.om-martial-arts-uniform { background-image: url('./openmoji-svg-color/1F94B.svg') }
+.om-goal-net { background-image: url('./openmoji-svg-color/1F945.svg') }
+.om-flag-in-hole { background-image: url('./openmoji-svg-color/26F3.svg') }
+.om-ice-skate { background-image: url('./openmoji-svg-color/26F8.svg') }
+.om-fishing-pole { background-image: url('./openmoji-svg-color/1F3A3.svg') }
+.om-diving-mask { background-image: url('./openmoji-svg-color/1F93F.svg') }
+.om-running-shirt { background-image: url('./openmoji-svg-color/1F3BD.svg') }
+.om-skis { background-image: url('./openmoji-svg-color/1F3BF.svg') }
+.om-sled { background-image: url('./openmoji-svg-color/1F6F7.svg') }
+.om-curling-stone { background-image: url('./openmoji-svg-color/1F94C.svg') }
+.om-bullseye { background-image: url('./openmoji-svg-color/1F3AF.svg') }
+.om-yo-yo { background-image: url('./openmoji-svg-color/1FA80.svg') }
+.om-kite { background-image: url('./openmoji-svg-color/1FA81.svg') }
+.om-water-pistol { background-image: url('./openmoji-svg-color/1F52B.svg') }
+.om-pool-8-ball { background-image: url('./openmoji-svg-color/1F3B1.svg') }
+.om-crystal-ball { background-image: url('./openmoji-svg-color/1F52E.svg') }
+.om-magic-wand { background-image: url('./openmoji-svg-color/1FA84.svg') }
+.om-video-game { background-image: url('./openmoji-svg-color/1F3AE.svg') }
+.om-joystick { background-image: url('./openmoji-svg-color/1F579.svg') }
+.om-slot-machine { background-image: url('./openmoji-svg-color/1F3B0.svg') }
+.om-game-die { background-image: url('./openmoji-svg-color/1F3B2.svg') }
+.om-puzzle-piece { background-image: url('./openmoji-svg-color/1F9E9.svg') }
+.om-teddy-bear { background-image: url('./openmoji-svg-color/1F9F8.svg') }
+.om-piñata { background-image: url('./openmoji-svg-color/1FA85.svg') }
+.om-mirror-ball { background-image: url('./openmoji-svg-color/1FAA9.svg') }
+.om-nesting-dolls { background-image: url('./openmoji-svg-color/1FA86.svg') }
+.om-spade-suit { background-image: url('./openmoji-svg-color/2660.svg') }
+.om-heart-suit { background-image: url('./openmoji-svg-color/2665.svg') }
+.om-diamond-suit { background-image: url('./openmoji-svg-color/2666.svg') }
+.om-club-suit { background-image: url('./openmoji-svg-color/2663.svg') }
+.om-chess-pawn { background-image: url('./openmoji-svg-color/265F.svg') }
+.om-joker { background-image: url('./openmoji-svg-color/1F0CF.svg') }
+.om-mahjong-red-dragon { background-image: url('./openmoji-svg-color/1F004.svg') }
+.om-flower-playing-cards { background-image: url('./openmoji-svg-color/1F3B4.svg') }
+.om-performing-arts { background-image: url('./openmoji-svg-color/1F3AD.svg') }
+.om-framed-picture { background-image: url('./openmoji-svg-color/1F5BC.svg') }
+.om-artist-palette { background-image: url('./openmoji-svg-color/1F3A8.svg') }
+.om-thread { background-image: url('./openmoji-svg-color/1F9F5.svg') }
+.om-sewing-needle { background-image: url('./openmoji-svg-color/1FAA1.svg') }
+.om-yarn { background-image: url('./openmoji-svg-color/1F9F6.svg') }
+.om-knot { background-image: url('./openmoji-svg-color/1FAA2.svg') }
+.om-glasses { background-image: url('./openmoji-svg-color/1F453.svg') }
+.om-sunglasses { background-image: url('./openmoji-svg-color/1F576.svg') }
+.om-goggles { background-image: url('./openmoji-svg-color/1F97D.svg') }
+.om-lab-coat { background-image: url('./openmoji-svg-color/1F97C.svg') }
+.om-safety-vest { background-image: url('./openmoji-svg-color/1F9BA.svg') }
+.om-necktie { background-image: url('./openmoji-svg-color/1F454.svg') }
+.om-t-shirt { background-image: url('./openmoji-svg-color/1F455.svg') }
+.om-jeans { background-image: url('./openmoji-svg-color/1F456.svg') }
+.om-scarf { background-image: url('./openmoji-svg-color/1F9E3.svg') }
+.om-gloves { background-image: url('./openmoji-svg-color/1F9E4.svg') }
+.om-coat { background-image: url('./openmoji-svg-color/1F9E5.svg') }
+.om-socks { background-image: url('./openmoji-svg-color/1F9E6.svg') }
+.om-dress { background-image: url('./openmoji-svg-color/1F457.svg') }
+.om-kimono { background-image: url('./openmoji-svg-color/1F458.svg') }
+.om-sari { background-image: url('./openmoji-svg-color/1F97B.svg') }
+.om-one-piece-swimsuit { background-image: url('./openmoji-svg-color/1FA71.svg') }
+.om-briefs { background-image: url('./openmoji-svg-color/1FA72.svg') }
+.om-shorts { background-image: url('./openmoji-svg-color/1FA73.svg') }
+.om-bikini { background-image: url('./openmoji-svg-color/1F459.svg') }
+.om-woman-s-clothes { background-image: url('./openmoji-svg-color/1F45A.svg') }
+.om-folding-hand-fan { background-image: url('./openmoji-svg-color/1FAAD.svg') }
+.om-purse { background-image: url('./openmoji-svg-color/1F45B.svg') }
+.om-handbag { background-image: url('./openmoji-svg-color/1F45C.svg') }
+.om-clutch-bag { background-image: url('./openmoji-svg-color/1F45D.svg') }
+.om-shopping-bags { background-image: url('./openmoji-svg-color/1F6CD.svg') }
+.om-backpack { background-image: url('./openmoji-svg-color/1F392.svg') }
+.om-thong-sandal { background-image: url('./openmoji-svg-color/1FA74.svg') }
+.om-man-s-shoe { background-image: url('./openmoji-svg-color/1F45E.svg') }
+.om-running-shoe { background-image: url('./openmoji-svg-color/1F45F.svg') }
+.om-hiking-boot { background-image: url('./openmoji-svg-color/1F97E.svg') }
+.om-flat-shoe { background-image: url('./openmoji-svg-color/1F97F.svg') }
+.om-high-heeled-shoe { background-image: url('./openmoji-svg-color/1F460.svg') }
+.om-woman-s-sandal { background-image: url('./openmoji-svg-color/1F461.svg') }
+.om-ballet-shoes { background-image: url('./openmoji-svg-color/1FA70.svg') }
+.om-woman-s-boot { background-image: url('./openmoji-svg-color/1F462.svg') }
+.om-hair-pick { background-image: url('./openmoji-svg-color/1FAAE.svg') }
+.om-crown { background-image: url('./openmoji-svg-color/1F451.svg') }
+.om-woman-s-hat { background-image: url('./openmoji-svg-color/1F452.svg') }
+.om-top-hat { background-image: url('./openmoji-svg-color/1F3A9.svg') }
+.om-graduation-cap { background-image: url('./openmoji-svg-color/1F393.svg') }
+.om-billed-cap { background-image: url('./openmoji-svg-color/1F9E2.svg') }
+.om-military-helmet { background-image: url('./openmoji-svg-color/1FA96.svg') }
+.om-rescue-worker-s-helmet { background-image: url('./openmoji-svg-color/26D1.svg') }
+.om-prayer-beads { background-image: url('./openmoji-svg-color/1F4FF.svg') }
+.om-lipstick { background-image: url('./openmoji-svg-color/1F484.svg') }
+.om-ring { background-image: url('./openmoji-svg-color/1F48D.svg') }
+.om-gem-stone { background-image: url('./openmoji-svg-color/1F48E.svg') }
+.om-muted-speaker { background-image: url('./openmoji-svg-color/1F507.svg') }
+.om-speaker-low-volume { background-image: url('./openmoji-svg-color/1F508.svg') }
+.om-speaker-medium-volume { background-image: url('./openmoji-svg-color/1F509.svg') }
+.om-speaker-high-volume { background-image: url('./openmoji-svg-color/1F50A.svg') }
+.om-loudspeaker { background-image: url('./openmoji-svg-color/1F4E2.svg') }
+.om-megaphone { background-image: url('./openmoji-svg-color/1F4E3.svg') }
+.om-postal-horn { background-image: url('./openmoji-svg-color/1F4EF.svg') }
+.om-bell { background-image: url('./openmoji-svg-color/1F514.svg') }
+.om-bell-with-slash { background-image: url('./openmoji-svg-color/1F515.svg') }
+.om-musical-score { background-image: url('./openmoji-svg-color/1F3BC.svg') }
+.om-musical-note { background-image: url('./openmoji-svg-color/1F3B5.svg') }
+.om-musical-notes { background-image: url('./openmoji-svg-color/1F3B6.svg') }
+.om-studio-microphone { background-image: url('./openmoji-svg-color/1F399.svg') }
+.om-level-slider { background-image: url('./openmoji-svg-color/1F39A.svg') }
+.om-control-knobs { background-image: url('./openmoji-svg-color/1F39B.svg') }
+.om-microphone { background-image: url('./openmoji-svg-color/1F3A4.svg') }
+.om-headphone { background-image: url('./openmoji-svg-color/1F3A7.svg') }
+.om-radio { background-image: url('./openmoji-svg-color/1F4FB.svg') }
+.om-saxophone { background-image: url('./openmoji-svg-color/1F3B7.svg') }
+.om-accordion { background-image: url('./openmoji-svg-color/1FA97.svg') }
+.om-guitar { background-image: url('./openmoji-svg-color/1F3B8.svg') }
+.om-musical-keyboard { background-image: url('./openmoji-svg-color/1F3B9.svg') }
+.om-trumpet { background-image: url('./openmoji-svg-color/1F3BA.svg') }
+.om-violin { background-image: url('./openmoji-svg-color/1F3BB.svg') }
+.om-banjo { background-image: url('./openmoji-svg-color/1FA95.svg') }
+.om-drum { background-image: url('./openmoji-svg-color/1F941.svg') }
+.om-long-drum { background-image: url('./openmoji-svg-color/1FA98.svg') }
+.om-maracas { background-image: url('./openmoji-svg-color/1FA87.svg') }
+.om-flute { background-image: url('./openmoji-svg-color/1FA88.svg') }
+.om-harp { background-image: url('./openmoji-svg-color/1FA89.svg') }
+.om-mobile-phone { background-image: url('./openmoji-svg-color/1F4F1.svg') }
+.om-mobile-phone-with-arrow { background-image: url('./openmoji-svg-color/1F4F2.svg') }
+.om-telephone { background-image: url('./openmoji-svg-color/260E.svg') }
+.om-telephone-receiver { background-image: url('./openmoji-svg-color/1F4DE.svg') }
+.om-pager { background-image: url('./openmoji-svg-color/1F4DF.svg') }
+.om-fax-machine { background-image: url('./openmoji-svg-color/1F4E0.svg') }
+.om-battery { background-image: url('./openmoji-svg-color/1F50B.svg') }
+.om-low-battery { background-image: url('./openmoji-svg-color/1FAAB.svg') }
+.om-electric-plug { background-image: url('./openmoji-svg-color/1F50C.svg') }
+.om-laptop { background-image: url('./openmoji-svg-color/1F4BB.svg') }
+.om-desktop-computer { background-image: url('./openmoji-svg-color/1F5A5.svg') }
+.om-printer { background-image: url('./openmoji-svg-color/1F5A8.svg') }
+.om-keyboard { background-image: url('./openmoji-svg-color/2328.svg') }
+.om-computer-mouse { background-image: url('./openmoji-svg-color/1F5B1.svg') }
+.om-trackball { background-image: url('./openmoji-svg-color/1F5B2.svg') }
+.om-computer-disk { background-image: url('./openmoji-svg-color/1F4BD.svg') }
+.om-floppy-disk { background-image: url('./openmoji-svg-color/1F4BE.svg') }
+.om-optical-disk { background-image: url('./openmoji-svg-color/1F4BF.svg') }
+.om-dvd { background-image: url('./openmoji-svg-color/1F4C0.svg') }
+.om-abacus { background-image: url('./openmoji-svg-color/1F9EE.svg') }
+.om-movie-camera { background-image: url('./openmoji-svg-color/1F3A5.svg') }
+.om-film-frames { background-image: url('./openmoji-svg-color/1F39E.svg') }
+.om-film-projector { background-image: url('./openmoji-svg-color/1F4FD.svg') }
+.om-clapper-board { background-image: url('./openmoji-svg-color/1F3AC.svg') }
+.om-television { background-image: url('./openmoji-svg-color/1F4FA.svg') }
+.om-camera { background-image: url('./openmoji-svg-color/1F4F7.svg') }
+.om-camera-with-flash { background-image: url('./openmoji-svg-color/1F4F8.svg') }
+.om-video-camera { background-image: url('./openmoji-svg-color/1F4F9.svg') }
+.om-videocassette { background-image: url('./openmoji-svg-color/1F4FC.svg') }
+.om-magnifying-glass-tilted-left { background-image: url('./openmoji-svg-color/1F50D.svg') }
+.om-magnifying-glass-tilted-right { background-image: url('./openmoji-svg-color/1F50E.svg') }
+.om-candle { background-image: url('./openmoji-svg-color/1F56F.svg') }
+.om-light-bulb { background-image: url('./openmoji-svg-color/1F4A1.svg') }
+.om-flashlight { background-image: url('./openmoji-svg-color/1F526.svg') }
+.om-red-paper-lantern { background-image: url('./openmoji-svg-color/1F3EE.svg') }
+.om-diya-lamp { background-image: url('./openmoji-svg-color/1FA94.svg') }
+.om-notebook-with-decorative-cover { background-image: url('./openmoji-svg-color/1F4D4.svg') }
+.om-closed-book { background-image: url('./openmoji-svg-color/1F4D5.svg') }
+.om-open-book { background-image: url('./openmoji-svg-color/1F4D6.svg') }
+.om-green-book { background-image: url('./openmoji-svg-color/1F4D7.svg') }
+.om-blue-book { background-image: url('./openmoji-svg-color/1F4D8.svg') }
+.om-orange-book { background-image: url('./openmoji-svg-color/1F4D9.svg') }
+.om-books { background-image: url('./openmoji-svg-color/1F4DA.svg') }
+.om-notebook { background-image: url('./openmoji-svg-color/1F4D3.svg') }
+.om-ledger { background-image: url('./openmoji-svg-color/1F4D2.svg') }
+.om-page-with-curl { background-image: url('./openmoji-svg-color/1F4C3.svg') }
+.om-scroll { background-image: url('./openmoji-svg-color/1F4DC.svg') }
+.om-page-facing-up { background-image: url('./openmoji-svg-color/1F4C4.svg') }
+.om-newspaper { background-image: url('./openmoji-svg-color/1F4F0.svg') }
+.om-rolled-up-newspaper { background-image: url('./openmoji-svg-color/1F5DE.svg') }
+.om-bookmark-tabs { background-image: url('./openmoji-svg-color/1F4D1.svg') }
+.om-bookmark { background-image: url('./openmoji-svg-color/1F516.svg') }
+.om-label { background-image: url('./openmoji-svg-color/1F3F7.svg') }
+.om-money-bag { background-image: url('./openmoji-svg-color/1F4B0.svg') }
+.om-coin { background-image: url('./openmoji-svg-color/1FA99.svg') }
+.om-yen-banknote { background-image: url('./openmoji-svg-color/1F4B4.svg') }
+.om-dollar-banknote { background-image: url('./openmoji-svg-color/1F4B5.svg') }
+.om-euro-banknote { background-image: url('./openmoji-svg-color/1F4B6.svg') }
+.om-pound-banknote { background-image: url('./openmoji-svg-color/1F4B7.svg') }
+.om-money-with-wings { background-image: url('./openmoji-svg-color/1F4B8.svg') }
+.om-credit-card { background-image: url('./openmoji-svg-color/1F4B3.svg') }
+.om-receipt { background-image: url('./openmoji-svg-color/1F9FE.svg') }
+.om-chart-increasing-with-yen { background-image: url('./openmoji-svg-color/1F4B9.svg') }
+.om-envelope { background-image: url('./openmoji-svg-color/2709.svg') }
+.om-e-mail { background-image: url('./openmoji-svg-color/1F4E7.svg') }
+.om-incoming-envelope { background-image: url('./openmoji-svg-color/1F4E8.svg') }
+.om-envelope-with-arrow { background-image: url('./openmoji-svg-color/1F4E9.svg') }
+.om-outbox-tray { background-image: url('./openmoji-svg-color/1F4E4.svg') }
+.om-inbox-tray { background-image: url('./openmoji-svg-color/1F4E5.svg') }
+.om-package { background-image: url('./openmoji-svg-color/1F4E6.svg') }
+.om-closed-mailbox-with-raised-flag { background-image: url('./openmoji-svg-color/1F4EB.svg') }
+.om-closed-mailbox-with-lowered-flag { background-image: url('./openmoji-svg-color/1F4EA.svg') }
+.om-open-mailbox-with-raised-flag { background-image: url('./openmoji-svg-color/1F4EC.svg') }
+.om-open-mailbox-with-lowered-flag { background-image: url('./openmoji-svg-color/1F4ED.svg') }
+.om-postbox { background-image: url('./openmoji-svg-color/1F4EE.svg') }
+.om-ballot-box-with-ballot { background-image: url('./openmoji-svg-color/1F5F3.svg') }
+.om-pencil { background-image: url('./openmoji-svg-color/270F.svg') }
+.om-black-nib { background-image: url('./openmoji-svg-color/2712.svg') }
+.om-fountain-pen { background-image: url('./openmoji-svg-color/1F58B.svg') }
+.om-pen { background-image: url('./openmoji-svg-color/1F58A.svg') }
+.om-paintbrush { background-image: url('./openmoji-svg-color/1F58C.svg') }
+.om-crayon { background-image: url('./openmoji-svg-color/1F58D.svg') }
+.om-memo { background-image: url('./openmoji-svg-color/1F4DD.svg') }
+.om-briefcase { background-image: url('./openmoji-svg-color/1F4BC.svg') }
+.om-file-folder { background-image: url('./openmoji-svg-color/1F4C1.svg') }
+.om-open-file-folder { background-image: url('./openmoji-svg-color/1F4C2.svg') }
+.om-card-index-dividers { background-image: url('./openmoji-svg-color/1F5C2.svg') }
+.om-calendar { background-image: url('./openmoji-svg-color/1F4C5.svg') }
+.om-tear-off-calendar { background-image: url('./openmoji-svg-color/1F4C6.svg') }
+.om-spiral-notepad { background-image: url('./openmoji-svg-color/1F5D2.svg') }
+.om-spiral-calendar { background-image: url('./openmoji-svg-color/1F5D3.svg') }
+.om-card-index { background-image: url('./openmoji-svg-color/1F4C7.svg') }
+.om-chart-increasing { background-image: url('./openmoji-svg-color/1F4C8.svg') }
+.om-chart-decreasing { background-image: url('./openmoji-svg-color/1F4C9.svg') }
+.om-bar-chart { background-image: url('./openmoji-svg-color/1F4CA.svg') }
+.om-clipboard { background-image: url('./openmoji-svg-color/1F4CB.svg') }
+.om-pushpin { background-image: url('./openmoji-svg-color/1F4CC.svg') }
+.om-round-pushpin { background-image: url('./openmoji-svg-color/1F4CD.svg') }
+.om-paperclip { background-image: url('./openmoji-svg-color/1F4CE.svg') }
+.om-linked-paperclips { background-image: url('./openmoji-svg-color/1F587.svg') }
+.om-straight-ruler { background-image: url('./openmoji-svg-color/1F4CF.svg') }
+.om-triangular-ruler { background-image: url('./openmoji-svg-color/1F4D0.svg') }
+.om-scissors { background-image: url('./openmoji-svg-color/2702.svg') }
+.om-card-file-box { background-image: url('./openmoji-svg-color/1F5C3.svg') }
+.om-file-cabinet { background-image: url('./openmoji-svg-color/1F5C4.svg') }
+.om-wastebasket { background-image: url('./openmoji-svg-color/1F5D1.svg') }
+.om-locked { background-image: url('./openmoji-svg-color/1F512.svg') }
+.om-unlocked { background-image: url('./openmoji-svg-color/1F513.svg') }
+.om-locked-with-pen { background-image: url('./openmoji-svg-color/1F50F.svg') }
+.om-locked-with-key { background-image: url('./openmoji-svg-color/1F510.svg') }
+.om-key { background-image: url('./openmoji-svg-color/1F511.svg') }
+.om-old-key { background-image: url('./openmoji-svg-color/1F5DD.svg') }
+.om-hammer { background-image: url('./openmoji-svg-color/1F528.svg') }
+.om-axe { background-image: url('./openmoji-svg-color/1FA93.svg') }
+.om-pick { background-image: url('./openmoji-svg-color/26CF.svg') }
+.om-hammer-and-pick { background-image: url('./openmoji-svg-color/2692.svg') }
+.om-hammer-and-wrench { background-image: url('./openmoji-svg-color/1F6E0.svg') }
+.om-dagger { background-image: url('./openmoji-svg-color/1F5E1.svg') }
+.om-crossed-swords { background-image: url('./openmoji-svg-color/2694.svg') }
+.om-bomb { background-image: url('./openmoji-svg-color/1F4A3.svg') }
+.om-boomerang { background-image: url('./openmoji-svg-color/1FA83.svg') }
+.om-bow-and-arrow { background-image: url('./openmoji-svg-color/1F3F9.svg') }
+.om-shield { background-image: url('./openmoji-svg-color/1F6E1.svg') }
+.om-carpentry-saw { background-image: url('./openmoji-svg-color/1FA9A.svg') }
+.om-wrench { background-image: url('./openmoji-svg-color/1F527.svg') }
+.om-screwdriver { background-image: url('./openmoji-svg-color/1FA9B.svg') }
+.om-nut-and-bolt { background-image: url('./openmoji-svg-color/1F529.svg') }
+.om-gear { background-image: url('./openmoji-svg-color/2699.svg') }
+.om-clamp { background-image: url('./openmoji-svg-color/1F5DC.svg') }
+.om-balance-scale { background-image: url('./openmoji-svg-color/2696.svg') }
+.om-white-cane { background-image: url('./openmoji-svg-color/1F9AF.svg') }
+.om-link { background-image: url('./openmoji-svg-color/1F517.svg') }
+.om-broken-chain { background-image: url('./openmoji-svg-color/26D3-FE0F-200D-1F4A5.svg') }
+.om-chains { background-image: url('./openmoji-svg-color/26D3.svg') }
+.om-hook { background-image: url('./openmoji-svg-color/1FA9D.svg') }
+.om-toolbox { background-image: url('./openmoji-svg-color/1F9F0.svg') }
+.om-magnet { background-image: url('./openmoji-svg-color/1F9F2.svg') }
+.om-ladder { background-image: url('./openmoji-svg-color/1FA9C.svg') }
+.om-shovel { background-image: url('./openmoji-svg-color/1FA8F.svg') }
+.om-alembic { background-image: url('./openmoji-svg-color/2697.svg') }
+.om-test-tube { background-image: url('./openmoji-svg-color/1F9EA.svg') }
+.om-petri-dish { background-image: url('./openmoji-svg-color/1F9EB.svg') }
+.om-dna { background-image: url('./openmoji-svg-color/1F9EC.svg') }
+.om-microscope { background-image: url('./openmoji-svg-color/1F52C.svg') }
+.om-telescope { background-image: url('./openmoji-svg-color/1F52D.svg') }
+.om-satellite-antenna { background-image: url('./openmoji-svg-color/1F4E1.svg') }
+.om-syringe { background-image: url('./openmoji-svg-color/1F489.svg') }
+.om-drop-of-blood { background-image: url('./openmoji-svg-color/1FA78.svg') }
+.om-pill { background-image: url('./openmoji-svg-color/1F48A.svg') }
+.om-adhesive-bandage { background-image: url('./openmoji-svg-color/1FA79.svg') }
+.om-crutch { background-image: url('./openmoji-svg-color/1FA7C.svg') }
+.om-stethoscope { background-image: url('./openmoji-svg-color/1FA7A.svg') }
+.om-x-ray { background-image: url('./openmoji-svg-color/1FA7B.svg') }
+.om-door { background-image: url('./openmoji-svg-color/1F6AA.svg') }
+.om-elevator { background-image: url('./openmoji-svg-color/1F6D7.svg') }
+.om-mirror { background-image: url('./openmoji-svg-color/1FA9E.svg') }
+.om-window { background-image: url('./openmoji-svg-color/1FA9F.svg') }
+.om-bed { background-image: url('./openmoji-svg-color/1F6CF.svg') }
+.om-couch-and-lamp { background-image: url('./openmoji-svg-color/1F6CB.svg') }
+.om-chair { background-image: url('./openmoji-svg-color/1FA91.svg') }
+.om-toilet { background-image: url('./openmoji-svg-color/1F6BD.svg') }
+.om-plunger { background-image: url('./openmoji-svg-color/1FAA0.svg') }
+.om-shower { background-image: url('./openmoji-svg-color/1F6BF.svg') }
+.om-bathtub { background-image: url('./openmoji-svg-color/1F6C1.svg') }
+.om-mouse-trap { background-image: url('./openmoji-svg-color/1FAA4.svg') }
+.om-razor { background-image: url('./openmoji-svg-color/1FA92.svg') }
+.om-lotion-bottle { background-image: url('./openmoji-svg-color/1F9F4.svg') }
+.om-safety-pin { background-image: url('./openmoji-svg-color/1F9F7.svg') }
+.om-broom { background-image: url('./openmoji-svg-color/1F9F9.svg') }
+.om-basket { background-image: url('./openmoji-svg-color/1F9FA.svg') }
+.om-roll-of-paper { background-image: url('./openmoji-svg-color/1F9FB.svg') }
+.om-bucket { background-image: url('./openmoji-svg-color/1FAA3.svg') }
+.om-soap { background-image: url('./openmoji-svg-color/1F9FC.svg') }
+.om-bubbles { background-image: url('./openmoji-svg-color/1FAE7.svg') }
+.om-toothbrush { background-image: url('./openmoji-svg-color/1FAA5.svg') }
+.om-sponge { background-image: url('./openmoji-svg-color/1F9FD.svg') }
+.om-fire-extinguisher { background-image: url('./openmoji-svg-color/1F9EF.svg') }
+.om-shopping-cart { background-image: url('./openmoji-svg-color/1F6D2.svg') }
+.om-cigarette { background-image: url('./openmoji-svg-color/1F6AC.svg') }
+.om-coffin { background-image: url('./openmoji-svg-color/26B0.svg') }
+.om-headstone { background-image: url('./openmoji-svg-color/1FAA6.svg') }
+.om-funeral-urn { background-image: url('./openmoji-svg-color/26B1.svg') }
+.om-nazar-amulet { background-image: url('./openmoji-svg-color/1F9FF.svg') }
+.om-hamsa { background-image: url('./openmoji-svg-color/1FAAC.svg') }
+.om-moai { background-image: url('./openmoji-svg-color/1F5FF.svg') }
+.om-placard { background-image: url('./openmoji-svg-color/1FAA7.svg') }
+.om-identification-card { background-image: url('./openmoji-svg-color/1FAAA.svg') }
+.om-atm-sign { background-image: url('./openmoji-svg-color/1F3E7.svg') }
+.om-litter-in-bin-sign { background-image: url('./openmoji-svg-color/1F6AE.svg') }
+.om-potable-water { background-image: url('./openmoji-svg-color/1F6B0.svg') }
+.om-wheelchair-symbol { background-image: url('./openmoji-svg-color/267F.svg') }
+.om-men-s-room { background-image: url('./openmoji-svg-color/1F6B9.svg') }
+.om-women-s-room { background-image: url('./openmoji-svg-color/1F6BA.svg') }
+.om-restroom { background-image: url('./openmoji-svg-color/1F6BB.svg') }
+.om-baby-symbol { background-image: url('./openmoji-svg-color/1F6BC.svg') }
+.om-water-closet { background-image: url('./openmoji-svg-color/1F6BE.svg') }
+.om-passport-control { background-image: url('./openmoji-svg-color/1F6C2.svg') }
+.om-customs { background-image: url('./openmoji-svg-color/1F6C3.svg') }
+.om-baggage-claim { background-image: url('./openmoji-svg-color/1F6C4.svg') }
+.om-left-luggage { background-image: url('./openmoji-svg-color/1F6C5.svg') }
+.om-warning { background-image: url('./openmoji-svg-color/26A0.svg') }
+.om-children-crossing { background-image: url('./openmoji-svg-color/1F6B8.svg') }
+.om-no-entry { background-image: url('./openmoji-svg-color/26D4.svg') }
+.om-prohibited { background-image: url('./openmoji-svg-color/1F6AB.svg') }
+.om-no-bicycles { background-image: url('./openmoji-svg-color/1F6B3.svg') }
+.om-no-smoking { background-image: url('./openmoji-svg-color/1F6AD.svg') }
+.om-no-littering { background-image: url('./openmoji-svg-color/1F6AF.svg') }
+.om-non-potable-water { background-image: url('./openmoji-svg-color/1F6B1.svg') }
+.om-no-pedestrians { background-image: url('./openmoji-svg-color/1F6B7.svg') }
+.om-no-mobile-phones { background-image: url('./openmoji-svg-color/1F4F5.svg') }
+.om-no-one-under-eighteen { background-image: url('./openmoji-svg-color/1F51E.svg') }
+.om-radioactive { background-image: url('./openmoji-svg-color/2622.svg') }
+.om-biohazard { background-image: url('./openmoji-svg-color/2623.svg') }
+.om-up-arrow { background-image: url('./openmoji-svg-color/2B06.svg') }
+.om-up-right-arrow { background-image: url('./openmoji-svg-color/2197.svg') }
+.om-right-arrow { background-image: url('./openmoji-svg-color/27A1.svg') }
+.om-down-right-arrow { background-image: url('./openmoji-svg-color/2198.svg') }
+.om-down-arrow { background-image: url('./openmoji-svg-color/2B07.svg') }
+.om-down-left-arrow { background-image: url('./openmoji-svg-color/2199.svg') }
+.om-left-arrow { background-image: url('./openmoji-svg-color/2B05.svg') }
+.om-up-left-arrow { background-image: url('./openmoji-svg-color/2196.svg') }
+.om-up-down-arrow { background-image: url('./openmoji-svg-color/2195.svg') }
+.om-left-right-arrow { background-image: url('./openmoji-svg-color/2194.svg') }
+.om-right-arrow-curving-left { background-image: url('./openmoji-svg-color/21A9.svg') }
+.om-left-arrow-curving-right { background-image: url('./openmoji-svg-color/21AA.svg') }
+.om-right-arrow-curving-up { background-image: url('./openmoji-svg-color/2934.svg') }
+.om-right-arrow-curving-down { background-image: url('./openmoji-svg-color/2935.svg') }
+.om-clockwise-vertical-arrows { background-image: url('./openmoji-svg-color/1F503.svg') }
+.om-counterclockwise-arrows-button { background-image: url('./openmoji-svg-color/1F504.svg') }
+.om-back-arrow { background-image: url('./openmoji-svg-color/1F519.svg') }
+.om-end-arrow { background-image: url('./openmoji-svg-color/1F51A.svg') }
+.om-on-arrow { background-image: url('./openmoji-svg-color/1F51B.svg') }
+.om-soon-arrow { background-image: url('./openmoji-svg-color/1F51C.svg') }
+.om-top-arrow { background-image: url('./openmoji-svg-color/1F51D.svg') }
+.om-place-of-worship { background-image: url('./openmoji-svg-color/1F6D0.svg') }
+.om-atom-symbol { background-image: url('./openmoji-svg-color/269B.svg') }
+.om-om { background-image: url('./openmoji-svg-color/1F549.svg') }
+.om-star-of-david { background-image: url('./openmoji-svg-color/2721.svg') }
+.om-wheel-of-dharma { background-image: url('./openmoji-svg-color/2638.svg') }
+.om-yin-yang { background-image: url('./openmoji-svg-color/262F.svg') }
+.om-latin-cross { background-image: url('./openmoji-svg-color/271D.svg') }
+.om-orthodox-cross { background-image: url('./openmoji-svg-color/2626.svg') }
+.om-star-and-crescent { background-image: url('./openmoji-svg-color/262A.svg') }
+.om-peace-symbol { background-image: url('./openmoji-svg-color/262E.svg') }
+.om-menorah { background-image: url('./openmoji-svg-color/1F54E.svg') }
+.om-dotted-six-pointed-star { background-image: url('./openmoji-svg-color/1F52F.svg') }
+.om-khanda { background-image: url('./openmoji-svg-color/1FAAF.svg') }
+.om-aries { background-image: url('./openmoji-svg-color/2648.svg') }
+.om-taurus { background-image: url('./openmoji-svg-color/2649.svg') }
+.om-gemini { background-image: url('./openmoji-svg-color/264A.svg') }
+.om-cancer { background-image: url('./openmoji-svg-color/264B.svg') }
+.om-leo { background-image: url('./openmoji-svg-color/264C.svg') }
+.om-virgo { background-image: url('./openmoji-svg-color/264D.svg') }
+.om-libra { background-image: url('./openmoji-svg-color/264E.svg') }
+.om-scorpio { background-image: url('./openmoji-svg-color/264F.svg') }
+.om-sagittarius { background-image: url('./openmoji-svg-color/2650.svg') }
+.om-capricorn { background-image: url('./openmoji-svg-color/2651.svg') }
+.om-aquarius { background-image: url('./openmoji-svg-color/2652.svg') }
+.om-pisces { background-image: url('./openmoji-svg-color/2653.svg') }
+.om-ophiuchus { background-image: url('./openmoji-svg-color/26CE.svg') }
+.om-shuffle-tracks-button { background-image: url('./openmoji-svg-color/1F500.svg') }
+.om-repeat-button { background-image: url('./openmoji-svg-color/1F501.svg') }
+.om-repeat-single-button { background-image: url('./openmoji-svg-color/1F502.svg') }
+.om-play-button { background-image: url('./openmoji-svg-color/25B6.svg') }
+.om-fast-forward-button { background-image: url('./openmoji-svg-color/23E9.svg') }
+.om-next-track-button { background-image: url('./openmoji-svg-color/23ED.svg') }
+.om-play-or-pause-button { background-image: url('./openmoji-svg-color/23EF.svg') }
+.om-reverse-button { background-image: url('./openmoji-svg-color/25C0.svg') }
+.om-fast-reverse-button { background-image: url('./openmoji-svg-color/23EA.svg') }
+.om-last-track-button { background-image: url('./openmoji-svg-color/23EE.svg') }
+.om-upwards-button { background-image: url('./openmoji-svg-color/1F53C.svg') }
+.om-fast-up-button { background-image: url('./openmoji-svg-color/23EB.svg') }
+.om-downwards-button { background-image: url('./openmoji-svg-color/1F53D.svg') }
+.om-fast-down-button { background-image: url('./openmoji-svg-color/23EC.svg') }
+.om-pause-button { background-image: url('./openmoji-svg-color/23F8.svg') }
+.om-stop-button { background-image: url('./openmoji-svg-color/23F9.svg') }
+.om-record-button { background-image: url('./openmoji-svg-color/23FA.svg') }
+.om-eject-button { background-image: url('./openmoji-svg-color/23CF.svg') }
+.om-cinema { background-image: url('./openmoji-svg-color/1F3A6.svg') }
+.om-dim-button { background-image: url('./openmoji-svg-color/1F505.svg') }
+.om-bright-button { background-image: url('./openmoji-svg-color/1F506.svg') }
+.om-antenna-bars { background-image: url('./openmoji-svg-color/1F4F6.svg') }
+.om-wireless { background-image: url('./openmoji-svg-color/1F6DC.svg') }
+.om-vibration-mode { background-image: url('./openmoji-svg-color/1F4F3.svg') }
+.om-mobile-phone-off { background-image: url('./openmoji-svg-color/1F4F4.svg') }
+.om-female-sign { background-image: url('./openmoji-svg-color/2640.svg') }
+.om-male-sign { background-image: url('./openmoji-svg-color/2642.svg') }
+.om-transgender-symbol { background-image: url('./openmoji-svg-color/26A7.svg') }
+.om-multiply { background-image: url('./openmoji-svg-color/2716.svg') }
+.om-plus { background-image: url('./openmoji-svg-color/2795.svg') }
+.om-minus { background-image: url('./openmoji-svg-color/2796.svg') }
+.om-divide { background-image: url('./openmoji-svg-color/2797.svg') }
+.om-heavy-equals-sign { background-image: url('./openmoji-svg-color/1F7F0.svg') }
+.om-infinity { background-image: url('./openmoji-svg-color/267E.svg') }
+.om-double-exclamation-mark { background-image: url('./openmoji-svg-color/203C.svg') }
+.om-exclamation-question-mark { background-image: url('./openmoji-svg-color/2049.svg') }
+.om-red-question-mark { background-image: url('./openmoji-svg-color/2753.svg') }
+.om-white-question-mark { background-image: url('./openmoji-svg-color/2754.svg') }
+.om-white-exclamation-mark { background-image: url('./openmoji-svg-color/2755.svg') }
+.om-red-exclamation-mark { background-image: url('./openmoji-svg-color/2757.svg') }
+.om-wavy-dash { background-image: url('./openmoji-svg-color/3030.svg') }
+.om-currency-exchange { background-image: url('./openmoji-svg-color/1F4B1.svg') }
+.om-heavy-dollar-sign { background-image: url('./openmoji-svg-color/1F4B2.svg') }
+.om-medical-symbol { background-image: url('./openmoji-svg-color/2695.svg') }
+.om-recycling-symbol { background-image: url('./openmoji-svg-color/267B.svg') }
+.om-fleur-de-lis { background-image: url('./openmoji-svg-color/269C.svg') }
+.om-trident-emblem { background-image: url('./openmoji-svg-color/1F531.svg') }
+.om-name-badge { background-image: url('./openmoji-svg-color/1F4DB.svg') }
+.om-japanese-symbol-for-beginner { background-image: url('./openmoji-svg-color/1F530.svg') }
+.om-hollow-red-circle { background-image: url('./openmoji-svg-color/2B55.svg') }
+.om-check-mark-button { background-image: url('./openmoji-svg-color/2705.svg') }
+.om-check-box-with-check { background-image: url('./openmoji-svg-color/2611.svg') }
+.om-check-mark { background-image: url('./openmoji-svg-color/2714.svg') }
+.om-cross-mark { background-image: url('./openmoji-svg-color/274C.svg') }
+.om-cross-mark-button { background-image: url('./openmoji-svg-color/274E.svg') }
+.om-curly-loop { background-image: url('./openmoji-svg-color/27B0.svg') }
+.om-double-curly-loop { background-image: url('./openmoji-svg-color/27BF.svg') }
+.om-part-alternation-mark { background-image: url('./openmoji-svg-color/303D.svg') }
+.om-eight-spoked-asterisk { background-image: url('./openmoji-svg-color/2733.svg') }
+.om-eight-pointed-star { background-image: url('./openmoji-svg-color/2734.svg') }
+.om-sparkle { background-image: url('./openmoji-svg-color/2747.svg') }
+.om-copyright { background-image: url('./openmoji-svg-color/00A9.svg') }
+.om-registered { background-image: url('./openmoji-svg-color/00AE.svg') }
+.om-trade-mark { background-image: url('./openmoji-svg-color/2122.svg') }
+.om-splatter { background-image: url('./openmoji-svg-color/1FADF.svg') }
+.om-keycap { background-image: url('./openmoji-svg-color/0023-FE0F-20E3.svg') }
+.om-keycap { background-image: url('./openmoji-svg-color/002A-FE0F-20E3.svg') }
+.om-keycap-0 { background-image: url('./openmoji-svg-color/0030-FE0F-20E3.svg') }
+.om-keycap-1 { background-image: url('./openmoji-svg-color/0031-FE0F-20E3.svg') }
+.om-keycap-2 { background-image: url('./openmoji-svg-color/0032-FE0F-20E3.svg') }
+.om-keycap-3 { background-image: url('./openmoji-svg-color/0033-FE0F-20E3.svg') }
+.om-keycap-4 { background-image: url('./openmoji-svg-color/0034-FE0F-20E3.svg') }
+.om-keycap-5 { background-image: url('./openmoji-svg-color/0035-FE0F-20E3.svg') }
+.om-keycap-6 { background-image: url('./openmoji-svg-color/0036-FE0F-20E3.svg') }
+.om-keycap-7 { background-image: url('./openmoji-svg-color/0037-FE0F-20E3.svg') }
+.om-keycap-8 { background-image: url('./openmoji-svg-color/0038-FE0F-20E3.svg') }
+.om-keycap-9 { background-image: url('./openmoji-svg-color/0039-FE0F-20E3.svg') }
+.om-keycap-10 { background-image: url('./openmoji-svg-color/1F51F.svg') }
+.om-input-latin-uppercase { background-image: url('./openmoji-svg-color/1F520.svg') }
+.om-input-latin-lowercase { background-image: url('./openmoji-svg-color/1F521.svg') }
+.om-input-numbers { background-image: url('./openmoji-svg-color/1F522.svg') }
+.om-input-symbols { background-image: url('./openmoji-svg-color/1F523.svg') }
+.om-input-latin-letters { background-image: url('./openmoji-svg-color/1F524.svg') }
+.om-a-button-blood-type { background-image: url('./openmoji-svg-color/1F170.svg') }
+.om-ab-button-blood-type { background-image: url('./openmoji-svg-color/1F18E.svg') }
+.om-b-button-blood-type { background-image: url('./openmoji-svg-color/1F171.svg') }
+.om-cl-button { background-image: url('./openmoji-svg-color/1F191.svg') }
+.om-cool-button { background-image: url('./openmoji-svg-color/1F192.svg') }
+.om-free-button { background-image: url('./openmoji-svg-color/1F193.svg') }
+.om-information { background-image: url('./openmoji-svg-color/2139.svg') }
+.om-id-button { background-image: url('./openmoji-svg-color/1F194.svg') }
+.om-circled-m { background-image: url('./openmoji-svg-color/24C2.svg') }
+.om-new-button { background-image: url('./openmoji-svg-color/1F195.svg') }
+.om-ng-button { background-image: url('./openmoji-svg-color/1F196.svg') }
+.om-o-button-blood-type { background-image: url('./openmoji-svg-color/1F17E.svg') }
+.om-ok-button { background-image: url('./openmoji-svg-color/1F197.svg') }
+.om-p-button { background-image: url('./openmoji-svg-color/1F17F.svg') }
+.om-sos-button { background-image: url('./openmoji-svg-color/1F198.svg') }
+.om-up-button { background-image: url('./openmoji-svg-color/1F199.svg') }
+.om-vs-button { background-image: url('./openmoji-svg-color/1F19A.svg') }
+.om-japanese-here-button { background-image: url('./openmoji-svg-color/1F201.svg') }
+.om-japanese-service-charge-button { background-image: url('./openmoji-svg-color/1F202.svg') }
+.om-japanese-monthly-amount-button { background-image: url('./openmoji-svg-color/1F237.svg') }
+.om-japanese-not-free-of-charge-button { background-image: url('./openmoji-svg-color/1F236.svg') }
+.om-japanese-reserved-button { background-image: url('./openmoji-svg-color/1F22F.svg') }
+.om-japanese-bargain-button { background-image: url('./openmoji-svg-color/1F250.svg') }
+.om-japanese-discount-button { background-image: url('./openmoji-svg-color/1F239.svg') }
+.om-japanese-free-of-charge-button { background-image: url('./openmoji-svg-color/1F21A.svg') }
+.om-japanese-prohibited-button { background-image: url('./openmoji-svg-color/1F232.svg') }
+.om-japanese-acceptable-button { background-image: url('./openmoji-svg-color/1F251.svg') }
+.om-japanese-application-button { background-image: url('./openmoji-svg-color/1F238.svg') }
+.om-japanese-passing-grade-button { background-image: url('./openmoji-svg-color/1F234.svg') }
+.om-japanese-vacancy-button { background-image: url('./openmoji-svg-color/1F233.svg') }
+.om-japanese-congratulations-button { background-image: url('./openmoji-svg-color/3297.svg') }
+.om-japanese-secret-button { background-image: url('./openmoji-svg-color/3299.svg') }
+.om-japanese-open-for-business-button { background-image: url('./openmoji-svg-color/1F23A.svg') }
+.om-japanese-no-vacancy-button { background-image: url('./openmoji-svg-color/1F235.svg') }
+.om-red-circle { background-image: url('./openmoji-svg-color/1F534.svg') }
+.om-orange-circle { background-image: url('./openmoji-svg-color/1F7E0.svg') }
+.om-yellow-circle { background-image: url('./openmoji-svg-color/1F7E1.svg') }
+.om-green-circle { background-image: url('./openmoji-svg-color/1F7E2.svg') }
+.om-blue-circle { background-image: url('./openmoji-svg-color/1F535.svg') }
+.om-purple-circle { background-image: url('./openmoji-svg-color/1F7E3.svg') }
+.om-brown-circle { background-image: url('./openmoji-svg-color/1F7E4.svg') }
+.om-black-circle { background-image: url('./openmoji-svg-color/26AB.svg') }
+.om-white-circle { background-image: url('./openmoji-svg-color/26AA.svg') }
+.om-red-square { background-image: url('./openmoji-svg-color/1F7E5.svg') }
+.om-orange-square { background-image: url('./openmoji-svg-color/1F7E7.svg') }
+.om-yellow-square { background-image: url('./openmoji-svg-color/1F7E8.svg') }
+.om-green-square { background-image: url('./openmoji-svg-color/1F7E9.svg') }
+.om-blue-square { background-image: url('./openmoji-svg-color/1F7E6.svg') }
+.om-purple-square { background-image: url('./openmoji-svg-color/1F7EA.svg') }
+.om-brown-square { background-image: url('./openmoji-svg-color/1F7EB.svg') }
+.om-black-large-square { background-image: url('./openmoji-svg-color/2B1B.svg') }
+.om-white-large-square { background-image: url('./openmoji-svg-color/2B1C.svg') }
+.om-black-medium-square { background-image: url('./openmoji-svg-color/25FC.svg') }
+.om-white-medium-square { background-image: url('./openmoji-svg-color/25FB.svg') }
+.om-black-medium-small-square { background-image: url('./openmoji-svg-color/25FE.svg') }
+.om-white-medium-small-square { background-image: url('./openmoji-svg-color/25FD.svg') }
+.om-black-small-square { background-image: url('./openmoji-svg-color/25AA.svg') }
+.om-white-small-square { background-image: url('./openmoji-svg-color/25AB.svg') }
+.om-large-orange-diamond { background-image: url('./openmoji-svg-color/1F536.svg') }
+.om-large-blue-diamond { background-image: url('./openmoji-svg-color/1F537.svg') }
+.om-small-orange-diamond { background-image: url('./openmoji-svg-color/1F538.svg') }
+.om-small-blue-diamond { background-image: url('./openmoji-svg-color/1F539.svg') }
+.om-red-triangle-pointed-up { background-image: url('./openmoji-svg-color/1F53A.svg') }
+.om-red-triangle-pointed-down { background-image: url('./openmoji-svg-color/1F53B.svg') }
+.om-diamond-with-a-dot { background-image: url('./openmoji-svg-color/1F4A0.svg') }
+.om-radio-button { background-image: url('./openmoji-svg-color/1F518.svg') }
+.om-white-square-button { background-image: url('./openmoji-svg-color/1F533.svg') }
+.om-black-square-button { background-image: url('./openmoji-svg-color/1F532.svg') }
+.om-chequered-flag { background-image: url('./openmoji-svg-color/1F3C1.svg') }
+.om-triangular-flag { background-image: url('./openmoji-svg-color/1F6A9.svg') }
+.om-crossed-flags { background-image: url('./openmoji-svg-color/1F38C.svg') }
+.om-black-flag { background-image: url('./openmoji-svg-color/1F3F4.svg') }
+.om-white-flag { background-image: url('./openmoji-svg-color/1F3F3.svg') }
+.om-rainbow-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F308.svg') }
+.om-transgender-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-26A7-FE0F.svg') }
+.om-pirate-flag { background-image: url('./openmoji-svg-color/1F3F4-200D-2620-FE0F.svg') }
+.om-flag-ascension-island { background-image: url('./openmoji-svg-color/1F1E6-1F1E8.svg') }
+.om-flag-andorra { background-image: url('./openmoji-svg-color/1F1E6-1F1E9.svg') }
+.om-flag-united-arab-emirates { background-image: url('./openmoji-svg-color/1F1E6-1F1EA.svg') }
+.om-flag-afghanistan { background-image: url('./openmoji-svg-color/1F1E6-1F1EB.svg') }
+.om-flag-antigua-barbuda { background-image: url('./openmoji-svg-color/1F1E6-1F1EC.svg') }
+.om-flag-anguilla { background-image: url('./openmoji-svg-color/1F1E6-1F1EE.svg') }
+.om-flag-albania { background-image: url('./openmoji-svg-color/1F1E6-1F1F1.svg') }
+.om-flag-armenia { background-image: url('./openmoji-svg-color/1F1E6-1F1F2.svg') }
+.om-flag-angola { background-image: url('./openmoji-svg-color/1F1E6-1F1F4.svg') }
+.om-flag-antarctica { background-image: url('./openmoji-svg-color/1F1E6-1F1F6.svg') }
+.om-flag-argentina { background-image: url('./openmoji-svg-color/1F1E6-1F1F7.svg') }
+.om-flag-american-samoa { background-image: url('./openmoji-svg-color/1F1E6-1F1F8.svg') }
+.om-flag-austria { background-image: url('./openmoji-svg-color/1F1E6-1F1F9.svg') }
+.om-flag-australia { background-image: url('./openmoji-svg-color/1F1E6-1F1FA.svg') }
+.om-flag-aruba { background-image: url('./openmoji-svg-color/1F1E6-1F1FC.svg') }
+.om-flag-åland-islands { background-image: url('./openmoji-svg-color/1F1E6-1F1FD.svg') }
+.om-flag-azerbaijan { background-image: url('./openmoji-svg-color/1F1E6-1F1FF.svg') }
+.om-flag-bosnia-herzegovina { background-image: url('./openmoji-svg-color/1F1E7-1F1E6.svg') }
+.om-flag-barbados { background-image: url('./openmoji-svg-color/1F1E7-1F1E7.svg') }
+.om-flag-bangladesh { background-image: url('./openmoji-svg-color/1F1E7-1F1E9.svg') }
+.om-flag-belgium { background-image: url('./openmoji-svg-color/1F1E7-1F1EA.svg') }
+.om-flag-burkina-faso { background-image: url('./openmoji-svg-color/1F1E7-1F1EB.svg') }
+.om-flag-bulgaria { background-image: url('./openmoji-svg-color/1F1E7-1F1EC.svg') }
+.om-flag-bahrain { background-image: url('./openmoji-svg-color/1F1E7-1F1ED.svg') }
+.om-flag-burundi { background-image: url('./openmoji-svg-color/1F1E7-1F1EE.svg') }
+.om-flag-benin { background-image: url('./openmoji-svg-color/1F1E7-1F1EF.svg') }
+.om-flag-st-barthélemy { background-image: url('./openmoji-svg-color/1F1E7-1F1F1.svg') }
+.om-flag-bermuda { background-image: url('./openmoji-svg-color/1F1E7-1F1F2.svg') }
+.om-flag-brunei { background-image: url('./openmoji-svg-color/1F1E7-1F1F3.svg') }
+.om-flag-bolivia { background-image: url('./openmoji-svg-color/1F1E7-1F1F4.svg') }
+.om-flag-caribbean-netherlands { background-image: url('./openmoji-svg-color/1F1E7-1F1F6.svg') }
+.om-flag-brazil { background-image: url('./openmoji-svg-color/1F1E7-1F1F7.svg') }
+.om-flag-bahamas { background-image: url('./openmoji-svg-color/1F1E7-1F1F8.svg') }
+.om-flag-bhutan { background-image: url('./openmoji-svg-color/1F1E7-1F1F9.svg') }
+.om-flag-bouvet-island { background-image: url('./openmoji-svg-color/1F1E7-1F1FB.svg') }
+.om-flag-botswana { background-image: url('./openmoji-svg-color/1F1E7-1F1FC.svg') }
+.om-flag-belarus { background-image: url('./openmoji-svg-color/1F1E7-1F1FE.svg') }
+.om-flag-belize { background-image: url('./openmoji-svg-color/1F1E7-1F1FF.svg') }
+.om-flag-canada { background-image: url('./openmoji-svg-color/1F1E8-1F1E6.svg') }
+.om-flag-cocos-keeling-islands { background-image: url('./openmoji-svg-color/1F1E8-1F1E8.svg') }
+.om-flag-congo-kinshasa { background-image: url('./openmoji-svg-color/1F1E8-1F1E9.svg') }
+.om-flag-central-african-republic { background-image: url('./openmoji-svg-color/1F1E8-1F1EB.svg') }
+.om-flag-congo-brazzaville { background-image: url('./openmoji-svg-color/1F1E8-1F1EC.svg') }
+.om-flag-switzerland { background-image: url('./openmoji-svg-color/1F1E8-1F1ED.svg') }
+.om-flag-côte-d-ivoire { background-image: url('./openmoji-svg-color/1F1E8-1F1EE.svg') }
+.om-flag-cook-islands { background-image: url('./openmoji-svg-color/1F1E8-1F1F0.svg') }
+.om-flag-chile { background-image: url('./openmoji-svg-color/1F1E8-1F1F1.svg') }
+.om-flag-cameroon { background-image: url('./openmoji-svg-color/1F1E8-1F1F2.svg') }
+.om-flag-china { background-image: url('./openmoji-svg-color/1F1E8-1F1F3.svg') }
+.om-flag-colombia { background-image: url('./openmoji-svg-color/1F1E8-1F1F4.svg') }
+.om-flag-clipperton-island { background-image: url('./openmoji-svg-color/1F1E8-1F1F5.svg') }
+.om-flag-sark { background-image: url('./openmoji-svg-color/1F1E8-1F1F6.svg') }
+.om-flag-costa-rica { background-image: url('./openmoji-svg-color/1F1E8-1F1F7.svg') }
+.om-flag-cuba { background-image: url('./openmoji-svg-color/1F1E8-1F1FA.svg') }
+.om-flag-cape-verde { background-image: url('./openmoji-svg-color/1F1E8-1F1FB.svg') }
+.om-flag-curaçao { background-image: url('./openmoji-svg-color/1F1E8-1F1FC.svg') }
+.om-flag-christmas-island { background-image: url('./openmoji-svg-color/1F1E8-1F1FD.svg') }
+.om-flag-cyprus { background-image: url('./openmoji-svg-color/1F1E8-1F1FE.svg') }
+.om-flag-czechia { background-image: url('./openmoji-svg-color/1F1E8-1F1FF.svg') }
+.om-flag-germany { background-image: url('./openmoji-svg-color/1F1E9-1F1EA.svg') }
+.om-flag-diego-garcia { background-image: url('./openmoji-svg-color/1F1E9-1F1EC.svg') }
+.om-flag-djibouti { background-image: url('./openmoji-svg-color/1F1E9-1F1EF.svg') }
+.om-flag-denmark { background-image: url('./openmoji-svg-color/1F1E9-1F1F0.svg') }
+.om-flag-dominica { background-image: url('./openmoji-svg-color/1F1E9-1F1F2.svg') }
+.om-flag-dominican-republic { background-image: url('./openmoji-svg-color/1F1E9-1F1F4.svg') }
+.om-flag-algeria { background-image: url('./openmoji-svg-color/1F1E9-1F1FF.svg') }
+.om-flag-ceuta-melilla { background-image: url('./openmoji-svg-color/1F1EA-1F1E6.svg') }
+.om-flag-ecuador { background-image: url('./openmoji-svg-color/1F1EA-1F1E8.svg') }
+.om-flag-estonia { background-image: url('./openmoji-svg-color/1F1EA-1F1EA.svg') }
+.om-flag-egypt { background-image: url('./openmoji-svg-color/1F1EA-1F1EC.svg') }
+.om-flag-western-sahara { background-image: url('./openmoji-svg-color/1F1EA-1F1ED.svg') }
+.om-flag-eritrea { background-image: url('./openmoji-svg-color/1F1EA-1F1F7.svg') }
+.om-flag-spain { background-image: url('./openmoji-svg-color/1F1EA-1F1F8.svg') }
+.om-flag-ethiopia { background-image: url('./openmoji-svg-color/1F1EA-1F1F9.svg') }
+.om-flag-european-union { background-image: url('./openmoji-svg-color/1F1EA-1F1FA.svg') }
+.om-flag-finland { background-image: url('./openmoji-svg-color/1F1EB-1F1EE.svg') }
+.om-flag-fiji { background-image: url('./openmoji-svg-color/1F1EB-1F1EF.svg') }
+.om-flag-falkland-islands { background-image: url('./openmoji-svg-color/1F1EB-1F1F0.svg') }
+.om-flag-micronesia { background-image: url('./openmoji-svg-color/1F1EB-1F1F2.svg') }
+.om-flag-faroe-islands { background-image: url('./openmoji-svg-color/1F1EB-1F1F4.svg') }
+.om-flag-france { background-image: url('./openmoji-svg-color/1F1EB-1F1F7.svg') }
+.om-flag-gabon { background-image: url('./openmoji-svg-color/1F1EC-1F1E6.svg') }
+.om-flag-united-kingdom { background-image: url('./openmoji-svg-color/1F1EC-1F1E7.svg') }
+.om-flag-grenada { background-image: url('./openmoji-svg-color/1F1EC-1F1E9.svg') }
+.om-flag-georgia { background-image: url('./openmoji-svg-color/1F1EC-1F1EA.svg') }
+.om-flag-french-guiana { background-image: url('./openmoji-svg-color/1F1EC-1F1EB.svg') }
+.om-flag-guernsey { background-image: url('./openmoji-svg-color/1F1EC-1F1EC.svg') }
+.om-flag-ghana { background-image: url('./openmoji-svg-color/1F1EC-1F1ED.svg') }
+.om-flag-gibraltar { background-image: url('./openmoji-svg-color/1F1EC-1F1EE.svg') }
+.om-flag-greenland { background-image: url('./openmoji-svg-color/1F1EC-1F1F1.svg') }
+.om-flag-gambia { background-image: url('./openmoji-svg-color/1F1EC-1F1F2.svg') }
+.om-flag-guinea { background-image: url('./openmoji-svg-color/1F1EC-1F1F3.svg') }
+.om-flag-guadeloupe { background-image: url('./openmoji-svg-color/1F1EC-1F1F5.svg') }
+.om-flag-equatorial-guinea { background-image: url('./openmoji-svg-color/1F1EC-1F1F6.svg') }
+.om-flag-greece { background-image: url('./openmoji-svg-color/1F1EC-1F1F7.svg') }
+.om-flag-south-georgia-south-sandwich-islands { background-image: url('./openmoji-svg-color/1F1EC-1F1F8.svg') }
+.om-flag-guatemala { background-image: url('./openmoji-svg-color/1F1EC-1F1F9.svg') }
+.om-flag-guam { background-image: url('./openmoji-svg-color/1F1EC-1F1FA.svg') }
+.om-flag-guinea-bissau { background-image: url('./openmoji-svg-color/1F1EC-1F1FC.svg') }
+.om-flag-guyana { background-image: url('./openmoji-svg-color/1F1EC-1F1FE.svg') }
+.om-flag-hong-kong-sar-china { background-image: url('./openmoji-svg-color/1F1ED-1F1F0.svg') }
+.om-flag-heard-mc-donald-islands { background-image: url('./openmoji-svg-color/1F1ED-1F1F2.svg') }
+.om-flag-honduras { background-image: url('./openmoji-svg-color/1F1ED-1F1F3.svg') }
+.om-flag-croatia { background-image: url('./openmoji-svg-color/1F1ED-1F1F7.svg') }
+.om-flag-haiti { background-image: url('./openmoji-svg-color/1F1ED-1F1F9.svg') }
+.om-flag-hungary { background-image: url('./openmoji-svg-color/1F1ED-1F1FA.svg') }
+.om-flag-canary-islands { background-image: url('./openmoji-svg-color/1F1EE-1F1E8.svg') }
+.om-flag-indonesia { background-image: url('./openmoji-svg-color/1F1EE-1F1E9.svg') }
+.om-flag-ireland { background-image: url('./openmoji-svg-color/1F1EE-1F1EA.svg') }
+.om-flag-israel { background-image: url('./openmoji-svg-color/1F1EE-1F1F1.svg') }
+.om-flag-isle-of-man { background-image: url('./openmoji-svg-color/1F1EE-1F1F2.svg') }
+.om-flag-india { background-image: url('./openmoji-svg-color/1F1EE-1F1F3.svg') }
+.om-flag-british-indian-ocean-territory { background-image: url('./openmoji-svg-color/1F1EE-1F1F4.svg') }
+.om-flag-iraq { background-image: url('./openmoji-svg-color/1F1EE-1F1F6.svg') }
+.om-flag-iran { background-image: url('./openmoji-svg-color/1F1EE-1F1F7.svg') }
+.om-flag-iceland { background-image: url('./openmoji-svg-color/1F1EE-1F1F8.svg') }
+.om-flag-italy { background-image: url('./openmoji-svg-color/1F1EE-1F1F9.svg') }
+.om-flag-jersey { background-image: url('./openmoji-svg-color/1F1EF-1F1EA.svg') }
+.om-flag-jamaica { background-image: url('./openmoji-svg-color/1F1EF-1F1F2.svg') }
+.om-flag-jordan { background-image: url('./openmoji-svg-color/1F1EF-1F1F4.svg') }
+.om-flag-japan { background-image: url('./openmoji-svg-color/1F1EF-1F1F5.svg') }
+.om-flag-kenya { background-image: url('./openmoji-svg-color/1F1F0-1F1EA.svg') }
+.om-flag-kyrgyzstan { background-image: url('./openmoji-svg-color/1F1F0-1F1EC.svg') }
+.om-flag-cambodia { background-image: url('./openmoji-svg-color/1F1F0-1F1ED.svg') }
+.om-flag-kiribati { background-image: url('./openmoji-svg-color/1F1F0-1F1EE.svg') }
+.om-flag-comoros { background-image: url('./openmoji-svg-color/1F1F0-1F1F2.svg') }
+.om-flag-st-kitts-nevis { background-image: url('./openmoji-svg-color/1F1F0-1F1F3.svg') }
+.om-flag-north-korea { background-image: url('./openmoji-svg-color/1F1F0-1F1F5.svg') }
+.om-flag-south-korea { background-image: url('./openmoji-svg-color/1F1F0-1F1F7.svg') }
+.om-flag-kuwait { background-image: url('./openmoji-svg-color/1F1F0-1F1FC.svg') }
+.om-flag-cayman-islands { background-image: url('./openmoji-svg-color/1F1F0-1F1FE.svg') }
+.om-flag-kazakhstan { background-image: url('./openmoji-svg-color/1F1F0-1F1FF.svg') }
+.om-flag-laos { background-image: url('./openmoji-svg-color/1F1F1-1F1E6.svg') }
+.om-flag-lebanon { background-image: url('./openmoji-svg-color/1F1F1-1F1E7.svg') }
+.om-flag-st-lucia { background-image: url('./openmoji-svg-color/1F1F1-1F1E8.svg') }
+.om-flag-liechtenstein { background-image: url('./openmoji-svg-color/1F1F1-1F1EE.svg') }
+.om-flag-sri-lanka { background-image: url('./openmoji-svg-color/1F1F1-1F1F0.svg') }
+.om-flag-liberia { background-image: url('./openmoji-svg-color/1F1F1-1F1F7.svg') }
+.om-flag-lesotho { background-image: url('./openmoji-svg-color/1F1F1-1F1F8.svg') }
+.om-flag-lithuania { background-image: url('./openmoji-svg-color/1F1F1-1F1F9.svg') }
+.om-flag-luxembourg { background-image: url('./openmoji-svg-color/1F1F1-1F1FA.svg') }
+.om-flag-latvia { background-image: url('./openmoji-svg-color/1F1F1-1F1FB.svg') }
+.om-flag-libya { background-image: url('./openmoji-svg-color/1F1F1-1F1FE.svg') }
+.om-flag-morocco { background-image: url('./openmoji-svg-color/1F1F2-1F1E6.svg') }
+.om-flag-monaco { background-image: url('./openmoji-svg-color/1F1F2-1F1E8.svg') }
+.om-flag-moldova { background-image: url('./openmoji-svg-color/1F1F2-1F1E9.svg') }
+.om-flag-montenegro { background-image: url('./openmoji-svg-color/1F1F2-1F1EA.svg') }
+.om-flag-st-martin { background-image: url('./openmoji-svg-color/1F1F2-1F1EB.svg') }
+.om-flag-madagascar { background-image: url('./openmoji-svg-color/1F1F2-1F1EC.svg') }
+.om-flag-marshall-islands { background-image: url('./openmoji-svg-color/1F1F2-1F1ED.svg') }
+.om-flag-north-macedonia { background-image: url('./openmoji-svg-color/1F1F2-1F1F0.svg') }
+.om-flag-mali { background-image: url('./openmoji-svg-color/1F1F2-1F1F1.svg') }
+.om-flag-myanmar-burma { background-image: url('./openmoji-svg-color/1F1F2-1F1F2.svg') }
+.om-flag-mongolia { background-image: url('./openmoji-svg-color/1F1F2-1F1F3.svg') }
+.om-flag-macao-sar-china { background-image: url('./openmoji-svg-color/1F1F2-1F1F4.svg') }
+.om-flag-northern-mariana-islands { background-image: url('./openmoji-svg-color/1F1F2-1F1F5.svg') }
+.om-flag-martinique { background-image: url('./openmoji-svg-color/1F1F2-1F1F6.svg') }
+.om-flag-mauritania { background-image: url('./openmoji-svg-color/1F1F2-1F1F7.svg') }
+.om-flag-montserrat { background-image: url('./openmoji-svg-color/1F1F2-1F1F8.svg') }
+.om-flag-malta { background-image: url('./openmoji-svg-color/1F1F2-1F1F9.svg') }
+.om-flag-mauritius { background-image: url('./openmoji-svg-color/1F1F2-1F1FA.svg') }
+.om-flag-maldives { background-image: url('./openmoji-svg-color/1F1F2-1F1FB.svg') }
+.om-flag-malawi { background-image: url('./openmoji-svg-color/1F1F2-1F1FC.svg') }
+.om-flag-mexico { background-image: url('./openmoji-svg-color/1F1F2-1F1FD.svg') }
+.om-flag-malaysia { background-image: url('./openmoji-svg-color/1F1F2-1F1FE.svg') }
+.om-flag-mozambique { background-image: url('./openmoji-svg-color/1F1F2-1F1FF.svg') }
+.om-flag-namibia { background-image: url('./openmoji-svg-color/1F1F3-1F1E6.svg') }
+.om-flag-new-caledonia { background-image: url('./openmoji-svg-color/1F1F3-1F1E8.svg') }
+.om-flag-niger { background-image: url('./openmoji-svg-color/1F1F3-1F1EA.svg') }
+.om-flag-norfolk-island { background-image: url('./openmoji-svg-color/1F1F3-1F1EB.svg') }
+.om-flag-nigeria { background-image: url('./openmoji-svg-color/1F1F3-1F1EC.svg') }
+.om-flag-nicaragua { background-image: url('./openmoji-svg-color/1F1F3-1F1EE.svg') }
+.om-flag-netherlands { background-image: url('./openmoji-svg-color/1F1F3-1F1F1.svg') }
+.om-flag-norway { background-image: url('./openmoji-svg-color/1F1F3-1F1F4.svg') }
+.om-flag-nepal { background-image: url('./openmoji-svg-color/1F1F3-1F1F5.svg') }
+.om-flag-nauru { background-image: url('./openmoji-svg-color/1F1F3-1F1F7.svg') }
+.om-flag-niue { background-image: url('./openmoji-svg-color/1F1F3-1F1FA.svg') }
+.om-flag-new-zealand { background-image: url('./openmoji-svg-color/1F1F3-1F1FF.svg') }
+.om-flag-oman { background-image: url('./openmoji-svg-color/1F1F4-1F1F2.svg') }
+.om-flag-panama { background-image: url('./openmoji-svg-color/1F1F5-1F1E6.svg') }
+.om-flag-peru { background-image: url('./openmoji-svg-color/1F1F5-1F1EA.svg') }
+.om-flag-french-polynesia { background-image: url('./openmoji-svg-color/1F1F5-1F1EB.svg') }
+.om-flag-papua-new-guinea { background-image: url('./openmoji-svg-color/1F1F5-1F1EC.svg') }
+.om-flag-philippines { background-image: url('./openmoji-svg-color/1F1F5-1F1ED.svg') }
+.om-flag-pakistan { background-image: url('./openmoji-svg-color/1F1F5-1F1F0.svg') }
+.om-flag-poland { background-image: url('./openmoji-svg-color/1F1F5-1F1F1.svg') }
+.om-flag-st-pierre-miquelon { background-image: url('./openmoji-svg-color/1F1F5-1F1F2.svg') }
+.om-flag-pitcairn-islands { background-image: url('./openmoji-svg-color/1F1F5-1F1F3.svg') }
+.om-flag-puerto-rico { background-image: url('./openmoji-svg-color/1F1F5-1F1F7.svg') }
+.om-flag-palestinian-territories { background-image: url('./openmoji-svg-color/1F1F5-1F1F8.svg') }
+.om-flag-portugal { background-image: url('./openmoji-svg-color/1F1F5-1F1F9.svg') }
+.om-flag-palau { background-image: url('./openmoji-svg-color/1F1F5-1F1FC.svg') }
+.om-flag-paraguay { background-image: url('./openmoji-svg-color/1F1F5-1F1FE.svg') }
+.om-flag-qatar { background-image: url('./openmoji-svg-color/1F1F6-1F1E6.svg') }
+.om-flag-réunion { background-image: url('./openmoji-svg-color/1F1F7-1F1EA.svg') }
+.om-flag-romania { background-image: url('./openmoji-svg-color/1F1F7-1F1F4.svg') }
+.om-flag-serbia { background-image: url('./openmoji-svg-color/1F1F7-1F1F8.svg') }
+.om-flag-russia { background-image: url('./openmoji-svg-color/1F1F7-1F1FA.svg') }
+.om-flag-rwanda { background-image: url('./openmoji-svg-color/1F1F7-1F1FC.svg') }
+.om-flag-saudi-arabia { background-image: url('./openmoji-svg-color/1F1F8-1F1E6.svg') }
+.om-flag-solomon-islands { background-image: url('./openmoji-svg-color/1F1F8-1F1E7.svg') }
+.om-flag-seychelles { background-image: url('./openmoji-svg-color/1F1F8-1F1E8.svg') }
+.om-flag-sudan { background-image: url('./openmoji-svg-color/1F1F8-1F1E9.svg') }
+.om-flag-sweden { background-image: url('./openmoji-svg-color/1F1F8-1F1EA.svg') }
+.om-flag-singapore { background-image: url('./openmoji-svg-color/1F1F8-1F1EC.svg') }
+.om-flag-st-helena { background-image: url('./openmoji-svg-color/1F1F8-1F1ED.svg') }
+.om-flag-slovenia { background-image: url('./openmoji-svg-color/1F1F8-1F1EE.svg') }
+.om-flag-svalbard-jan-mayen { background-image: url('./openmoji-svg-color/1F1F8-1F1EF.svg') }
+.om-flag-slovakia { background-image: url('./openmoji-svg-color/1F1F8-1F1F0.svg') }
+.om-flag-sierra-leone { background-image: url('./openmoji-svg-color/1F1F8-1F1F1.svg') }
+.om-flag-san-marino { background-image: url('./openmoji-svg-color/1F1F8-1F1F2.svg') }
+.om-flag-senegal { background-image: url('./openmoji-svg-color/1F1F8-1F1F3.svg') }
+.om-flag-somalia { background-image: url('./openmoji-svg-color/1F1F8-1F1F4.svg') }
+.om-flag-suriname { background-image: url('./openmoji-svg-color/1F1F8-1F1F7.svg') }
+.om-flag-south-sudan { background-image: url('./openmoji-svg-color/1F1F8-1F1F8.svg') }
+.om-flag-são-tomé-príncipe { background-image: url('./openmoji-svg-color/1F1F8-1F1F9.svg') }
+.om-flag-el-salvador { background-image: url('./openmoji-svg-color/1F1F8-1F1FB.svg') }
+.om-flag-sint-maarten { background-image: url('./openmoji-svg-color/1F1F8-1F1FD.svg') }
+.om-flag-syria { background-image: url('./openmoji-svg-color/1F1F8-1F1FE.svg') }
+.om-flag-eswatini { background-image: url('./openmoji-svg-color/1F1F8-1F1FF.svg') }
+.om-flag-tristan-da-cunha { background-image: url('./openmoji-svg-color/1F1F9-1F1E6.svg') }
+.om-flag-turks-caicos-islands { background-image: url('./openmoji-svg-color/1F1F9-1F1E8.svg') }
+.om-flag-chad { background-image: url('./openmoji-svg-color/1F1F9-1F1E9.svg') }
+.om-flag-french-southern-territories { background-image: url('./openmoji-svg-color/1F1F9-1F1EB.svg') }
+.om-flag-togo { background-image: url('./openmoji-svg-color/1F1F9-1F1EC.svg') }
+.om-flag-thailand { background-image: url('./openmoji-svg-color/1F1F9-1F1ED.svg') }
+.om-flag-tajikistan { background-image: url('./openmoji-svg-color/1F1F9-1F1EF.svg') }
+.om-flag-tokelau { background-image: url('./openmoji-svg-color/1F1F9-1F1F0.svg') }
+.om-flag-timor-leste { background-image: url('./openmoji-svg-color/1F1F9-1F1F1.svg') }
+.om-flag-turkmenistan { background-image: url('./openmoji-svg-color/1F1F9-1F1F2.svg') }
+.om-flag-tunisia { background-image: url('./openmoji-svg-color/1F1F9-1F1F3.svg') }
+.om-flag-tonga { background-image: url('./openmoji-svg-color/1F1F9-1F1F4.svg') }
+.om-flag-türkiye { background-image: url('./openmoji-svg-color/1F1F9-1F1F7.svg') }
+.om-flag-trinidad-tobago { background-image: url('./openmoji-svg-color/1F1F9-1F1F9.svg') }
+.om-flag-tuvalu { background-image: url('./openmoji-svg-color/1F1F9-1F1FB.svg') }
+.om-flag-taiwan { background-image: url('./openmoji-svg-color/1F1F9-1F1FC.svg') }
+.om-flag-tanzania { background-image: url('./openmoji-svg-color/1F1F9-1F1FF.svg') }
+.om-flag-ukraine { background-image: url('./openmoji-svg-color/1F1FA-1F1E6.svg') }
+.om-flag-uganda { background-image: url('./openmoji-svg-color/1F1FA-1F1EC.svg') }
+.om-flag-u-s-outlying-islands { background-image: url('./openmoji-svg-color/1F1FA-1F1F2.svg') }
+.om-flag-united-nations { background-image: url('./openmoji-svg-color/1F1FA-1F1F3.svg') }
+.om-flag-united-states { background-image: url('./openmoji-svg-color/1F1FA-1F1F8.svg') }
+.om-flag-uruguay { background-image: url('./openmoji-svg-color/1F1FA-1F1FE.svg') }
+.om-flag-uzbekistan { background-image: url('./openmoji-svg-color/1F1FA-1F1FF.svg') }
+.om-flag-vatican-city { background-image: url('./openmoji-svg-color/1F1FB-1F1E6.svg') }
+.om-flag-st-vincent-grenadines { background-image: url('./openmoji-svg-color/1F1FB-1F1E8.svg') }
+.om-flag-venezuela { background-image: url('./openmoji-svg-color/1F1FB-1F1EA.svg') }
+.om-flag-british-virgin-islands { background-image: url('./openmoji-svg-color/1F1FB-1F1EC.svg') }
+.om-flag-u-s-virgin-islands { background-image: url('./openmoji-svg-color/1F1FB-1F1EE.svg') }
+.om-flag-vietnam { background-image: url('./openmoji-svg-color/1F1FB-1F1F3.svg') }
+.om-flag-vanuatu { background-image: url('./openmoji-svg-color/1F1FB-1F1FA.svg') }
+.om-flag-wallis-futuna { background-image: url('./openmoji-svg-color/1F1FC-1F1EB.svg') }
+.om-flag-samoa { background-image: url('./openmoji-svg-color/1F1FC-1F1F8.svg') }
+.om-flag-kosovo { background-image: url('./openmoji-svg-color/1F1FD-1F1F0.svg') }
+.om-flag-yemen { background-image: url('./openmoji-svg-color/1F1FE-1F1EA.svg') }
+.om-flag-mayotte { background-image: url('./openmoji-svg-color/1F1FE-1F1F9.svg') }
+.om-flag-south-africa { background-image: url('./openmoji-svg-color/1F1FF-1F1E6.svg') }
+.om-flag-zambia { background-image: url('./openmoji-svg-color/1F1FF-1F1F2.svg') }
+.om-flag-zimbabwe { background-image: url('./openmoji-svg-color/1F1FF-1F1FC.svg') }
+.om-flag-england { background-image: url('./openmoji-svg-color/1F3F4-E0067-E0062-E0065-E006E-E0067-E007F.svg') }
+.om-flag-scotland { background-image: url('./openmoji-svg-color/1F3F4-E0067-E0062-E0073-E0063-E0074-E007F.svg') }
+.om-flag-wales { background-image: url('./openmoji-svg-color/1F3F4-E0067-E0062-E0077-E006C-E0073-E007F.svg') }
+.om-goldfish { background-image: url('./openmoji-svg-color/E000.svg') }
+.om-donkey { background-image: url('./openmoji-svg-color/E001.svg') }
+.om-poppy { background-image: url('./openmoji-svg-color/E002.svg') }
+.om-doe { background-image: url('./openmoji-svg-color/E003.svg') }
+.om-spouting-orca { background-image: url('./openmoji-svg-color/E004.svg') }
+.om-orca { background-image: url('./openmoji-svg-color/E005.svg') }
+.om-narwhal { background-image: url('./openmoji-svg-color/E006.svg') }
+.om-beluga { background-image: url('./openmoji-svg-color/E007.svg') }
+.om-porpoise { background-image: url('./openmoji-svg-color/E008.svg') }
+.om-pigeon { background-image: url('./openmoji-svg-color/E009.svg') }
+.om-macaw { background-image: url('./openmoji-svg-color/E010.svg') }
+.om-microbe { background-image: url('./openmoji-svg-color/E011.svg') }
+.om-twitter { background-image: url('./openmoji-svg-color/E040.svg') }
+.om-pinterest { background-image: url('./openmoji-svg-color/E041.svg') }
+.om-facebook { background-image: url('./openmoji-svg-color/E042.svg') }
+.om-instagram { background-image: url('./openmoji-svg-color/E043.svg') }
+.om-youtube { background-image: url('./openmoji-svg-color/E044.svg') }
+.om-github { background-image: url('./openmoji-svg-color/E045.svg') }
+.om-linkedin { background-image: url('./openmoji-svg-color/E046.svg') }
+.om-android { background-image: url('./openmoji-svg-color/E047.svg') }
+.om-musicbrainz { background-image: url('./openmoji-svg-color/E048.svg') }
+.om-openfoodfact { background-image: url('./openmoji-svg-color/E049.svg') }
+.om-openstreetmap { background-image: url('./openmoji-svg-color/E04A.svg') }
+.om-wikidata { background-image: url('./openmoji-svg-color/E04B.svg') }
+.om-dotnet { background-image: url('./openmoji-svg-color/E04C.svg') }
+.om-golang { background-image: url('./openmoji-svg-color/E04D.svg') }
+.om-kotlin { background-image: url('./openmoji-svg-color/E04E.svg') }
+.om-ruby { background-image: url('./openmoji-svg-color/E04F.svg') }
+.om-firefox { background-image: url('./openmoji-svg-color/E050.svg') }
+.om-safari { background-image: url('./openmoji-svg-color/E051.svg') }
+.om-opera { background-image: url('./openmoji-svg-color/E052.svg') }
+.om-chromium { background-image: url('./openmoji-svg-color/E053.svg') }
+.om-chrome { background-image: url('./openmoji-svg-color/E054.svg') }
+.om-netscape-navigator { background-image: url('./openmoji-svg-color/E055.svg') }
+.om-internet-explorer { background-image: url('./openmoji-svg-color/E056.svg') }
+.om-edge { background-image: url('./openmoji-svg-color/E057.svg') }
+.om-i-naturalist { background-image: url('./openmoji-svg-color/E058.svg') }
+.om-gitlab { background-image: url('./openmoji-svg-color/E059.svg') }
+.om-mastodon { background-image: url('./openmoji-svg-color/E05A.svg') }
+.om-peertube { background-image: url('./openmoji-svg-color/E05B.svg') }
+.om-pixelfed { background-image: url('./openmoji-svg-color/E05C.svg') }
+.om-signal { background-image: url('./openmoji-svg-color/E05D.svg') }
+.om-element { background-image: url('./openmoji-svg-color/E05E.svg') }
+.om-jellyfin { background-image: url('./openmoji-svg-color/E05F.svg') }
+.om-reddit { background-image: url('./openmoji-svg-color/E060.svg') }
+.om-discord { background-image: url('./openmoji-svg-color/E061.svg') }
+.om-c { background-image: url('./openmoji-svg-color/E062.svg') }
+.om-cplusplus { background-image: url('./openmoji-svg-color/E063.svg') }
+.om-csharp { background-image: url('./openmoji-svg-color/E064.svg') }
+.om-chrome-canary { background-image: url('./openmoji-svg-color/E065.svg') }
+.om-firefox-developer { background-image: url('./openmoji-svg-color/E066.svg') }
+.om-firefox-nightly { background-image: url('./openmoji-svg-color/E067.svg') }
+.om-javascript { background-image: url('./openmoji-svg-color/E068.svg') }
+.om-typescript { background-image: url('./openmoji-svg-color/E069.svg') }
+.om-webassembly { background-image: url('./openmoji-svg-color/E06A.svg') }
+.om-svg { background-image: url('./openmoji-svg-color/E06B.svg') }
+.om-markdown { background-image: url('./openmoji-svg-color/E06C.svg') }
+.om-winrar { background-image: url('./openmoji-svg-color/E06D.svg') }
+.om-ubuntu { background-image: url('./openmoji-svg-color/E0FF.svg') }
+.om-windows { background-image: url('./openmoji-svg-color/F000.svg') }
+.om-artstation { background-image: url('./openmoji-svg-color/F77A.svg') }
+.om-apple { background-image: url('./openmoji-svg-color/F8FF.svg') }
+.om-iceberg { background-image: url('./openmoji-svg-color/E2C0.svg') }
+.om-floating-ice { background-image: url('./openmoji-svg-color/E2C1.svg') }
+.om-floating-ice-broken { background-image: url('./openmoji-svg-color/E2C2.svg') }
+.om-polar-research-station { background-image: url('./openmoji-svg-color/E2C3.svg') }
+.om-ice-core-sample { background-image: url('./openmoji-svg-color/E2C4.svg') }
+.om-ice-shelf { background-image: url('./openmoji-svg-color/E2C6.svg') }
+.om-ice-shelf-melting { background-image: url('./openmoji-svg-color/E2C7.svg') }
+.om-polar-explorer { background-image: url('./openmoji-svg-color/E2C8.svg') }
+.om-polar-explorer-man { background-image: url('./openmoji-svg-color/E2C9.svg') }
+.om-polar-explorer-woman { background-image: url('./openmoji-svg-color/E2CA.svg') }
+.om-oil-spill { background-image: url('./openmoji-svg-color/E2CB.svg') }
+.om-exhaust-gases-factory { background-image: url('./openmoji-svg-color/E2CC.svg') }
+.om-solar-energy { background-image: url('./openmoji-svg-color/E2CD.svg') }
+.om-meat-consumption { background-image: url('./openmoji-svg-color/E2CE.svg') }
+.om-exhaust-gases-car { background-image: url('./openmoji-svg-color/E2CF.svg') }
+.om-sea-level-rise { background-image: url('./openmoji-svg-color/E2D0.svg') }
+.om-wind-energy { background-image: url('./openmoji-svg-color/E2D1.svg') }
+.om-reusable-bag { background-image: url('./openmoji-svg-color/E2D2.svg') }
+.om-radioactive-waste { background-image: url('./openmoji-svg-color/E2D3.svg') }
+.om-nuclear-power-plant { background-image: url('./openmoji-svg-color/E2D4.svg') }
+.om-nuclear-power-plant-ruin { background-image: url('./openmoji-svg-color/E2D5.svg') }
+.om-geiger-counter { background-image: url('./openmoji-svg-color/E2D6.svg') }
+.om-nuclear-worker-man { background-image: url('./openmoji-svg-color/E2D7.svg') }
+.om-nuclear-worker-woman { background-image: url('./openmoji-svg-color/E2D8.svg') }
+.om-nuclear-protection { background-image: url('./openmoji-svg-color/E2D9.svg') }
+.om-atom-bomb { background-image: url('./openmoji-svg-color/E2DA.svg') }
+.om-assembly-point { background-image: url('./openmoji-svg-color/E080.svg') }
+.om-assembly-group { background-image: url('./openmoji-svg-color/E081.svg') }
+.om-authority-instruction { background-image: url('./openmoji-svg-color/E082.svg') }
+.om-help-others { background-image: url('./openmoji-svg-color/E083.svg') }
+.om-drop-cover-hold { background-image: url('./openmoji-svg-color/E084.svg') }
+.om-evacuate { background-image: url('./openmoji-svg-color/E085.svg') }
+.om-evacuate-vertical { background-image: url('./openmoji-svg-color/E086.svg') }
+.om-evacuate-downstairs { background-image: url('./openmoji-svg-color/E087.svg') }
+.om-evacuate-to-shelter { background-image: url('./openmoji-svg-color/E088.svg') }
+.om-structural-fire { background-image: url('./openmoji-svg-color/E089.svg') }
+.om-wild-fire { background-image: url('./openmoji-svg-color/E08A.svg') }
+.om-evacuate-fire { background-image: url('./openmoji-svg-color/E08B.svg') }
+.om-warning-tsunami { background-image: url('./openmoji-svg-color/E08C.svg') }
+.om-warning-volcano { background-image: url('./openmoji-svg-color/E08D.svg') }
+.om-warning-fire { background-image: url('./openmoji-svg-color/E08E.svg') }
+.om-authority { background-image: url('./openmoji-svg-color/E08F.svg') }
+.om-first-aid { background-image: url('./openmoji-svg-color/E090.svg') }
+.om-flagged-point { background-image: url('./openmoji-svg-color/E091.svg') }
+.om-flagged-building { background-image: url('./openmoji-svg-color/E092.svg') }
+.om-authority-building { background-image: url('./openmoji-svg-color/E093.svg') }
+.om-signpost { background-image: url('./openmoji-svg-color/E094.svg') }
+.om-mobile-info { background-image: url('./openmoji-svg-color/E095.svg') }
+.om-mobile-message { background-image: url('./openmoji-svg-color/E096.svg') }
+.om-charge-plug { background-image: url('./openmoji-svg-color/E097.svg') }
+.om-shelter { background-image: url('./openmoji-svg-color/E098.svg') }
+.om-volcano-eruption { background-image: url('./openmoji-svg-color/E099.svg') }
+.om-volcano-ashes { background-image: url('./openmoji-svg-color/E09A.svg') }
+.om-tsunami { background-image: url('./openmoji-svg-color/E09B.svg') }
+.om-earthquake { background-image: url('./openmoji-svg-color/E09C.svg') }
+.om-landslide { background-image: url('./openmoji-svg-color/E09D.svg') }
+.om-avalanche { background-image: url('./openmoji-svg-color/E09E.svg') }
+.om-flood { background-image: url('./openmoji-svg-color/E09F.svg') }
+.om-north { background-image: url('./openmoji-svg-color/E0A0.svg') }
+.om-transmission { background-image: url('./openmoji-svg-color/E0A1.svg') }
+.om-sos-stencil { background-image: url('./openmoji-svg-color/E0A2.svg') }
+.om-ok-stencil { background-image: url('./openmoji-svg-color/E0A3.svg') }
+.om-no-stencil { background-image: url('./openmoji-svg-color/E0A4.svg') }
+.om-warning-strip { background-image: url('./openmoji-svg-color/E0A5.svg') }
+.om-warning-strip-right { background-image: url('./openmoji-svg-color/E0A6.svg') }
+.om-arrow-turn-right { background-image: url('./openmoji-svg-color/E0A7.svg') }
+.om-emergency-exit-door { background-image: url('./openmoji-svg-color/E0A8.svg') }
+.om-location-indicator-red { background-image: url('./openmoji-svg-color/E0A9.svg') }
+.om-electric-plug-red { background-image: url('./openmoji-svg-color/E0AA.svg') }
+.om-timer { background-image: url('./openmoji-svg-color/E0AB.svg') }
+.om-person-with-medical-mask { background-image: url('./openmoji-svg-color/E0AC.svg') }
+.om-woman-with-medical-mask { background-image: url('./openmoji-svg-color/E0AC-200D-2640-FE0F.svg') }
+.om-man-with-medical-mask { background-image: url('./openmoji-svg-color/E0AC-200D-2642-FE0F.svg') }
+.om-person-sneezing-into-elbow { background-image: url('./openmoji-svg-color/E0AD.svg') }
+.om-woman-sneezing-into-elbow { background-image: url('./openmoji-svg-color/E0AD-200D-2640-FE0F.svg') }
+.om-man-sneezing-into-elbow { background-image: url('./openmoji-svg-color/E0AD-200D-2642-FE0F.svg') }
+.om-disinfect-surface { background-image: url('./openmoji-svg-color/E0AE.svg') }
+.om-quarantine { background-image: url('./openmoji-svg-color/E0AF.svg') }
+.om-social-distancing { background-image: url('./openmoji-svg-color/E0B0.svg') }
+.om-sanitizer-spray { background-image: url('./openmoji-svg-color/E0B1.svg') }
+.om-wash-hands { background-image: url('./openmoji-svg-color/E0B2.svg') }
+.om-temperature-taking { background-image: url('./openmoji-svg-color/E0B3.svg') }
+.om-medical-gloves { background-image: url('./openmoji-svg-color/E0B4.svg') }
+.om-true-south-antarctica-flag { background-image: url('./openmoji-svg-color/1F1E6-1F1F6-1F48E.svg') }
+.om-berber-flag { background-image: url('./openmoji-svg-color/1F3F3-1F7E6-1F7E9-1F7E8.svg') }
+.om-white-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F.svg') }
+.om-nail-and-gear-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F4CC-200D-2699-FE0F.svg') }
+.om-red-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7E5.svg') }
+.om-blue-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7E6.svg') }
+.om-united-federation-of-planets-flag-star-trek { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7E6-200D-1F30C.svg') }
+.om-orange-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7E7.svg') }
+.om-yellow-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7E8.svg') }
+.om-green-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7E9.svg') }
+.om-esperanto-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7E9-200D-2B50-200D-1F7E9.svg') }
+.om-purple-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7EA.svg') }
+.om-brown-flag { background-image: url('./openmoji-svg-color/1F3F3-FE0F-200D-1F7EB.svg') }
+.om-red-and-black-flag { background-image: url('./openmoji-svg-color/1F3F4-FE0F-200D-1F170-FE0F.svg') }
+.om-deep-red-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7E5.svg') }
+.om-deep-blue-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7E6.svg') }
+.om-deep-orange-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7E7.svg') }
+.om-deep-yellow-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7E8.svg') }
+.om-deep-green-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7E9.svg') }
+.om-browncoat-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7E9-200D-2605-FE0F.svg') }
+.om-deep-purple-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7EA.svg') }
+.om-deep-brown-flag { background-image: url('./openmoji-svg-color/2691-FE0F-200D-1F7EB.svg') }
+.om-half-orange-fruit { background-image: url('./openmoji-svg-color/E0C0.svg') }
+.om-maultasche { background-image: url('./openmoji-svg-color/E0C1.svg') }
+.om-lentils-with-spaetzle { background-image: url('./openmoji-svg-color/E0C2.svg') }
+.om-pretzel { background-image: url('./openmoji-svg-color/E0C3.svg') }
+.om-pomegranate { background-image: url('./openmoji-svg-color/E0C4.svg') }
+.om-latte-macchiato { background-image: url('./openmoji-svg-color/E0C5.svg') }
+.om-roasted-coffee-bean { background-image: url('./openmoji-svg-color/E0C6.svg') }
+.om-cake { background-image: url('./openmoji-svg-color/E0C7.svg') }
+.om-champignon-brown { background-image: url('./openmoji-svg-color/E0C8.svg') }
+.om-champignon-white { background-image: url('./openmoji-svg-color/E0C9.svg') }
+.om-boule-bread { background-image: url('./openmoji-svg-color/E0CA.svg') }
+.om-glass-bottle { background-image: url('./openmoji-svg-color/E0CB.svg') }
+.om-plastic-bottle { background-image: url('./openmoji-svg-color/E0CC.svg') }
+.om-gardener-man { background-image: url('./openmoji-svg-color/E340.svg') }
+.om-gardener-woman { background-image: url('./openmoji-svg-color/E341.svg') }
+.om-gardening-gloves { background-image: url('./openmoji-svg-color/E342.svg') }
+.om-lawn-mower { background-image: url('./openmoji-svg-color/E343.svg') }
+.om-wheelbarrow { background-image: url('./openmoji-svg-color/E344.svg') }
+.om-spade { background-image: url('./openmoji-svg-color/E345.svg') }
+.om-trowel { background-image: url('./openmoji-svg-color/E346.svg') }
+.om-axe { background-image: url('./openmoji-svg-color/E347.svg') }
+.om-saw { background-image: url('./openmoji-svg-color/E348.svg') }
+.om-female-doctor { background-image: url('./openmoji-svg-color/E300.svg') }
+.om-male-doctor { background-image: url('./openmoji-svg-color/E301.svg') }
+.om-female-nurse { background-image: url('./openmoji-svg-color/E302.svg') }
+.om-male-nurse { background-image: url('./openmoji-svg-color/E303.svg') }
+.om-pills { background-image: url('./openmoji-svg-color/E305.svg') }
+.om-plaster { background-image: url('./openmoji-svg-color/E306.svg') }
+.om-medication { background-image: url('./openmoji-svg-color/E307.svg') }
+.om-ecg-waves { background-image: url('./openmoji-svg-color/E308.svg') }
+.om-first-aid-bag { background-image: url('./openmoji-svg-color/E309.svg') }
+.om-patient-file { background-image: url('./openmoji-svg-color/E30A.svg') }
+.om-patient-clipboard { background-image: url('./openmoji-svg-color/E30B.svg') }
+.om-saline-drip { background-image: url('./openmoji-svg-color/E30C.svg') }
+.om-blood-transfusion { background-image: url('./openmoji-svg-color/E30D.svg') }
+.om-swab-pliers { background-image: url('./openmoji-svg-color/E30E.svg') }
+.om-hot-water-bottle { background-image: url('./openmoji-svg-color/E30F.svg') }
+.om-liver { background-image: url('./openmoji-svg-color/E312.svg') }
+.om-stomach { background-image: url('./openmoji-svg-color/E313.svg') }
+.om-large-intestine { background-image: url('./openmoji-svg-color/E314.svg') }
+.om-intestine { background-image: url('./openmoji-svg-color/E315.svg') }
+.om-kidney { background-image: url('./openmoji-svg-color/E316.svg') }
+.om-forceps { background-image: url('./openmoji-svg-color/E318.svg') }
+.om-brain { background-image: url('./openmoji-svg-color/E319.svg') }
+.om-bed-linen { background-image: url('./openmoji-svg-color/E31A.svg') }
+.om-bandage-change { background-image: url('./openmoji-svg-color/E31B.svg') }
+.om-eye-pain { background-image: url('./openmoji-svg-color/E31C.svg') }
+.om-headache { background-image: url('./openmoji-svg-color/E31D.svg') }
+.om-earache { background-image: url('./openmoji-svg-color/E31E.svg') }
+.om-fracture-leg { background-image: url('./openmoji-svg-color/E31F.svg') }
+.om-knee-pain { background-image: url('./openmoji-svg-color/E320.svg') }
+.om-backache { background-image: url('./openmoji-svg-color/E321.svg') }
+.om-joint-pain { background-image: url('./openmoji-svg-color/E322.svg') }
+.om-clinical-thermometer { background-image: url('./openmoji-svg-color/E324.svg') }
+.om-bandage-scissors { background-image: url('./openmoji-svg-color/E325.svg') }
+.om-crutches { background-image: url('./openmoji-svg-color/E326.svg') }
+.om-wheel-chair { background-image: url('./openmoji-svg-color/E327.svg') }
+.om-stretcher { background-image: url('./openmoji-svg-color/E328.svg') }
+.om-ct-scan { background-image: url('./openmoji-svg-color/E329.svg') }
+.om-scales { background-image: url('./openmoji-svg-color/E32B.svg') }
+.om-tap { background-image: url('./openmoji-svg-color/E100.svg') }
+.om-double-tap { background-image: url('./openmoji-svg-color/E101.svg') }
+.om-three-finger-operation { background-image: url('./openmoji-svg-color/E102.svg') }
+.om-move { background-image: url('./openmoji-svg-color/E103.svg') }
+.om-scroll { background-image: url('./openmoji-svg-color/E104.svg') }
+.om-swipe { background-image: url('./openmoji-svg-color/E105.svg') }
+.om-scroll-horizontal { background-image: url('./openmoji-svg-color/E106.svg') }
+.om-page-move { background-image: url('./openmoji-svg-color/E107.svg') }
+.om-swipe-left { background-image: url('./openmoji-svg-color/E108.svg') }
+.om-swipe-up { background-image: url('./openmoji-svg-color/E109.svg') }
+.om-swipe-right { background-image: url('./openmoji-svg-color/E10A.svg') }
+.om-swipe-down { background-image: url('./openmoji-svg-color/E10B.svg') }
+.om-finger-pushing-button { background-image: url('./openmoji-svg-color/E10C.svg') }
+.om-exit { background-image: url('./openmoji-svg-color/E10D.svg') }
+.om-first-aid-kit { background-image: url('./openmoji-svg-color/E140.svg') }
+.om-armchair { background-image: url('./openmoji-svg-color/E141.svg') }
+.om-picture { background-image: url('./openmoji-svg-color/E142.svg') }
+.om-lighter { background-image: url('./openmoji-svg-color/E143.svg') }
+.om-outlet { background-image: url('./openmoji-svg-color/E144.svg') }
+.om-guy-fawkes-mask { background-image: url('./openmoji-svg-color/E145.svg') }
+.om-spätzlepresse { background-image: url('./openmoji-svg-color/E146.svg') }
+.om-european-name-badge { background-image: url('./openmoji-svg-color/E147.svg') }
+.om-kehrwoche { background-image: url('./openmoji-svg-color/E148.svg') }
+.om-tardis { background-image: url('./openmoji-svg-color/E149.svg') }
+.om-motorbike-helmet { background-image: url('./openmoji-svg-color/E14A.svg') }
+.om-espresso-machine { background-image: url('./openmoji-svg-color/E150.svg') }
+.om-french-press { background-image: url('./openmoji-svg-color/E151.svg') }
+.om-moka-pot { background-image: url('./openmoji-svg-color/E152.svg') }
+.om-milk-jug { background-image: url('./openmoji-svg-color/E153.svg') }
+.om-electric-coffee-percolator { background-image: url('./openmoji-svg-color/E154.svg') }
+.om-drip-coffee-maker { background-image: url('./openmoji-svg-color/E155.svg') }
+.om-coffee-grinder { background-image: url('./openmoji-svg-color/E156.svg') }
+.om-horse-jumping-hurdle { background-image: url('./openmoji-svg-color/E157.svg') }
+.om-dj-man { background-image: url('./openmoji-svg-color/1F468-200D-1FAA9.svg') }
+.om-dj-woman { background-image: url('./openmoji-svg-color/1F469-200D-1FAA9.svg') }
+.om-dj { background-image: url('./openmoji-svg-color/1F9D1-200D-1FAA9.svg') }
+.om-drunk-person { background-image: url('./openmoji-svg-color/E181.svg') }
+.om-person-with-dog { background-image: url('./openmoji-svg-color/E182.svg') }
+.om-trump { background-image: url('./openmoji-svg-color/E183.svg') }
+.om-horse-riding { background-image: url('./openmoji-svg-color/E184.svg') }
+.om-barista { background-image: url('./openmoji-svg-color/E185.svg') }
+.om-man-barista { background-image: url('./openmoji-svg-color/E186.svg') }
+.om-woman-barista { background-image: url('./openmoji-svg-color/E187.svg') }
+.om-greta-thunberg { background-image: url('./openmoji-svg-color/E188.svg') }
+.om-windsurfing { background-image: url('./openmoji-svg-color/E189.svg') }
+.om-exhausted-face { background-image: url('./openmoji-svg-color/E280.svg') }
+.om-incredulous-face { background-image: url('./openmoji-svg-color/E281.svg') }
+.om-dejected-face { background-image: url('./openmoji-svg-color/E282.svg') }
+.om-annoyed-face-with-tongue { background-image: url('./openmoji-svg-color/E283.svg') }
+.om-stick-figure-with-dress-and-arms-raised { background-image: url('./openmoji-svg-color/1FBC6-200D-1F457.svg') }
+.om-stick-figure-with-dress-leaning-left { background-image: url('./openmoji-svg-color/1FBC7-200D-1F457.svg') }
+.om-stick-figure-with-dress-leaning-right { background-image: url('./openmoji-svg-color/1FBC8-200D-1F457.svg') }
+.om-rainbow-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F308.svg') }
+.om-red-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F7E5.svg') }
+.om-blue-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F7E6.svg') }
+.om-orange-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F7E7.svg') }
+.om-yellow-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F7E8.svg') }
+.om-green-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F7E9.svg') }
+.om-purple-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F7EA.svg') }
+.om-brown-hexagon { background-image: url('./openmoji-svg-color/2B21-FE0F-200D-1F7EB.svg') }
+.om-no-handshaking { background-image: url('./openmoji-svg-color/E380.svg') }
+.om-web-syndication { background-image: url('./openmoji-svg-color/E381.svg') }
+.om-red-eye { background-image: url('./openmoji-svg-color/25C9-FE0F-200D-1F534.svg') }
+.om-hal-9000 { background-image: url('./openmoji-svg-color/25C9-FE0F-200D-1F534-200D-25AE-FE0F.svg') }
+.om-wireframes { background-image: url('./openmoji-svg-color/E1C0.svg') }
+.om-code-editor { background-image: url('./openmoji-svg-color/E1C1.svg') }
+.om-autonomous-car { background-image: url('./openmoji-svg-color/E1C2.svg') }
+.om-switch { background-image: url('./openmoji-svg-color/E1C3.svg') }
+.om-surveillance { background-image: url('./openmoji-svg-color/E1C4.svg') }
+.om-augmented-reality { background-image: url('./openmoji-svg-color/E1C6.svg') }
+.om-led { background-image: url('./openmoji-svg-color/E1C7.svg') }
+.om-motor { background-image: url('./openmoji-svg-color/E1C8.svg') }
+.om-raspberry-pi { background-image: url('./openmoji-svg-color/E1C9.svg') }
+.om-virtual-reality { background-image: url('./openmoji-svg-color/E1CA.svg') }
+.om-cable { background-image: url('./openmoji-svg-color/E1CB.svg') }
+.om-tablet { background-image: url('./openmoji-svg-color/E1CC.svg') }
+.om-gps { background-image: url('./openmoji-svg-color/E1CD.svg') }
+.om-smartwatch { background-image: url('./openmoji-svg-color/E1CE.svg') }
+.om-washing-machine { background-image: url('./openmoji-svg-color/E1CF.svg') }
+.om-ibeacon { background-image: url('./openmoji-svg-color/E1D0.svg') }
+.om-keyboard { background-image: url('./openmoji-svg-color/E1D1.svg') }
+.om-drone { background-image: url('./openmoji-svg-color/E1D2.svg') }
+.om-arduino { background-image: url('./openmoji-svg-color/E1D3.svg') }
+.om-wire { background-image: url('./openmoji-svg-color/E1D4.svg') }
+.om-potentiometer { background-image: url('./openmoji-svg-color/E1D5.svg') }
+.om-solar-cell { background-image: url('./openmoji-svg-color/E1D6.svg') }
+.om-circuit { background-image: url('./openmoji-svg-color/E1D7.svg') }
+.om-qr-code { background-image: url('./openmoji-svg-color/E1D8.svg') }
+.om-barcode { background-image: url('./openmoji-svg-color/E1D9.svg') }
+.om-cafeteria { background-image: url('./openmoji-svg-color/E200.svg') }
+.om-emergency-exit { background-image: url('./openmoji-svg-color/E201.svg') }
+.om-stairway { background-image: url('./openmoji-svg-color/E202.svg') }
+.om-town { background-image: url('./openmoji-svg-color/E203.svg') }
+.om-elevator { background-image: url('./openmoji-svg-color/E204.svg') }
+.om-eiffel-tower { background-image: url('./openmoji-svg-color/E205.svg') }
+.om-parking-garage { background-image: url('./openmoji-svg-color/E206.svg') }
+.om-schwäbisch-gmünd-forum-gold-und-silber { background-image: url('./openmoji-svg-color/E207.svg') }
+.om-schwäbisch-gmünd-fünfknopfturm { background-image: url('./openmoji-svg-color/E208.svg') }
+.om-schwäbisch-gmünd-ratshaus { background-image: url('./openmoji-svg-color/E209.svg') }
+.om-stuttgart-fernsehturm { background-image: url('./openmoji-svg-color/E20A.svg') }
+.om-space-shuttle { background-image: url('./openmoji-svg-color/E20B.svg') }
+.om-viennese-coffee-house { background-image: url('./openmoji-svg-color/E20C.svg') }
+.om-black-hole { background-image: url('./openmoji-svg-color/E20D.svg') }
+.om-foggy-mountain { background-image: url('./openmoji-svg-color/E20E.svg') }
+.om-great-pyramid-of-giza { background-image: url('./openmoji-svg-color/E20F.svg') }
+.om-colossus-of-rhodes { background-image: url('./openmoji-svg-color/E210.svg') }
+.om-hanging-gardens-of-babylon { background-image: url('./openmoji-svg-color/E211.svg') }
+.om-lighthouse-of-alexandria { background-image: url('./openmoji-svg-color/E212.svg') }
+.om-mausoleum-at-halicarnassus { background-image: url('./openmoji-svg-color/E213.svg') }
+.om-statue-of-zeus-at-olympia { background-image: url('./openmoji-svg-color/E214.svg') }
+.om-temple-of-artemis-at-ephesus { background-image: url('./openmoji-svg-color/E215.svg') }
+.om-moai { background-image: url('./openmoji-svg-color/E216.svg') }
+.om-mark { background-image: url('./openmoji-svg-color/E240.svg') }
+.om-toggle-button { background-image: url('./openmoji-svg-color/E241.svg') }
+.om-location-indicator { background-image: url('./openmoji-svg-color/E242.svg') }
+.om-scale { background-image: url('./openmoji-svg-color/E243.svg') }
+.om-locomotion { background-image: url('./openmoji-svg-color/E244.svg') }
+.om-toggle-button-state-b { background-image: url('./openmoji-svg-color/E245.svg') }
+.om-people-dialogue { background-image: url('./openmoji-svg-color/E246.svg') }
+.om-safety { background-image: url('./openmoji-svg-color/E247.svg') }
+.om-chats { background-image: url('./openmoji-svg-color/E248.svg') }
+.om-collaboration { background-image: url('./openmoji-svg-color/E249.svg') }
+.om-interview { background-image: url('./openmoji-svg-color/E24A.svg') }
+.om-intricate { background-image: url('./openmoji-svg-color/E24B.svg') }
+.om-simple { background-image: url('./openmoji-svg-color/E24C.svg') }
+.om-return { background-image: url('./openmoji-svg-color/E24D.svg') }
+.om-close { background-image: url('./openmoji-svg-color/E24E.svg') }
+.om-forward { background-image: url('./openmoji-svg-color/E24F.svg') }
+.om-hamburger-menu { background-image: url('./openmoji-svg-color/E250.svg') }
+.om-upload { background-image: url('./openmoji-svg-color/E251.svg') }
+.om-download { background-image: url('./openmoji-svg-color/E252.svg') }
+.om-share { background-image: url('./openmoji-svg-color/E253.svg') }
+.om-wifi { background-image: url('./openmoji-svg-color/E254.svg') }
+.om-copy { background-image: url('./openmoji-svg-color/E255.svg') }
+.om-contacts { background-image: url('./openmoji-svg-color/E256.svg') }
+.om-filter { background-image: url('./openmoji-svg-color/E257.svg') }
+.om-cursor { background-image: url('./openmoji-svg-color/E258.svg') }
+.om-details { background-image: url('./openmoji-svg-color/E259.svg') }
+.om-hold { background-image: url('./openmoji-svg-color/E25A.svg') }
+.om-duplicate { background-image: url('./openmoji-svg-color/E25B.svg') }
+.om-save { background-image: url('./openmoji-svg-color/E25C.svg') }
+.om-edit { background-image: url('./openmoji-svg-color/E25D.svg') }
+.om-home-button { background-image: url('./openmoji-svg-color/E25E.svg') }
+.om-add-button { background-image: url('./openmoji-svg-color/E25F.svg') }
+.om-archive { background-image: url('./openmoji-svg-color/E260.svg') }
+.om-overview { background-image: url('./openmoji-svg-color/E261.svg') }
+.om-delete { background-image: url('./openmoji-svg-color/E262.svg') }
+.om-comment { background-image: url('./openmoji-svg-color/E263.svg') }
+.om-more-information { background-image: url('./openmoji-svg-color/E264.svg') }
+.om-sort { background-image: url('./openmoji-svg-color/E265.svg') }
+.om-inbox { background-image: url('./openmoji-svg-color/E266.svg') }
+.om-compose { background-image: url('./openmoji-svg-color/E267.svg') }
+.om-add-contact { background-image: url('./openmoji-svg-color/E268.svg') }
+.om-link { background-image: url('./openmoji-svg-color/E269.svg') }
+.om-jar-with-red-content { background-image: url('./openmoji-svg-color/1FAD9-200D-1F7E5.svg') }
+.om-jar-with-blue-content { background-image: url('./openmoji-svg-color/1FAD9-200D-1F7E6.svg') }
+.om-jar-with-orange-content { background-image: url('./openmoji-svg-color/1FAD9-200D-1F7E7.svg') }
+.om-jar-with-yellow-content { background-image: url('./openmoji-svg-color/1FAD9-200D-1F7E8.svg') }
+.om-jar-with-green-content { background-image: url('./openmoji-svg-color/1FAD9-200D-1F7E9.svg') }
+.om-jar-with-purple-content { background-image: url('./openmoji-svg-color/1FAD9-200D-1F7EA.svg') }
+.om-jar-with-brown-content { background-image: url('./openmoji-svg-color/1FAD9-200D-1F7EB.svg') }
+.om-regional-indicator-a { background-image: url('./openmoji-svg-color/1F1E6.svg') }
+.om-regional-indicator-b { background-image: url('./openmoji-svg-color/1F1E7.svg') }
+.om-regional-indicator-c { background-image: url('./openmoji-svg-color/1F1E8.svg') }
+.om-regional-indicator-d { background-image: url('./openmoji-svg-color/1F1E9.svg') }
+.om-regional-indicator-e { background-image: url('./openmoji-svg-color/1F1EA.svg') }
+.om-regional-indicator-f { background-image: url('./openmoji-svg-color/1F1EB.svg') }
+.om-regional-indicator-g { background-image: url('./openmoji-svg-color/1F1EC.svg') }
+.om-regional-indicator-h { background-image: url('./openmoji-svg-color/1F1ED.svg') }
+.om-regional-indicator-i { background-image: url('./openmoji-svg-color/1F1EE.svg') }
+.om-regional-indicator-j { background-image: url('./openmoji-svg-color/1F1EF.svg') }
+.om-regional-indicator-k { background-image: url('./openmoji-svg-color/1F1F0.svg') }
+.om-regional-indicator-l { background-image: url('./openmoji-svg-color/1F1F1.svg') }
+.om-regional-indicator-m { background-image: url('./openmoji-svg-color/1F1F2.svg') }
+.om-regional-indicator-n { background-image: url('./openmoji-svg-color/1F1F3.svg') }
+.om-regional-indicator-o { background-image: url('./openmoji-svg-color/1F1F4.svg') }
+.om-regional-indicator-p { background-image: url('./openmoji-svg-color/1F1F5.svg') }
+.om-regional-indicator-q { background-image: url('./openmoji-svg-color/1F1F6.svg') }
+.om-regional-indicator-r { background-image: url('./openmoji-svg-color/1F1F7.svg') }
+.om-regional-indicator-s { background-image: url('./openmoji-svg-color/1F1F8.svg') }
+.om-regional-indicator-t { background-image: url('./openmoji-svg-color/1F1F9.svg') }
+.om-regional-indicator-u { background-image: url('./openmoji-svg-color/1F1FA.svg') }
+.om-regional-indicator-v { background-image: url('./openmoji-svg-color/1F1FB.svg') }
+.om-regional-indicator-w { background-image: url('./openmoji-svg-color/1F1FC.svg') }
+.om-regional-indicator-x { background-image: url('./openmoji-svg-color/1F1FD.svg') }
+.om-regional-indicator-y { background-image: url('./openmoji-svg-color/1F1FE.svg') }
+.om-regional-indicator-z { background-image: url('./openmoji-svg-color/1F1FF.svg') }
+.om-alabama-flag { background-image: url('./openmoji-svg-color/1F3F4-E0061-E0076-E007F.svg') }
+.om-quebec-flag { background-image: url('./openmoji-svg-color/1F3F4-E0063-E0061-E0071-E0063-E007F.svg') }
+.om-berlin-flag { background-image: url('./openmoji-svg-color/1F3F4-E0064-E0065-E0062-E0065-E007F.svg') }
+.om-bavaria-flag { background-image: url('./openmoji-svg-color/1F3F4-E0064-E0065-E0062-E0079-E007F.svg') }
+.om-andalusia-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0061-E006E-E007F.svg') }
+.om-aragon-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0061-E0072-E007F.svg') }
+.om-asturian-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0061-E0073-E007F.svg') }
+.om-cantabria-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0063-E0062-E007F.svg') }
+.om-ceuta-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0063-E0065-E007F.svg') }
+.om-castile-and-le-n-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0063-E006C-E007F.svg') }
+.om-castile-la-mancha-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0063-E006D-E007F.svg') }
+.om-canary-islands-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0063-E006E-E007F.svg') }
+.om-catalonia-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0063-E0074-E007F.svg') }
+.om-extremadura-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0065-E0078-E007F.svg') }
+.om-galicia-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0067-E0061-E007F.svg') }
+.om-balearic-islands-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0069-E0062-E007F.svg') }
+.om-murcia-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E006D-E0063-E007F.svg') }
+.om-madrid-autonomous-community-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E006D-E0064-E007F.svg') }
+.om-melilla-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E006D-E006C-E007F.svg') }
+.om-navarra-chartered-community { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E006E-E0063-E007F.svg') }
+.om-basque-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0070-E0076-E007F.svg') }
+.om-la-rioja-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0072-E0069-E007F.svg') }
+.om-valencian-community-flag { background-image: url('./openmoji-svg-color/1F3F4-E0065-E0073-E0076-E0063-E007F.svg') }
+.om-bretagne-flag { background-image: url('./openmoji-svg-color/1F3F4-E0066-E0072-E0062-E0072-E0065-E007F.svg') }
+.om-california-flag { background-image: url('./openmoji-svg-color/1F3F4-E0075-E0073-E0063-E0061-E007F.svg') }
+.om-colorado-flag { background-image: url('./openmoji-svg-color/1F3F4-E0075-E0073-E0063-E006F-E007F.svg') }
+.om-texas-flag { background-image: url('./openmoji-svg-color/1F3F4-E0075-E0073-E0074-E0078-E007F.svg') }
+.om-washington-d-c { background-image: url('./openmoji-svg-color/1F3F4-E0077-E0064-E0063-E007F.svg') }
+.om-hyphen-minus { background-image: url('./openmoji-svg-color/002D.svg') }
+.om-circled-zero-with-slash { background-image: url('./openmoji-svg-color/1F10D.svg') }
+.om-circled-anticlockwise-arrow { background-image: url('./openmoji-svg-color/1F10E.svg') }
+.om-circled-dollar-sign-with-overlaid-backslash { background-image: url('./openmoji-svg-color/1F10F.svg') }
+.om-copyleft-symbol { background-image: url('./openmoji-svg-color/1F12F.svg') }
+.om-circled-cc { background-image: url('./openmoji-svg-color/1F16D.svg') }
+.om-circled-c-with-overlaid-backslash { background-image: url('./openmoji-svg-color/1F16E.svg') }
+.om-circled-human-figure { background-image: url('./openmoji-svg-color/1F16F.svg') }
+.om-rounded-symbol-for-fu { background-image: url('./openmoji-svg-color/1F260.svg') }
+.om-rounded-symbol-for-lu { background-image: url('./openmoji-svg-color/1F261.svg') }
+.om-rounded-symbol-for-shou { background-image: url('./openmoji-svg-color/1F262.svg') }
+.om-rounded-symbol-for-xi { background-image: url('./openmoji-svg-color/1F263.svg') }
+.om-rounded-symbol-for-shuangxi { background-image: url('./openmoji-svg-color/1F264.svg') }
+.om-rounded-symbol-for-cai { background-image: url('./openmoji-svg-color/1F265.svg') }
+.om-hacker-cat { background-image: url('./openmoji-svg-color/1F431-200D-1F4BB.svg') }
+.om-stick-figure { background-image: url('./openmoji-svg-color/1FBC5.svg') }
+.om-stick-figure-with-arms-raised { background-image: url('./openmoji-svg-color/1FBC6.svg') }
+.om-stick-figure-leaning-left { background-image: url('./openmoji-svg-color/1FBC7.svg') }
+.om-stick-figure-leaning-right { background-image: url('./openmoji-svg-color/1FBC8.svg') }
+.om-stick-figure-with-dress { background-image: url('./openmoji-svg-color/1FBC9.svg') }
+.om-sound-recording-copyright { background-image: url('./openmoji-svg-color/2117.svg') }
+.om-service-mark { background-image: url('./openmoji-svg-color/2120.svg') }
+.om-circled-equals { background-image: url('./openmoji-svg-color/229C.svg') }
+.om-power-symbol { background-image: url('./openmoji-svg-color/23FB.svg') }
+.om-power-on-off-symbol { background-image: url('./openmoji-svg-color/23FC.svg') }
+.om-power-on-symbol { background-image: url('./openmoji-svg-color/23FD.svg') }
+.om-power-sleep-symbol { background-image: url('./openmoji-svg-color/23FE.svg') }
+.om-white-square { background-image: url('./openmoji-svg-color/25A1.svg') }
+.om-black-rectangle { background-image: url('./openmoji-svg-color/25AC.svg') }
+.om-white-rectangle { background-image: url('./openmoji-svg-color/25AD.svg') }
+.om-black-vertical-rectangle { background-image: url('./openmoji-svg-color/25AE.svg') }
+.om-fisheye { background-image: url('./openmoji-svg-color/25C9.svg') }
+.om-circle-with-left-half-black { background-image: url('./openmoji-svg-color/25D0.svg') }
+.om-circle-with-right-half-black { background-image: url('./openmoji-svg-color/25D1.svg') }
+.om-square-with-left-half-black { background-image: url('./openmoji-svg-color/25E7.svg') }
+.om-square-with-right-half-black { background-image: url('./openmoji-svg-color/25E8.svg') }
+.om-square-with-upper-left-diagonal-black { background-image: url('./openmoji-svg-color/25E9.svg') }
+.om-square-with-lower-right-diagonal-black { background-image: url('./openmoji-svg-color/25EA.svg') }
+.om-up-pointing-triangle-with-left-half-black { background-image: url('./openmoji-svg-color/25ED.svg') }
+.om-up-pointing-triangle-with-right-half-black { background-image: url('./openmoji-svg-color/25EE.svg') }
+.om-black-star { background-image: url('./openmoji-svg-color/2605.svg') }
+.om-left-right-black-arrow { background-image: url('./openmoji-svg-color/2B0C.svg') }
+.om-up-down-black-arrow { background-image: url('./openmoji-svg-color/2B0D.svg') }
+.om-black-pentagon { background-image: url('./openmoji-svg-color/2B1F.svg') }
+.om-white-pentagon { background-image: url('./openmoji-svg-color/2B20.svg') }
+.om-white-hexagon { background-image: url('./openmoji-svg-color/2B21.svg') }
+.om-black-hexagon { background-image: url('./openmoji-svg-color/2B22.svg') }
+.om-horizontal-black-hexagon { background-image: url('./openmoji-svg-color/2B23.svg') }
+.om-black-large-circle { background-image: url('./openmoji-svg-color/2B24.svg') }
+.om-black-vertical-ellipse { background-image: url('./openmoji-svg-color/2B2E.svg') }
+.om-white-vertical-ellipse { background-image: url('./openmoji-svg-color/2B2F.svg') }
+.om-heavy-circle { background-image: url('./openmoji-svg-color/2B58.svg') }
+.om-anticlockwise-triangle-headed-top-u-shaped-arrow { background-image: url('./openmoji-svg-color/2B8F.svg') }
+.om-overlapping-white-squares { background-image: url('./openmoji-svg-color/2BBA.svg') }
+.om-overlapping-white-and-black-squares { background-image: url('./openmoji-svg-color/2BBB.svg') }
+.om-overlapping-black-squares { background-image: url('./openmoji-svg-color/2BBC.svg') }
+.om-horizontal-black-octagon { background-image: url('./openmoji-svg-color/2BC3.svg') }
+.om-black-octagon { background-image: url('./openmoji-svg-color/2BC4.svg') }
+.om-star-with-left-half-black { background-image: url('./openmoji-svg-color/2BEA.svg') }
+.om-star-with-right-half-black { background-image: url('./openmoji-svg-color/2BEB.svg') }
new file mode 100644
index 0000000..72b4de3
--- /dev/null
+++ b/static/openmoji-preamble.css
@@ -0,0 +1,82 @@
+@charset "UTF-8";
+
+/*
+Stylesheet adapted from openmoji-awesome <https://github.com/gromin/openmoji-awesome>
+The graphics are licensed under the CC-BY 4.0: https://openmoji.org/
+Preamble from https://ellekasai.github.io/twemoji-awesome/,
+licensed under MIT: https://ellekasai.mit-license.org/
+*/
+
+.om {
+    --om-path: calc("./openmoji-svg-color/" + var(--om-hexcode) + ".svg");
+    background-image: url("./openmoji-svg-color/"var(--om-hexcode)".svg");
+    display: inline-block;
+    height: 1em;
+    width: 1em;
+    margin: 0 .05em 0 .1em;
+    vertical-align: -0.1em;
+    background-repeat: no-repeat;
+    background-position: center center;
+    background-size: 1em 1em;
+}
+
+/* When applied to a list item, use it as a bullet */
+li.om {
+    display: list-item;
+    list-style: none;
+    width: unset;
+    margin-left: -1.1em;
+    padding-left: 1.1em;
+    height: initial;
+    background-size: 0.9em;
+    background-position-y: 0.1em;
+    background-position-x: 0.0em;
+}
+
+.om-lg {
+    height: 1.33em;
+    width: 1.33em;
+    margin: 0 0.0665em 0 0.133em;
+    vertical-align: -0.15em;
+    background-size: 1.33em 1.33em;
+}
+
+.om-bg {
+    height: 1.5em;
+    width: 1.5em;
+    margin: 0 0.075em 0 0.15em;
+    vertical-align: -0.2em;
+    background-size: 1.5em 1.5em;
+}
+
+.om-2x {
+    height: 2em;
+    width: 2em;
+    margin: 0 0.1em 0 0.2em;
+    vertical-align: -0.7em;
+    background-size: 2em 2em;
+}
+
+.om-3x {
+    height: 3em;
+    width: 3em;
+    margin: 0 0.15em 0 0.3em;
+    vertical-align: -1.1em;
+    background-size: 3em 3em;
+}
+
+.om-4x {
+    height: 4em;
+    width: 4em;
+    margin: 0 0.2em 0 0.4em;
+    vertical-align: -1.5em;
+    background-size: 4em 4em;
+}
+
+.om-5x {
+    height: 5em;
+    width: 5em;
+    margin: 0 0.25em 0 0.5em;
+    vertical-align: -1.6em;
+    background-size: 5em 5em;
+}
new file mode 100644
index 0000000..9be4d3c
--- /dev/null
+++ b/static/openmoji-svg-color/0023-FE0F-20E3.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.208" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="11.958" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="33.4535" x2="30.9399" y1="27.616" y2="44.634" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="40.8101" x2="38.2965" y1="27.616" y2="44.634" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="28.0658" x2="44.7833" y1="32.3567" y2="32.3397" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="26.9667" x2="43.6842" y1="39.8468" y2="39.8296" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b33ca07
--- /dev/null
+++ b/static/openmoji-svg-color/002A-FE0F-20E3.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.1663" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="11.9163" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="36.125" x2="36.125" y1="24.9163" y2="46.9163" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="26.9227" x2="45.3273" y1="29.8899" y2="41.9427" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="26.912" x2="45.338" y1="41.9264" y2="29.9062" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ffb24d6
--- /dev/null
+++ b/static/openmoji-svg-color/002D.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <polyline fill="#000000" stroke="none" points="59,41 13,41 13,31 59,31"/>
+  </g>
+  <g id="color">
+    <polyline fill="#3F3F3F" stroke="none" points="59,41 13,41 13,31 59,31"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <rect x="13" y="31" width="46" height="10" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4be64be
--- /dev/null
+++ b/static/openmoji-svg-color/0030-FE0F-20E3.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.166" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="11.916" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M35.8749,44.7791h0A4.7593,4.7593,0,0,1,31.1156,40.02V32.1464a4.76,4.76,0,0,1,4.7593-4.7595h0a4.76,4.76,0,0,1,4.76,4.7595V40.02A4.7593,4.7593,0,0,1,35.8749,44.7791Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3ebb298
--- /dev/null
+++ b/static/openmoji-svg-color/0031-FE0F-20E3.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.291" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="12.041" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="31.664 30.895 36.464 27.305 36.586 44.777"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d1fa4da
--- /dev/null
+++ b/static/openmoji-svg-color/0032-FE0F-20E3.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="12" y="12.1663" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.25" y="11.9163" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.03,31.4978a5.33,5.33,0,0,1,5.22-4.2544h0a5.3116,5.3116,0,0,1,3.7675,1.5606,4.1147,4.1147,0,0,1-.0458,5.5792l-9.05,10.206H41.5781"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..316c28c
--- /dev/null
+++ b/static/openmoji-svg-color/0033-FE0F-20E3.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="12" y="12.1663" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.25" y="11.9163" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.419,41.1153A4.7759,4.7759,0,0,0,36.2,44.57h0a4.6288,4.6288,0,0,0,4.8806-4.327A4.6287,4.6287,0,0,0,36.2,35.9163a4.6287,4.6287,0,0,0,4.8806-4.3269A4.6288,4.6288,0,0,0,36.2,27.2624h0a4.7763,4.7763,0,0,0-4.7814,3.4549"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..63db1cd
--- /dev/null
+++ b/static/openmoji-svg-color/0034-FE0F-20E3.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.2913" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="12.0413" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="37.502 27.34 31.036 41.96 41.214 41.96"/>
+    <line x1="39.5379" x2="39.5379" y1="36.5708" y2="44.7422" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..17c9317
--- /dev/null
+++ b/static/openmoji-svg-color/0035-FE0F-20E3.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.75" y="12.1663" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12" y="11.9163" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.8667,41.8037a4.2034,4.2034,0,0,0,3.95,2.7669h.1152a4.2013,4.2013,0,0,0,4.2013-4.2013V39.468a4.2013,4.2013,0,0,0-4.2013-4.2013H31.8667V27.262h8.2666"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..858d0d8
--- /dev/null
+++ b/static/openmoji-svg-color/0036-FE0F-20E3.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.1243" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="11.8743" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="36.125" cy="39.9125" r="4.6594" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="36.125" x2="32.3088" y1="27.1767" y2="37.2428" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0bb696b
--- /dev/null
+++ b/static/openmoji-svg-color/0037-FE0F-20E3.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.1663" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="11.9163" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="30.984 31.679 30.984 27.386 40.766 27.386 34.722 44.781"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f8aef05
--- /dev/null
+++ b/static/openmoji-svg-color/0038-FE0F-20E3.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.75" y="12.4163" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12" y="12.1663" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.3392,40.518h0a4.3461,4.3461,0,0,0,4.3459,4.3459h.63a4.3459,4.3459,0,0,0,4.3459-4.3459h0a4.346,4.346,0,0,0-4.3459-4.3459h-.63A4.3462,4.3462,0,0,0,31.3392,40.518Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.3392,31.8143h0A4.346,4.346,0,0,0,35.6851,36.16h.63a4.3458,4.3458,0,0,0,4.3459-4.3459h0a4.3458,4.3458,0,0,0-4.3459-4.3456h-.63A4.346,4.346,0,0,0,31.3392,31.8143Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..55ff45c
--- /dev/null
+++ b/static/openmoji-svg-color/0039-FE0F-20E3.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.875" y="12.3801" width="48" height="47.834" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <rect x="12.125" y="12.1301" width="48" height="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="36.125" cy="32.092" r="4.6594" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="36.125" x2="39.9412" y1="44.8277" y2="34.7616" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..12a8271
--- /dev/null
+++ b/static/openmoji-svg-color/00A9.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8.693" d="m43.02 48.48c-1.917 1.7-4.442 2.734-7.212 2.734-5.999 0-10.87-4.865-10.87-10.87v-8.693 8.693-8.693c0-6.003 4.869-10.87 10.87-10.87 2.769 0 5.295 1.035 7.212 2.734" clip-rule="evenodd"/>
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" paint-order="normal"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b0242bb
--- /dev/null
+++ b/static/openmoji-svg-color/00AE.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="7.752" d="m27.45 49.57v-27.13h10.35c3.733 0 6.76 3.027 6.76 6.76s-3.027 6.756-6.76 6.756h-10.35" clip-rule="evenodd"/>
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" paint-order="normal"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="7.752" d="m38.03 35.95 5.884 13.62" clip-rule="evenodd"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2c18b6f
--- /dev/null
+++ b/static/openmoji-svg-color/1F004.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="17" y="8" width="38" height="56" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="17" y="8" width="38" height="56" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="36" x2="36" y1="16" y2="56" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="24" y="24" width="24" height="12" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="color-foreground">
+    <line x1="36" x2="36" y1="16" y2="56" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="24" y="24" width="24" height="12" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4b39d7d
--- /dev/null
+++ b/static/openmoji-svg-color/1F0CF.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="16.5" y="4.8" width="39" height="62.4" fill="#d0cfce"/>
+    <polygon fill="#ea5a47" points="35.806 48.602 26.843 51.115 27.93 46.615 21.283 46.466 24.239 44.005 28.268 42.502 45.313 42.78 50.338 46.309 44.057 46.615 45.501 51.115 35.806 48.602"/>
+    <path fill="#d22f27" d="M41.9248,50.1883c.6289.8354,3.5763.9269,3.5763.9269l-1.4445-4.5,6.2818-.3059L45.3127,42.78,42.3879,42.69C41.7716,43.053,41.2959,49.3528,41.9248,50.1883Z"/>
+    <path fill="#ea5a47" d="M21.0209,23.286c-.6734.15,3.9411-6.4248,11.4258-2.5271,0,0,4.5-10.7789,14.4109-6.7508,0,0-8.1695,6.2635-6.0268,5.9931,8.2578-1.042,9.3575,4.3845,9.3575,4.3845C40.1169,21.5471,45.81,29.9874,45.81,29.9874c-6.8537-6.8408-14.4739-5.7178-19.9542-.7242C25.856,29.2632,28.82,21.5471,21.0209,23.286Z"/>
+    <path fill="#d22f27" d="M40.8308,20.0012c8.2578-1.042,9.3575,4.3845,9.3575,4.3845C40.1169,21.5471,45.81,29.9874,45.81,29.9874c-2.0246-2.0207-6.0321-2.3908-6.1648-4.0666C39.386,22.6467,39.321,20.1917,40.8308,20.0012Z"/>
+  </g>
+  <g id="skin">
+    <path fill="#fcea2b" d="M44.8886,28.89c-.2972-2.0864-11.3522-6.9564-18.0832-.6564,0,0-.2566,4.3777-.2566,5.312,0,6.3731,4.1333,11.54,9.2319,11.54s9.2316-5.1665,9.2316-11.54A26.4689,26.4689,0,0,0,44.8886,28.89Z"/>
+  </g>
+  <g id="line">
+    <rect x="16.5" y="4.8" width="39" height="62.4" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.0209,23.286c-.6734.15,3.9411-6.4248,11.4258-2.5271,0,0,4.5-10.7789,14.4109-6.7508,0,0-8.1695,6.2635-6.0268,5.9931,8.2578-1.042,9.3575,4.3845,9.3575,4.3845C40.1169,21.5471,45.81,29.9874,45.81,29.9874c-6.8537-6.8408-14.4739-5.7178-19.9542-.7242C25.856,29.2632,28.82,21.5471,21.0209,23.286Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M25.9961,42.78c-1.211.0039-6.32,3.4383-6.32,5.0027,0,0,6.5691-1.77,8.2538-1.1678,0,0-1.939,3.8151-1.8187,5.8608,0,0,6.3717-3.1424,9.8822-3.1424"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M45.99,42.78c1.211.0039,6.32,3.4383,6.32,5.0027,0,0-6.5692-1.77-8.2539-1.1678,0,0,1.9391,3.8151,1.8187,5.8608,0,0-6.3717-3.1424-9.8822-3.1424"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23.37,7.35v4.5a2.5,2.5,0,0,1-2.5,2.5h0a2.4908,2.4908,0,0,1-1.6728-.642"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M48.63,64.2165v-4.5a2.5,2.5,0,0,1,2.5-2.5h0a2.4908,2.4908,0,0,1,1.6728.642"/>
+    <circle cx="50.782" cy="27.4753" r="1.9488"/>
+    <circle cx="48.8332" cy="16.4818" r="1.9488"/>
+    <circle cx="20.6797" cy="26.4668" r="1.9488"/>
+    <path d="M41.7716,31.0968a1.9489,1.9489,0,1,1-1.9488-1.9489,1.95,1.95,0,0,1,1.9488,1.9489"/>
+    <path d="M33.9763,31.0968a1.9489,1.9489,0,1,1-1.9489-1.9489,1.95,1.95,0,0,1,1.9489,1.9489"/>
+    <path d="M35.925,40.8433a7.4566,7.4566,0,0,1-3.3591-.836.9745.9745,0,1,1,.8717-1.7432,5.24,5.24,0,0,0,4.9748,0,.9745.9745,0,1,1,.8717,1.7432A7.4566,7.4566,0,0,1,35.925,40.8433Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..eaf1fb6
--- /dev/null
+++ b/static/openmoji-svg-color/1F10D.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" paint-order="normal"/>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="4.74" d="m43.24 22.41-15.01 26-0.3267-0.1886"/>
+    <g transform="matrix(4.347 0 0 4.347 36 20.78)" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" clip-rule="evenodd">
+      <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="1.84" d="m0 7c-1.058 0-1.916-0.857-1.916-1.916v-3.168c0-1.058 0.858-1.916 1.916-1.916s1.916 0.858 1.916 1.916v3.168c0 1.059-0.858 1.916-1.916 1.916z"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..231ca33
--- /dev/null
+++ b/static/openmoji-svg-color/1F10E.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" paint-order="normal"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="7" stroke-width="7" d="m20.66 30.58 5.421 5.421 5.424-5.424"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="7" stroke-width="7" d="m25.13 31.65c0-6.003 4.869-10.87 10.87-10.87 5.999 0 10.87 4.865 10.87 10.87v8.693-8.693 8.693c0 6.003-4.869 10.87-10.87 10.87-4.264 0-7.957-2.457-9.739-6.034" clip-rule="evenodd"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..fc2c5e1
--- /dev/null
+++ b/static/openmoji-svg-color/1F10F.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" d="m 54.49 54.46 l -36.46 -36.46 l .4581 -.4581"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="6.3" d="m 42.88 27.333584 c -.64862 -2.524872 -3.451924 -4.420108 -6.812092 -4.420108 c -3.841096 0 -6.954472 2.477412 -6.954472 5.537 c 0 3.056424 3.024784 6.210932 6.884864 7.54614 c 3.86008 1.3342588 6.963964 4.20812 6.884864 7.54614 c -.07391104 3.0586388 -3.113376 5.537 -6.954472 5.537 c -3.360168 0 -6.163472 -1.8984 -6.812092 -4.423272"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="6.3" d="m36.00,17.6 v5.28"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="6.3" d="m36.00,54.4 v-5.28"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..78f5eaa
--- /dev/null
+++ b/static/openmoji-svg-color/1F12F.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8.693" d="m28.98 48.48c1.917 1.7 4.442 2.734 7.212 2.734 5.999 0 10.87-4.865 10.87-10.87v-8.693 8.693-8.693c0-6.003-4.869-10.87-10.87-10.87-2.769 0-5.295 1.035-7.212 2.734" clip-rule="evenodd"/>
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" paint-order="normal"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..94d05ea
--- /dev/null
+++ b/static/openmoji-svg-color/1F16D.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.84" d="m52.34 44.08c-1.288 1.142-2.984 1.837-4.845 1.837-4.03 0-7.301-3.268-7.301-7.301v-5.84 5.84-5.84c0-4.033 3.271-7.301 7.301-7.301 1.86 0 3.557 0.695 4.845 1.837" clip-rule="evenodd"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="5.84" d="m31.78 44.69c-1.288 1.142-2.984 1.837-4.845 1.837-4.03 0-7.301-3.268-7.301-7.301v-5.84 5.84-5.84c0-4.033 3.271-7.301 7.301-7.301 1.86 0 3.557 0.695 4.845 1.837" clip-rule="evenodd"/>
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" paint-order="normal"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b9b8eb6
--- /dev/null
+++ b/static/openmoji-svg-color/1F16E.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="8.693" d="m43.02 48.48c-1.917 1.7-4.442 2.734-7.212 2.734-5.999 0-10.87-4.865-10.87-10.87v-8.693 8.693-8.693c0-6.003 4.869-10.87 10.87-10.87 2.769 0 5.295 1.035 7.212 2.734" clip-rule="evenodd"/>
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.74" paint-order="normal"/>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="4.74" d="m54.49 54.46-36.46-36.46 0.4581-0.4581"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5248e3d
--- /dev/null
+++ b/static/openmoji-svg-color/1F16F.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="26.68" fill="#fff" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="26.68" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.75"/>
+    <circle cx="36" cy="19.355" r="2" fill="#000" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.33"/>
+    <path fill="#000" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.33" d="m 30.027694 39.967258 l 11.9436336 -.00003331 l -.5276304 -12.6578 c -.096599 -1.852036 -1.615535 -3.3103478 -3.4455864 -3.331 l -3.9732168 .00003331 c -1.8540346 .0206522 -3.37337032 1.478964 -3.4695696 3.331 z"/>
+    <path fill="#000" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.33" d="m 32.6944926 27.975658 l -1.26578 25.3156 c -.036641 .73282 .383065 1.3324 .93268 1.3324 a 1.3830312 1.3830312 0 0 0 1.1518598 -1.3237394 l 1.6914818 -14.676386 c .0839412 -.7281566 .4523498 -1.3237394 .8187598 -1.3237394 s .73282 .5955828 .8187598 1.3237394 l 1.6934804 14.676386 a 1.3830312 1.3830312 0 0 0 1.1518598 1.3237394 c .549615 0 .969321 -.59958 .93268 -1.3324 l -1.26578 -25.3156 z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..df7a801
--- /dev/null
+++ b/static/openmoji-svg-color/1F170.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <g id="A_Button">
+      <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M59.0349,60.1374h-46.07A.9679.9679,0,0,1,12,59.1723v-46.07a.9679.9679,0,0,1,.9651-.9651h46.07A.9679.9679,0,0,1,60,13.1025v46.07A.9679.9679,0,0,1,59.0349,60.1374Z"/>
+      <g>
+        <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="45.429 46.313 36 24.313 26.571 46.313"/>
+        <line x1="29.7143" x2="42.2857" y1="41.0457" y2="41.0457" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+    </g>
+  </g>
+  <g id="color">
+    <g id="color-2">
+      <path fill="#d22f27" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    </g>
+  </g>
+  <g id="line"/>
+  <g id="color-foreground">
+    <g id="A_Button-2">
+      <path fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <g>
+        <polyline fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="45.429 46.176 36 24.176 26.571 46.176"/>
+        <line x1="29.7143" x2="42.2857" y1="40.9084" y2="40.9084" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..dfb3f53
--- /dev/null
+++ b/static/openmoji-svg-color/1F171.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <g id="B_Button">
+      <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37.7628,35.2283h-8.42v-11h8.42a5.5,5.5,0,0,1,5.5,5.5h0A5.5,5.5,0,0,1,37.7628,35.2283Z"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37.7628,46.2284h-8.42v-11h8.42a5.5,5.5,0,0,1,5.5,5.5h0A5.5,5.5,0,0,1,37.7628,46.2284Z"/>
+    </g>
+  </g>
+  <g id="color">
+    <g id="color-2">
+      <path fill="#d22f27" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    </g>
+  </g>
+  <g id="line"/>
+  <g id="color-foreground">
+    <g id="B_Button-2">
+      <path fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37.7628,35.2283h-8.42v-11h8.42a5.5,5.5,0,0,1,5.5,5.5h0A5.5,5.5,0,0,1,37.7628,35.2283Z"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37.7628,46.2284h-8.42v-11h8.42a5.5,5.5,0,0,1,5.5,5.5h0A5.5,5.5,0,0,1,37.7628,46.2284Z"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..6cdc5a4
--- /dev/null
+++ b/static/openmoji-svg-color/1F17E.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <g id="O_Button">
+      <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M35.75,46.5116h0a7.8572,7.8572,0,0,1-7.8571-7.8571V32.3687A7.8572,7.8572,0,0,1,35.75,24.5116h0a7.8572,7.8572,0,0,1,7.8571,7.8571v6.2858A7.8572,7.8572,0,0,1,35.75,46.5116Z"/>
+    </g>
+  </g>
+  <g id="color">
+    <g id="color-2">
+      <path fill="#d22f27" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    </g>
+  </g>
+  <g id="line"/>
+  <g id="color-foreground">
+    <g id="O_Button-2">
+      <path fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M35.75,46.5116h0a7.8572,7.8572,0,0,1-7.8571-7.8571V32.3687A7.8572,7.8572,0,0,1,35.75,24.5116h0a7.8572,7.8572,0,0,1,7.8571,7.8571v6.2858A7.8572,7.8572,0,0,1,35.75,46.5116Z"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..023badb
--- /dev/null
+++ b/static/openmoji-svg-color/1F17F.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M30.1098,47.0048v-22h8.3889c3.0263,0,5.4793,2.4533,5.4793,5.4796l0,0c0,3.0263-2.453,5.4793-5.4793,5.4793h-8.3889"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7304152
--- /dev/null
+++ b/static/openmoji-svg-color/1F18E.svg
@@ -0,0 +1,38 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <g id="AB_Button">
+      <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M59.0349,60.1373h-46.07A.9679.9679,0,0,1,12,59.1722v-46.07a.9679.9679,0,0,1,.9651-.9651h46.07A.9679.9679,0,0,1,60,13.1024v46.07A.9679.9679,0,0,1,59.0349,60.1373Z"/>
+      <g>
+        <g>
+          <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="33.287 43.637 26.858 28.637 20.43 43.637"/>
+          <line x1="22.5724" x2="31.1438" y1="40.0457" y2="40.0457" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+        </g>
+        <g>
+          <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M46.6551,36.1373h-5.72V28.6654h5.72a3.736,3.736,0,0,1,3.736,3.736h0A3.7359,3.7359,0,0,1,46.6551,36.1373Z"/>
+          <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M46.6551,43.6094h-5.72V36.1373h5.72a3.736,3.736,0,0,1,3.736,3.736h0A3.7361,3.7361,0,0,1,46.6551,43.6094Z"/>
+        </g>
+      </g>
+    </g>
+  </g>
+  <g id="color">
+    <g id="color-2">
+      <path fill="#d22f27" d="M59.0349,60.1372h-46.07A.9679.9679,0,0,1,12,59.1721v-46.07a.9679.9679,0,0,1,.9651-.9651h46.07A.9679.9679,0,0,1,60,13.1023v46.07A.9679.9679,0,0,1,59.0349,60.1372Z"/>
+    </g>
+  </g>
+  <g id="line"/>
+  <g id="color-foreground">
+    <g id="AB_Button-2">
+      <path fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2" d="M59.0349,60.1372h-46.07A.9679.9679,0,0,1,12,59.1721v-46.07a.9679.9679,0,0,1,.9651-.9651h46.07A.9679.9679,0,0,1,60,13.1023v46.07A.9679.9679,0,0,1,59.0349,60.1372Z"/>
+      <g>
+        <g>
+          <polyline fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="33.287 43.637 26.858 28.637 20.43 43.637"/>
+          <line x1="22.5724" x2="31.1438" y1="40.0456" y2="40.0456" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+        </g>
+        <g>
+          <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M46.6551,36.1372h-5.72v-7.472h5.72a3.7361,3.7361,0,0,1,3.736,3.7361h0A3.7359,3.7359,0,0,1,46.6551,36.1372Z"/>
+          <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M46.6551,43.6093h-5.72V36.1372h5.72a3.736,3.736,0,0,1,3.736,3.736h0A3.7361,3.7361,0,0,1,46.6551,43.6093Z"/>
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..803a1b9
--- /dev/null
+++ b/static/openmoji-svg-color/1F191.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <g id="CL_Button">
+      <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M32.07,42.5784a5.3144,5.3144,0,0,1-3.5383,1.3423h0a5.3343,5.3343,0,0,1-5.3342-5.3342V34.3192a5.3343,5.3343,0,0,1,5.3342-5.3342h0A5.3131,5.3131,0,0,1,32.07,30.3275"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="42.401 29.049 42.401 43.985 48.802 43.985"/>
+    </g>
+  </g>
+  <g id="color">
+    <g id="color-2">
+      <path fill="#d22f27" d="M59.0349,60.4528h-46.07A.9679.9679,0,0,1,12,59.4877v-46.07a.9679.9679,0,0,1,.9651-.9651h46.07A.9679.9679,0,0,1,60,13.4179v46.07A.9679.9679,0,0,1,59.0349,60.4528Z"/>
+    </g>
+  </g>
+  <g id="line"/>
+  <g id="color-foreground">
+    <path fill="none" stroke="#fff" stroke-linejoin="round" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M32.07,42.5784a5.3144,5.3144,0,0,1-3.5383,1.3423h0a5.3343,5.3343,0,0,1-5.3342-5.3342V34.3192a5.3343,5.3343,0,0,1,5.3342-5.3342h0A5.3131,5.3131,0,0,1,32.07,30.3275"/>
+    <polyline fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="42.401 29.049 42.401 43.985 48.802 43.985"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..eb88a96
--- /dev/null
+++ b/static/openmoji-svg-color/1F192.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke="none" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="47.9463,32.0267 47.9463,40.0267 51.3748,40.0267"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31.9552,40.0267L31.9552,40.0267c-1.5779,0-2.8571-1.2792-2.8571-2.8571v-2.2857c0-1.5779,1.2792-2.8571,2.8571-2.8571l0,0 c1.5779,0,2.8571,1.2792,2.8571,2.8571v2.2857C34.8123,38.7475,33.5331,40.0267,31.9552,40.0267z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41.0847,40.0267L41.0847,40.0267c-1.5779,0-2.8571-1.2792-2.8571-2.8571v-2.2857c0-1.5779,1.2792-2.8571,2.8571-2.8571l0,0 c1.5779,0,2.8571,1.2792,2.8571,2.8571v2.2857C43.9419,38.7475,42.6627,40.0267,41.0847,40.0267z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M26.3775,39.3077c-0.5044,0.4473-1.168,0.719-1.8952,0.719l0,0c-1.5779,0-2.8571-1.2792-2.8571-2.8571v-2.2857v2.2857v-2.2857 c0-1.5779,1.2792-2.8571,2.8571-2.8571l0,0c0.7272,0,1.3909,0.2717,1.8952,0.7191"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f1461cc
--- /dev/null
+++ b/static/openmoji-svg-color/1F193.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#92d3f5" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+  </g>
+  <g id="line">
+    <g id="FREE">
+      <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="23.83 36.376 20.83 36.376 20.83 39.876 20.83 32.876 24.83 32.876"/>
+      <g>
+        <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M29.0081,39.8759v-7h2.6692a1.7434,1.7434,0,0,1,1.7434,1.7435h0a1.7433,1.7433,0,0,1-1.7434,1.7434H29.0081"/>
+        <line x1="31.6898" x2="33.207" y1="36.3628" y2="39.8759" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+      <g>
+        <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="42.83 32.876 38.83 32.876 38.83 39.876 42.83 39.876"/>
+        <line x1="38.8296" x2="41.8296" y1="36.3759" y2="36.3759" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+      <g>
+        <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="51.83 32.876 47.83 32.876 47.83 39.876 51.83 39.876"/>
+        <line x1="47.8296" x2="50.8296" y1="36.3759" y2="36.3759" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..02c5ded
--- /dev/null
+++ b/static/openmoji-svg-color/1F194.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke="none" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <line x1="31.4661" x2="31.4661" y1="30.875" y2="40.875" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40.0646,40.8564h-3.6434v-9.9627h3.6434c1.1485,0,2.0796,0.9311,2.0796,2.0796v5.8035 C42.1442,39.9253,41.2131,40.8564,40.0646,40.8564z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0e73e68
--- /dev/null
+++ b/static/openmoji-svg-color/1F195.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke="none" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="37.4857,32.4699 32.9143,32.4699 32.9143,40.4699 37.4857,40.4699"/>
+    <line x1="32.9143" x2="36.3429" y1="36.4699" y2="36.4699" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="23,40.4699 23,32.4699 28.7143,40.4699 28.7143,32.4699"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="50,32.4699 47.7143,40.4699 45.4286,32.4699 43.1429,40.4699 40.8571,32.4699"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f6672f8
--- /dev/null
+++ b/static/openmoji-svg-color/1F196.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <g id="color-2">
+      <path fill="#92d3f5" d="M59.0349,59h-46.07A.9679.9679,0,0,1,12,58.0349v-46.07A.9679.9679,0,0,1,12.9651,11h46.07A.9679.9679,0,0,1,60,11.9651v46.07A.9679.9679,0,0,1,59.0349,59Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <g id="NG_Button">
+      <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,59.3333h-46.07A.9679.9679,0,0,1,12,58.3682v-46.07a.9679.9679,0,0,1,.9651-.9651h46.07A.9679.9679,0,0,1,60,12.2984v46.07A.9679.9679,0,0,1,59.0349,59.3333Z"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="22 42.833 22 27.833 32.714 42.833 32.714 27.833"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M50.1964,29.1816a5.3366,5.3366,0,0,0-3.5535-1.3483h0a5.3572,5.3572,0,0,0-5.3572,5.3572v4.2857a5.3572,5.3572,0,0,0,5.3572,5.3571h0A5.3572,5.3572,0,0,0,52,37.4762V35.3053H47.7143"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..905b54d
--- /dev/null
+++ b/static/openmoji-svg-color/1F197.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <line x1="39.32" x2="39.32" y1="29.85" y2="42.15" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3"/>
+    <line x1="39.32" x2="46.35" y1="37.83" y2="29.85" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3"/>
+    <line x1="42.71" x2="46.92" y1="33.99" y2="42.15" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3" d="m29.47 42.15v0c-2.426 0-4.393-1.967-4.393-4.393v-3.515c0-2.426 1.967-4.393 4.393-4.393v0c2.426 0 4.393 1.967 4.393 4.393v3.515c0 2.426-1.967 4.393-4.393 4.393z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c6a24af
--- /dev/null
+++ b/static/openmoji-svg-color/1F198.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#D22F27" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3.004" d="m36 42.01v0c-2.37 0-4.291-1.921-4.291-4.291v-3.433c0-2.37 1.921-4.291 4.291-4.291v0c2.37 0 4.291 1.921 4.291 4.291v3.433c0 2.37-1.921 4.291-4.291 4.291z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3.004" d="m26.21 32.39c-0.3516-1.367-1.871-2.396-3.692-2.396v0c-2.082 0-3.769 1.344-3.769 3.001s1.687 3.001 3.769 3.001l-0.0766 0.01111c2.082 0 3.769 1.344 3.769 3.001 0 1.657-1.687 3.001-3.769 3.001v0c-1.821 0-3.341-1.029-3.692-2.396"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3.004" d="m53.25 32.39c-0.3516-1.367-1.871-2.396-3.692-2.396v0c-2.082 0-3.769 1.344-3.769 3.001s1.687 3.001 3.769 3.001l-0.0766 0.01111c2.082 0 3.769 1.344 3.769 3.001 0 1.657-1.687 3.001-3.769 3.001v0c-1.821 0-3.341-1.029-3.692-2.396"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..af2f783
--- /dev/null
+++ b/static/openmoji-svg-color/1F199.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path id="color-2" fill="#92d3f5" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+  </g>
+  <g id="line">
+    <g id="UP_Button">
+      <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30.4261,30.015v6.75a3.75,3.75,0,0,1-3.75,3.75h0a3.75,3.75,0,0,1-3.75-3.75v-6.75"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M35.6477,40.47V29.97h4.0038a2.6151,2.6151,0,0,1,2.6151,2.6153h0A2.6149,2.6149,0,0,1,39.6515,35.2H35.6477"/>
+      <g>
+        <line x1="49.8694" x2="49.8694" y1="29.9699" y2="36.4557" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+        <circle cx="49.8694" cy="40.4699" r="1.5"/>
+      </g>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..ff2a58b
--- /dev/null
+++ b/static/openmoji-svg-color/1F19A.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44.168,33.2439c-0.2926-1.1381-1.5573-1.9943-3.0731-1.9943l0,0c-1.7325,0-3.1369,1.1182-3.1369,2.4977 s1.4044,2.4977,3.1369,2.4977l-0.0638,0.0093c1.7325,0,3.1369,1.1182,3.1369,2.4977s-1.4044,2.4977-3.1369,2.4977l0,0 c-1.5159,0-2.7806-0.8561-3.0731-1.9943"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="35.2324,31.2589 32.3779,41.2496 29.5234,31.2589"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..691d17d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1E8.svg
@@ -0,0 +1,35 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" points="50.954 36 52.259 38.26 53.564 40.521 50.954 40.521 48.344 40.521 49.649 38.26 50.954 36"/>
+    <g>
+      <path fill="#fff" d="M55.0483,41.7818c0,5.4893-1.8016,9.9393-4.0241,9.9393S47,47.2711,47,41.7818Z"/>
+      <path d="M54.0279,42.7818c-.2013,4.8789-1.8477,7.9393-3.0037,7.9393s-2.8025-3.06-3.0038-7.9393h6.0075m1.02-1H47c0,5.4893,1.8017,9.9393,4.0242,9.9393s4.0241-4.45,4.0241-9.9393Z"/>
+    </g>
+    <ellipse cx="45.9058" cy="41.1927" rx="1" ry="0.5" transform="translate(-14.7874 30.2147) rotate(-31.65)" fill="#a57939" stroke="#6a462f" stroke-miterlimit="10"/>
+    <ellipse cx="43.8277" cy="49.9495" rx="0.5" ry="1" transform="translate(-19.6914 30.4267) rotate(-31.65)" fill="#a57939" stroke="#6a462f" stroke-miterlimit="10"/>
+    <path fill="#a57939" stroke="#6a462f" stroke-miterlimit="10" d="M40.757,49.4724c-1.3634-.3235-1.9723-2.6772-1.36-5.2572s2.2138-4.4091,3.5772-4.0856a2.0232,2.0232,0,0,1,1.3007,1.4393l-1.7092,7.2022A2.0226,2.0226,0,0,1,40.757,49.4724Z"/>
+    <ellipse cx="56.0942" cy="41.1927" rx="0.5" ry="1" transform="translate(-8.4062 67.329) rotate(-58.35)" fill="#a57939" stroke="#6a462f" stroke-miterlimit="10"/>
+    <ellipse cx="58.1723" cy="49.9495" rx="1" ry="0.5" transform="translate(-14.8729 73.2599) rotate(-58.35)" fill="#a57939" stroke="#6a462f" stroke-miterlimit="10"/>
+    <path fill="#a57939" stroke="#6a462f" stroke-miterlimit="10" d="M61.243,49.4724c1.3634-.3235,1.9723-2.6772,1.36-5.2572s-2.2138-4.4091-3.5772-4.0856a2.0232,2.0232,0,0,0-1.3007,1.4393l1.7092,7.2022A2.0226,2.0226,0,0,0,61.243,49.4724Z"/>
+    <path fill="#5c9e31" d="M53.5645,48.0205a.5009.5009,0,0,1-.3477-.1406l-2.2627-2.1846L48.6914,47.88a.5.5,0,0,1-.6953-.7188l2.61-2.52a.5.5,0,0,1,.6954,0l2.61,2.52a.5.5,0,0,1-.3476.8594Z"/>
+    <path d="M54.0279,42.7818c-.2013,4.8789-1.8477,7.9393-3.0037,7.9393s-2.8025-3.06-3.0038-7.9393h6.0075m1.02-1H47c0,5.4893,1.8017,9.9393,4.0242,9.9393s4.0241-4.45,4.0241-9.9393Z"/>
+    <ellipse cx="57.5784" cy="38.785" rx="1" ry="1.5" transform="translate(-7.3995 14.3429) rotate(-13.35)" fill="#a57939" stroke="#6a462f" stroke-miterlimit="10"/>
+    <ellipse cx="44.4216" cy="38.785" rx="1.5" ry="1" transform="translate(-3.5722 73.0508) rotate(-76.65)" fill="#a57939" stroke="#6a462f" stroke-miterlimit="10"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e5d2db1
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1E9.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+    <g>
+      <path fill="#d22f27" d="M42,32.1538V44a2.0059,2.0059,0,0,1-2,2H32a2.0059,2.0059,0,0,1-2-2V32.1538"/>
+      <rect x="36" y="32.1538" width="6" height="6.1538" fill="#f1b31c"/>
+      <rect x="30" y="38.3077" width="6" height="7.6923" fill="#f1b31c"/>
+      <ellipse cx="36" cy="38.3077" rx="2.25" ry="2.3077" fill="#6a462f"/>
+      <g>
+        <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30,27.5385A12.5962,12.5962,0,0,1,36,26"/>
+        <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42,27.5385A12.5962,12.5962,0,0,0,36,26"/>
+        <line x1="30" x2="42" y1="32.1538" y2="32.1538" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+        <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42,32.1538V44a2.0059,2.0059,0,0,1-2,2H32a2.0059,2.0059,0,0,1-2-2V32.1538"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..02a6daa
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1EA.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="42" width="62" height="13"/>
+    <rect x="5" y="17" width="62" height="13" fill="#5c9e31"/>
+    <rect x="5" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7985895
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1EB.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="21" height="38"/>
+    <rect x="46" y="17" width="21" height="38" fill="#5c9e31"/>
+    <path fill="#fff" stroke-width="0.845" d="m36 48.88a12.89 12.89 0 0 1-9.111-22 0.845 0.845 0 0 1 1.195 1.195 11.2 11.2 0 1 0 15.83 0 0.845 0.845 0 1 1 1.195-1.195 12.89 12.89 0 0 1-9.111 22z"/>
+    <path fill="#fff" stroke-width="0.8598" d="m39.38 34.52h-6.76a0.845 0.875 0 0 1 0-1.75h6.76a0.845 0.875 0 0 1 0 1.75z"/>
+    <circle cx="36" cy="30.3" r="1.69" fill="#fff" stroke-width="0.845"/>
+    <path fill="#fff" stroke-width="0.8598" d="m41.07 44.76h-10.14a0.845 0.875 0 0 1 0-1.75h10.14a0.845 0.875 0 0 1 0 1.75z"/>
+    <path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.775" d="m32.58 28.68v15.07"/>
+    <path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.766" d="m39.4 28.67v14.91"/>
+    <rect x="-18.88" y="42.61" width="4.161" height="1.607" transform="rotate(-60)" fill="#fff" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.771" paint-order="normal"/>
+    <rect x="50.72" y="-19.75" width="4.161" height="1.607" transform="rotate(60)" fill="#fff" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.771" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..53a0d14
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1EC.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.61 28.038 36 20 36.39 28.038 39.827 20.761 37.111 28.337 43.071 22.929 37.663 28.889 45.239 26.173 37.962 29.61 46 30 37.962 30.39 45.239 33.827 37.663 31.111 43.071 37.071 37.111 31.663 39.827 39.239 36.39 31.962 36 40 35.61 31.962 32.173 39.239 34.889 31.663 28.929 37.071 34.337 31.111 26.761 33.827 34.038 30.39 26 30 34.038 29.61 26.761 26.173 34.337 28.889 28.929 22.929 34.889 28.337 32.173 20.761 35.61 28.038"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#d22f27" points="5 55 36 55 5 17 5 55"/>
+      <polygon fill="#d22f27" points="36 55 67 55 67 17 36 55"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2233806
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1EE.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <path fill="#fff" d="M59,29v5c0,9-2.6667,13-8,15-5.3333-2-8-6-8-15V29Z"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M54.5,32.5c-2.204-.506-3.5006.187-4,2"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M46.5359,35.9019c.6638,2.1617,1.9122,2.9381,3.732,2.4641"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.4641,41.0981c1.54-1.6557,1.5883-3.1251.268-4.4641"/>
+    <path fill="#92d3f5" d="M44.4545,43A10.67,10.67,0,0,0,51,49a10.67,10.67,0,0,0,6.5455-6Z"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M59,29v5c0,9-2.6667,13-8,15-5.3333-2-8-6-8-15V29Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e132b9c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F1.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <g>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 38 40 41 36 38 36 45 36 38 32 41"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 38 36 31 39 27"/>
+      <line x1="36" x2="33" y1="31" y2="27" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="36" x2="42" y1="32.5" y2="32.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="36" x2="42" y1="36" y2="36" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="30" x2="36" y1="32.5" y2="32.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="30" x2="36" y1="36" y2="36" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..fbc642c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F2.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8b3358a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F4.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="17" width="62" height="19" fill="#d22f27"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="36.996 29.035 38.668 34.179 34.291 31 39.701 31 35.325 34.179 36.996 29.035"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M44.804,41.0736q.0544-.081.1073-.163a9.9962,9.9962,0,0,0-6.5995-15.2385"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30.709,43.6426A9.9892,9.9892,0,0,0,39.4737,45.05q.4654-.1448.9107-.3329"/>
+    <line x1="30.415" x2="47" y1="34.6554" y2="46" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1bafa44
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F6-1F48E.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17.08" width="62" height="38" fill="#FFF"/>
+    <path fill="#1E50A0" stroke="#1E50A0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m 5 17.08 l 62 0 l 0 19 l -20.667 0 l -10.333 15.111 l -10.333 -15.111 l -20.667 0 l 0 -19"/>
+    <path fill="#FFF" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m 36 21.468 l 9.833 15.111 l -9.833 3.778 l -9.833 -3.778 l 9.833 -15.111"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2427e01
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F6.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m23.59 33.2c0.1669-0.868-0.04314-1.763-0.5644-1.353-1.067-0.4851-2.39-2.864-2.527-3.269 4.986 3.782 9.793 4.234 10.72-1.684 0.9256-5.918 4.905-4.075 7.306-3.63 2.983 0.4838 6.239 1.854 8.872 3.304 1.459 0.7628 1.705 3.005 1.34 4.707-0.7856 1.686 0.6629 2.657 1.791 3.562 1.517 1.584 0.955 3.955 0.4262 5.831-0.4979 1.562-2.163 3.021-1.797 4.634 0.1987 0.8754-0.9009 1.524-1.493 2.192-2.176 2.243-5.569 2.092-8.394 1.502-1.493 0.02412 0.5204-0.8074 0.1759-1.801 0.6309-1.816-1.043-2.689-2.849-2.888-2.538-0.3144-3.007-0.02543-5.544-0.5997-1.324 0.8931-5.073-0.8008-5.456-2.743-0.3229-1.639-1.799-2.888-2.049-4.516 1.44 0.2821-0.2505-1.575 1.289-2.164-0.07913-0.7664-0.7052-1.763-1.246-1.084z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..dfd723a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F7.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="42" width="62" height="13" fill="#61b2e4"/>
+    <rect x="5" y="17" width="62" height="13" fill="#61b2e4"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="36 33.897 37.236 32 37.176 34.299 39.236 33.528 37.902 35.35 40 36 37.902 36.65 39.236 38.472 37.176 37.701 37.236 40 36 38.103 34.764 40 34.824 37.701 32.764 38.472 34.098 36.65 32 36 34.098 35.35 32.764 33.528 34.824 34.299 34.764 32 36 33.897"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..84327f0
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F8.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <g>
+      <polygon fill="#1e50a0" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="5 17 5 36 67 17 5 17"/>
+      <polygon fill="#1e50a0" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="5 36 5 55 67 55 5 36"/>
+    </g>
+    <g>
+      <g>
+        <path fill="#a57939" d="M46.0234,38.8825s-2.1058-4.7163,5.49-4.297c0,0,1.6922-7.057,12.2217-9.3977,0,0,1.02,9.8122-8.8748,13.31a4.1454,4.1454,0,0,0,3.3844,3.9128c.4513.1048,1.1282-.1048,1.2786,0,.8273.7686-5.2451,1.8956-6.5237,1.5113V41.2056s-2.3511.0525-3.5921-3.0916C49.37,38.114,48.543,36.5419,46.0234,38.8825Z"/>
+        <path fill="#6a462f" d="M52.0944,33.9612S50.9346,25.1529,53.9056,24c0,0,2.85,2,2.85,4Z"/>
+        <path fill="#fff" d="M50.2833,39.3945s-1.8056-2.8619-3.6222-.9055c0,0-2.6263-4.6637,5.0944-4.489Z"/>
+        <path d="M54.4762,44.7153a2.8485,2.8485,0,0,1-1.9824-.5512.75.75,0,0,1-.1406-.8662v0a2.773,2.773,0,0,0,.05-1.2724c-.961-.128-2.6221-.772-3.5879-3.5488a.3236.3236,0,0,0-.1973-.0918c-.1416-.02-.6845.0117-1.7353,1.0625a.76.76,0,0,1-.6973.2011.7519.7519,0,0,1-.541-.4834,4.6707,4.6707,0,0,1,.1728-3.4521,3.31,3.31,0,0,1,2.336-1.5825,11.2583,11.2583,0,0,1,2.3906-.2622c.1279-.002.2793-.0044.375-.0127.0322-.1221.1-.4405.1777-.9258a19.4218,19.4218,0,0,0,.1709-2.3726c.0938-2.5972.209-5.83,2.2207-7.18a.75.75,0,0,1,.5166-.1211,2.6873,2.6873,0,0,1,2.462,2.5547.75.75,0,0,1-1.5,0,1.0927,1.0927,0,0,0-.878-1c-1.1523,1.0738-1.2461,3.6812-1.3222,5.8008a20.1992,20.1992,0,0,1-.1914,2.5674,2.9115,2.9115,0,0,1-.7129,1.8789,2.0372,2.0372,0,0,1-1.295.3106,9.7854,9.7854,0,0,0-2.1015.23,1.8612,1.8612,0,0,0-1.3379.8462,2.1754,2.1754,0,0,0-.2442,1.0464,2.7941,2.7941,0,0,1,1.9854-.5849,1.8,1.8,0,0,1,1.2949.9018.7467.7467,0,0,1,.043.1021c.9531,2.8276,2.6357,2.6528,2.709,2.6411a.7694.7694,0,0,1,.8369.5639,5.5691,5.5691,0,0,1,.1494,2.0977,11.0916,11.0916,0,0,0,3.3262-.4048A4.0469,4.0469,0,0,1,53.85,38.457a.75.75,0,0,1,.3789-.5781,24.4836,24.4836,0,0,0,3.3282-2.2168,6.3988,6.3988,0,0,0-.5147-1.9551.75.75,0,0,1,1.3965-.5488c.81,2.062.61,2.9351.53,3.1533a.75.75,0,0,1-.2266.3194A25.0572,25.0572,0,0,1,55.35,38.9668a2.6623,2.6623,0,0,0,.5957,1.5029,3.3445,3.3445,0,0,0,2.4336.9829c.5713.0342,1.6338.0977,1.8155.9034.0742.3281.0049.8066-.7461,1.2207A13.0255,13.0255,0,0,1,54.4762,44.7153Z"/>
+        <path d="M51.7565,35.75a.76.76,0,0,1-.1045-.0073.7506.7506,0,0,1-.64-.8462c.415-2.9732,5.1005-6.7349,5.6328-7.1538.2041-.15,4.55-3.3047,7.5214-3.3047a.749.749,0,0,1,.7354.604A11.0427,11.0427,0,0,1,62.08,34.0674a.75.75,0,0,1-1.2216-.1563,12.405,12.405,0,0,0-1.4707-2.2187.75.75,0,1,1,1.0839-1.0371,9.9241,9.9241,0,0,1,1.1612,1.5893,9.6344,9.6344,0,0,0,1.873-6.2441,18.1327,18.1327,0,0,0-5.9531,2.937c-1.2959,1.02-4.7734,4.1509-5.0537,6.166A.751.751,0,0,1,51.7565,35.75Z"/>
+        <path d="M50.6842,43.958a.7571.7571,0,0,1-.2031-.0278,4.3691,4.3691,0,0,0-1.376-.1953A.75.75,0,0,1,48.1305,42.6a2.2712,2.2712,0,0,1,1.9444-.3l.1835-1.1016a.75.75,0,0,1,1.48.2471l-.3144,1.8862a.7513.7513,0,0,1-.74.6265Zm-1.6133-.2153Zm.12-.0816-.001.001Z"/>
+      </g>
+      <g>
+        <line x1="42.7555" x2="54.7555" y1="42" y2="47" fill="#fff"/>
+        <path d="M54.7555,47.75a.7485.7485,0,0,1-.2881-.0576l-12-5a.75.75,0,1,1,.5762-1.3848l12,5a.75.75,0,0,1-.2881,1.4424Z"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5c38e63
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1F9.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="42" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..73396fa
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1FA.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="54.233 38.945 55.16 35.945 56.087 38.945 53.66 37.09 56.66 37.091 54.233 38.945"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="20.5 46.999 18.942 48.476 19.097 46.306 17 45.978 18.75 44.748 17.693 42.862 19.721 43.499 20.5 41.476 21.279 43.499 23.307 42.862 22.25 44.748 24 45.978 21.903 46.306 22.058 48.476 20.5 46.999"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="44.5 35.421 43.387 36.476 43.498 34.926 42 34.691 43.25 33.813 42.495 32.466 43.944 32.921 44.5 31.476 45.056 32.921 46.505 32.466 45.75 33.813 47 34.691 45.502 34.926 45.613 36.476 44.5 35.421"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="59.5 32.421 58.387 33.476 58.498 31.926 57 31.691 58.25 30.813 57.495 29.466 58.944 29.921 59.5 28.476 60.056 29.921 61.505 29.466 60.75 30.813 62 31.691 60.502 31.926 60.613 33.476 59.5 32.421"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="51.5 26.421 50.387 27.476 50.498 25.926 49 25.691 50.25 24.813 49.495 23.466 50.944 23.921 51.5 22.476 52.056 23.921 53.505 23.466 52.75 24.813 54 25.691 52.502 25.926 52.613 27.476 51.5 26.421"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="51.5 47.421 50.387 48.476 50.498 46.926 49 46.691 50.25 45.813 49.495 44.466 50.944 44.921 51.5 43.476 52.056 44.921 53.505 44.466 52.75 45.813 54 46.691 52.502 46.926 52.613 48.476 51.5 47.421"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..14c99ae
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1FC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="47" width="62" height="2" fill="#f1b31c"/>
+    <rect x="5" y="43" width="62" height="2" fill="#f1b31c"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="12.707 23.293 16 24 12.707 24.707 12 28 11.293 24.707 8 24 11.293 23.293 12 20 12.707 23.293"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f079d9b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1FD.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#d22f27" stroke="#f1b31c" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b977813
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6-1F1FF.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="42" width="62" height="13" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#61b2e4"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="38.436 34.61 39.022 33 39.584 34.618 41.137 33.894 40.39 35.436 42 36.022 40.382 36.584 41.106 38.137 39.564 37.39 38.978 39 38.416 37.382 36.863 38.106 37.61 36.564 36 35.978 37.618 35.416 36.894 33.863 38.436 34.61"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M30.5307,36a4.0529,4.0529,0,0,1,3.3784-3.9236A4.3955,4.3955,0,0,0,33.0983,32a4.0043,4.0043,0,1,0,0,8,4.3955,4.3955,0,0,0,.8108-.0764A4.0529,4.0529,0,0,1,30.5307,36Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..efe5f9b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E6.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36.5" cy="36.5" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m36.9189,21.6057c-.1572-.3677-.519-.606-.9189-.606s-.7617.2383-.9189.606l-12,28c-.2178.5078.0176,1.0957.5249,1.313.5083.2188,1.0962-.0176,1.313-.5249l2.6202-6.1138h16.9216l2.6202,6.1138c.1621.3789.5312.6064.9194.6064.1313,0,.2651-.0264.3936-.0815.5073-.2173.7427-.8052.5249-1.313,0,0-12-28-12-28Zm-8.5226,20.6743l7.6037-17.7417,7.6037,17.7417s-15.2074,0-15.2074,0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..bd52ef5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1E6.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#f1b31c" points="50 55 15 17 50 17 50 55"/>
+    <circle cx="11.1" cy="18" r="1.75" fill="#fff"/>
+    <circle cx="44.1" cy="54" r="1.75" fill="#fff"/>
+    <circle cx="40.1" cy="49.5" r="1.75" fill="#fff"/>
+    <circle cx="35.1" cy="45" r="1.75" fill="#fff"/>
+    <circle cx="31.1" cy="40.5" r="1.75" fill="#fff"/>
+    <circle cx="23.1" cy="31.5" r="1.75" fill="#fff"/>
+    <circle cx="27.1" cy="36" r="1.75" fill="#fff"/>
+    <circle cx="15.1" cy="22.5" r="1.75" fill="#fff"/>
+    <circle cx="19.1" cy="27" r="1.75" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..666acbf
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1E7.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon id="_" stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="33.415 29.501 36 26.712 38.585 29.501 37.943 30.096 36.439 28.467 36.439 45.288 35.561 45.288 35.561 28.467 34.057 30.096 33.415 29.501"/>
+      <polygon id="_2" stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="41.5 39.212 40.703 39.212 40.703 31.9 39.685 33.003 39.25 32.6 41.5 30.212 41.5 39.212"/>
+      <polygon id="_3" stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="30.5 30.212 32.75 32.6 32.315 33.003 31.297 31.9 31.297 39.212 30.5 39.212 30.5 30.212"/>
+      <polygon id="_4" stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="41.5 39.297 30.5 39.297 30.5 38.703 41.5 38.703 41.5 39.297"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..611f87c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1E9.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <circle cx="36" cy="36" r="9" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..bb093af
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1EA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="21" height="38"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e6451b0
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1EB.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="19" fill="#d22f27"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="33.688 39.509 36.16 31.509 38.632 39.509 32.16 34.564 40.16 34.564 33.688 39.509"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..74c7006
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1EC.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="42" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..86625d2
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1ED.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <path fill="#fff" d="m21 18-16-1v38l16-1 9.067-3.6-9.067-3.6 9.067-3.6-9.067-3.6 8.933-3.6-8.933-3.6 8.933-3.6-8.933-3.6 8.933-3.6z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..64b8853
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1EE.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <polygon fill="#d22f27" points="63.173 17 8.827 17 36 33.654 63.173 17"/>
+    <polygon fill="#d22f27" points="63.173 55 36 38.346 8.827 55 63.173 55"/>
+    <polygon fill="#5c9e31" points="67 19.346 39.827 36 67 52.654 67 19.346"/>
+    <polygon fill="#5c9e31" points="5 52.654 32.173 36 5 19.346 5 52.654"/>
+    <circle cx="36" cy="36" r="10" fill="#fff"/>
+    <circle cx="36" cy="31" r="2" fill="#d22f27"/>
+    <circle cx="40.3301" cy="38.5" r="2" fill="#d22f27"/>
+    <circle cx="31.6699" cy="38.5" r="2" fill="#d22f27"/>
+    <line x1="31.6699" x2="36" y1="38.5" y2="36" fill="none"/>
+    <line x1="40.3301" x2="36" y1="38.5" y2="36" fill="none"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9643930
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1EF.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3b5b5c9
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F1.svg
@@ -0,0 +1,36 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <g>
+      <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="43.5 25.91 44.5 22.91 27.5 22.91 28.5 25.91 43.5 25.91"/>
+      <path fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" d="M36,45.91s7.5-2.5,7.5-10v-10h-15v10C28.5,43.41,36,45.91,36,45.91Z"/>
+      <path fill="#d22f27" stroke="#d22f27" stroke-miterlimit="10" d="M28.5,32.41v3.5a10.1844,10.1844,0,0,0,.3063,2.5H43.1938a10.1845,10.1845,0,0,0,.3062-2.5v-3.5Z"/>
+      <g>
+        <g>
+          <line x1="36" x2="36" y1="30.1603" y2="27.6603" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+          <line x1="35.375" x2="36.625" y1="28.4936" y2="28.4936" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+        </g>
+        <g>
+          <line x1="40.5" x2="40.5" y1="30.1603" y2="27.6603" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+          <line x1="39.875" x2="41.125" y1="28.4936" y2="28.4936" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+        </g>
+        <g>
+          <line x1="31.5" x2="31.5" y1="30.1603" y2="27.6603" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+          <line x1="30.875" x2="32.125" y1="28.4936" y2="28.4936" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+        </g>
+      </g>
+      <g>
+        <line x1="36" x2="36" y1="36.6603" y2="34.1603" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="37.25" x2="34.75" y1="35.4103" y2="35.4103" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+      </g>
+      <circle cx="36" cy="43.9103" r="1" fill="#fcea2b"/>
+      <circle cx="33" cy="40.9103" r="1" fill="#fcea2b"/>
+      <circle cx="39" cy="40.9103" r="1" fill="#fcea2b"/>
+      <path fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M47,46.2692A23.0924,23.0924,0,0,1,36,49.09"/>
+      <path fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M25,46.2692A23.093,23.093,0,0,0,36,49.09"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..398ea4e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F2.svg
@@ -0,0 +1,32 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="31" height="19" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <rect x="44" y="29" width="20" height="17" fill="#fff"/>
+    <path fill="#5c9e31" d="M43.9133,45v.4933a3.8071,3.8071,0,0,0,.1237,1.2247,3.8582,3.8582,0,0,0,.269.6564,4.561,4.561,0,0,0,.3533.5593,4.0657,4.0657,0,0,0,.399.4567,5.2435,5.2435,0,0,0,.56.4889c.2175.16.43.3255.6594.4672.2.1233.4038.2394.6066.3575.25.1455.5135.26.7682.3929.2874.1505.592.2574.8871.388.1621.0718.3281.1354.4954.1933.112.0388.2221.0881.3348.1181.1877.05.3638.134.5536.1776.1633.0376.3182.109.482.15.1116.0279.22.07.33.1027.1142.0333.2284.0688.3449.0912.13.025.2575.0616.3836.0962s.2539.0741.3807.0974c.1951.0358.3832.0989.5786.1336.1883.0334.3758.0774.5629.1192.0781.0174.1576.02.2334.0391a4.9463,4.9463,0,0,0,.6426.1149.305.305,0,0,0,.2166-.001,1.4022,1.4022,0,0,0,.1538-.0116c.1857-.0345.37-.0805.5563-.1055.0979-.0131.1939-.0371.29-.056.1657-.0328.3306-.0736.4958-.1114.0707-.0163.1438-.0237.2122-.0452.1471-.0463.2983-.0717.4472-.1089.1281-.0321.2591-.0541.3847-.0946.1728-.0557.35-.0944.5236-.1442a3.4119,3.4119,0,0,0,.3336-.0947,4.1273,4.1273,0,0,1,.4371-.1379c.1871-.0518.3675-.1233.5534-.1782.24-.0711.4728-.172.7076-.263.1879-.0729.3772-.1417.5607-.2272q.2709-.126.5451-.2443c.24-.1031.47-.225.7015-.344a4.6368,4.6368,0,0,0,.4491-.2594c.2123-.1413.2954-.4162.4545-.62.1833-.235.395-.4463.5779-.6818a5.3028,5.3028,0,0,0,.368-.5522c.1687-.2846.3237-.5771.4785-.87l.2008-.3793.369-.6969A1.2625,1.2625,0,0,0,63.9982,45Z"/>
+    <circle cx="56.25" cy="31.75" r="1" fill="#d22f27"/>
+    <circle cx="51.75" cy="31.75" r="1" fill="#d22f27"/>
+    <rect x="51" y="31" rx="2.5" ry="2.5" width="6" height="8" fill="#d22f27"/>
+    <rect x="58" y="40" rx="1" ry="1" width="4" height="2" fill="#d22f27"/>
+    <rect x="56" y="46" rx="1" ry="1" width="4" height="2" transform="translate(50.2218 -27.2462) rotate(45)" fill="#d22f27"/>
+    <rect x="48" y="46" rx="1" ry="1" width="4" height="2" transform="translate(118.5894 44.8787) rotate(135)" fill="#d22f27"/>
+    <rect x="46" y="40" rx="1" ry="1" width="4" height="2" fill="#d22f27"/>
+    <path fill="#92d3f5" d="M60,36c-2.5714,2.3636-6,0-6,0s-3.4286,2.3636-6,0v2.3636a2.0759,2.0759,0,0,1,0,2.3637S48.8571,49,54,49s6-8.2727,6-8.2727a2.0759,2.0759,0,0,1,0-2.3637Z"/>
+    <path fill="none" stroke="#000000" stroke-miterlimit="10" d="M53.75,28.5H43.5V43.54s0,7.52,10.25,8.46C64,51.06,64,43.54,64,43.54V28.5Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..511b840
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F3.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <path fill="#fff" stroke="#fff" stroke-miterlimit="10" d="M5,19v5L67,47V42Z"/>
+    <path stroke="#000" stroke-miterlimit="10" d="M5,25v5L67,53V48Z"/>
+    <g fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
+      <path d="M41.528 34.915c.30362 .71783 .47151 1.507 .47151 2.3355 0 3.3137-2.6863 6-6 6s-6-2.6863-6-6c0-.82843 .16789-1.6176 .47151-2.3355"/>
+      <path d="M36 28v12.5"/>
+      <path d="M42 43.25c-3.7143 3.1429-8.1429 3.2143-12 0"/>
+      <path d="M26 41.75v-5.75l-2-4.25"/>
+      <path d="M46 41.75v-5.25l2-4.75"/>
+      <path d="M39.385 31.592c-2.2775-.81785-4.6618-.75339-6.8641-.02937"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8624f7c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F4.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="42" width="62" height="13" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <g>
+      <ellipse cx="38.5" cy="33.2" rx="2.2" ry="1.2" transform="translate(-12.1996 36.9477) rotate(-45)"/>
+      <ellipse cx="34.5" cy="33.2" rx="1.2" ry="2.2" transform="translate(-13.3711 34.1192) rotate(-45)"/>
+      <ellipse cx="36.5" cy="36.8667" rx="2" ry="3.1333" fill="#61b2e4"/>
+      <path fill="#d22f27" d="M40,41a1,1,0,0,1-.707-1.707,1.725,1.725,0,0,0-.0059-2.5918,1,1,0,0,1,1.42-1.4082,3.7206,3.7206,0,0,1,0,5.414A.9967.9967,0,0,1,40,41Z"/>
+      <path fill="#d22f27" d="M32.8887,41a.9971.9971,0,0,1-.7071-.293,3.7208,3.7208,0,0,1,0-5.414,1,1,0,0,1,1.419,1.41,1.7242,1.7242,0,0,0-.0049,2.59A1,1,0,0,1,32.8887,41Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ede8c6f
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F6.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round"/>
+    <polygon fill="#fff" points="5 17 5 55 67 17 5 17"/>
+    <g>
+      <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="19.518 31 23.132 37.259 15.904 37.259 19.518 31"/>
+      <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="19.518 39.345 15.904 33.086 23.132 33.086 19.518 39.345"/>
+    </g>
+    <circle cx="19.518" cy="35.1726" r="6" fill="none" stroke="#000" stroke-miterlimit="10"/>
+    <polygon fill="#f1b31c" points="5 17 5 33 30 17 5 17"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1471c7a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F7.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <polygon fill="#fcea2b" points="59.023 36.023 35.866 50.653 12.977 36.291 36.134 21.661 59.023 36.023"/>
+    <circle cx="36" cy="36" r="9" fill="#1e50a0"/>
+    <path fill="#fff" d="M44.1587,39.7815a9.0459,9.0459,0,0,0,.6963-2.2587,11.4735,11.4735,0,0,0-17.4766-4.0415,8.9839,8.9839,0,0,0-.3529,2.0137,10.9983,10.9983,0,0,1,17.1332,4.2865Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0549b83
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F8.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="42" width="62" height="13" fill="#61b2e4"/>
+    <rect x="5" y="17" width="62" height="13" fill="#61b2e4"/>
+    <polyline points="5 17 26 36 5 55"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d0f0a88
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1F9.svg
@@ -0,0 +1,24 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#f1b31c" points="5 17 5 55 67 17"/>
+    <g>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m46.24 27.67c0.2011 0.1408-9.044-2.459-5.06 6.075 3.623 7.761-10.23-2.525-11.32 3.865-0.7428 4.356-3.086 7.037-7.395 7.782"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m40.81 32.58c2.651 1.756 5.4 3.373 7.745 1.011"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m41.33 36.44c-0.966 4.229-0.4486 4.465 2.864 5.502"/>
+      <circle cx="46.92" cy="43.06" r="1.5" fill="#fff"/>
+      <circle cx="51.01" cy="32.07" r="1.5" fill="#fff"/>
+      <g transform="matrix(1.5 0 0 1.5 -22.39 -22.64)" stroke-width="0.6667">
+        <circle cx="35.19" cy="47.37" r="1" fill="#fff" stroke-width="0.4444"/>
+      </g>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m29.21 40.36c1.304 2.327 1.453 3.054 1.085 5.196"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m29.3 38.71c1.54 0.5389 2.636 1.603 4.377 1.421"/>
+      <g transform="matrix(1.5 0 0 1.5 -16.34 -31.18)" stroke-width="0.6667">
+        <circle cx="35.19" cy="47.37" r="1" fill="#fff" stroke-width="0.4444"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..917a8a5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1FB.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polygon fill="#1e50a0" stroke="#fff" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e0b11bb
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1FC.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="31" width="62" height="10" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8b43ae0
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1FE.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="42" width="62" height="13" fill="#5c9e31"/>
+    <rect x="5" y="17" width="12" height="38" fill="#fff"/>
+    <rect x="9.0252" y="19.5251" width="4.9497" height="4.9497" transform="translate(-12.1881 14.5754) rotate(-45)" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="9.0252" y="26.5251" width="4.9497" height="4.9497" transform="translate(-17.1378 16.6257) rotate(-45)" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="9.0252" y="33.5251" width="4.9497" height="4.9497" transform="translate(-22.0876 18.6759) rotate(-45)" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="9.0252" y="40.5251" width="4.9497" height="4.9497" transform="translate(-27.0373 20.7262) rotate(-45)" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="9.0252" y="47.5251" width="4.9497" height="4.9497" transform="translate(-31.9871 22.7764) rotate(-45)" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..bf042b6
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7-1F1FF.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5.0834" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5.0834" y="49" width="62" height="6" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="6" fill="#d22f27"/>
+    <circle cx="36.0834" cy="36" r="9" fill="#fff"/>
+    <circle cx="36.0834" cy="36" r="7.5" fill="#fff" stroke="#5c9e31" stroke-miterlimit="10"/>
+    <g>
+      <polygon fill="#fcea2b" points="38.583 38.5 36.083 38.5 36.083 33 39.083 33 38.583 38.5"/>
+      <path fill="#61b2e4" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" d="M36.0833,41a4.9451,4.9451,0,0,0,2.5876-2.2291L36,36.1l-2.5576,2.5576A4.9084,4.9084,0,0,0,36.0833,41Z"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M36.0834,41s3-1,3-4V33h-6v4C33.0834,40,36.0834,41,36.0834,41Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5.0834" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..abe8554
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E7.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36.5" cy="36.5" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m46.8259,29.022c0-4.3979-3.5781-7.9761-7.9761-7.9761h-10.6758c-.5522,0-1,.4478-1,1v27.9082c0,.5522.4478,1,1,1h10.6758c4.3979,0,7.9761-3.5781,7.9761-7.9761,0-2.9995-1.666-5.6177-4.1216-6.978,2.4556-1.3604,4.1216-3.9785,4.1216-6.978Zm-2,13.9561c0,3.2954-2.6807,5.9761-5.9761,5.9761h-9.6758v-11.9482h9.6758c3.2954,0,5.9761,2.6792,5.9761,5.9722h0Zm-5.9761-7.9839c-.0206,0-.0378.0105-.058.0117h-9.6177v-11.96h9.6758c3.2954,0,5.9761,2.6807,5.9761,5.9761,0,3.293-2.6807,5.9722-5.9761,5.9722h-.0001Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ad091cf
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1E6.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="17" height="38" fill="#d22f27"/>
+    <rect x="50" y="17" width="17" height="38" fill="#d22f27"/>
+    <line x1="36" x2="36" y1="46" y2="41" fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 41 42.8 41 42 39 46 35 46 32 43 32 39 36 39 29 36 26"/>
+    <polyline fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 41 29.2 41 30 39 26 35 26 32 29 32 33 36 33 29 36 26"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..31cc2f8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1E8.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="52.233 39.354 53.16 36.354 54.087 39.354 51.66 37.5 54.66 37.5 52.233 39.354"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="42.5 35.831 41.387 36.885 41.498 35.336 40 35.101 41.25 34.223 40.495 32.876 41.944 33.331 42.5 31.885 43.056 33.331 44.505 32.876 43.75 34.223 45 35.101 43.502 35.336 43.613 36.885 42.5 35.831"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="57.5 32.831 56.387 33.885 56.498 32.336 55 32.101 56.25 31.223 55.495 29.876 56.944 30.331 57.5 28.885 58.056 30.331 59.505 29.876 58.75 31.223 60 32.101 58.502 32.336 58.613 33.885 57.5 32.831"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="49.5 26.831 48.387 27.885 48.498 26.336 47 26.101 48.25 25.223 47.495 23.876 48.944 24.331 49.5 22.885 50.056 24.331 51.505 23.876 50.75 25.223 52 26.101 50.502 26.336 50.613 27.885 49.5 26.831"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="49.5 47.831 48.387 48.885 48.498 47.336 47 47.101 48.25 46.223 47.495 44.876 48.944 45.331 49.5 43.885 50.056 45.331 51.505 44.876 50.75 46.223 52 47.101 50.502 47.336 50.613 48.885 49.5 47.831"/>
+    <circle cx="13" cy="25" r="4" fill="#fcea2b"/>
+    <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" d="M32.98,42.5958A6.5958,6.5958,0,1,1,36,30.13,8.3947,8.3947,0,1,0,36,41.87,6.6516,6.6516,0,0,1,32.98,42.5958Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0d8f517
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1E9.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <polygon fill="#d22f27" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="67 24 67 17 59 17 5 48 5 55 13 55 67 24"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="12.348 30.583 14.671 23.583 16.674 30.476 11.11 26.322 18.11 26.15 12.348 30.583"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7313b4d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1EB.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="17" width="62" height="10" fill="#1e50a0"/>
+    <rect x="5" y="27" width="62" height="9" fill="#fff"/>
+    <rect x="5" y="36" width="62" height="9" fill="#5c9e31"/>
+    <rect x="33" y="17" width="6" height="38" fill="#d22f27"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="12.906 19.603 14.451 24.603 10.406 21.513 15.406 21.513 11.361 24.603 12.906 19.603"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b6ccf4c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1EC.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#5c9e31" points="5 17 5 55 67 17 5 17"/>
+    <polygon fill="#f1b31c" points="67 17 54 17 5 55 18 55 67 17"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a9139bf
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1ED.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="17" y="17" width="38" height="38" fill="#d22f27"/>
+    <polygon fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width="2" points="47 32.462 39.538 32.462 39.538 25 32.462 25 32.462 32.462 25 32.462 25 39.538 32.462 39.538 32.462 47 39.538 47 39.538 39.538 47 39.538 47 32.462"/>
+  </g>
+  <g id="line">
+    <rect x="17" y="17" width="38" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3908c96
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1EE.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#e27022"/>
+    <rect x="46" y="17" width="21" height="38" fill="#5c9e31"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b8eb2af
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1F0.svg
@@ -0,0 +1,42 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <circle cx="51.1" cy="50" r="1.75" fill="#fff"/>
+      <circle cx="51.1" cy="30" r="1.75" fill="#fff"/>
+      <g>
+        <circle cx="56.1" cy="48.6603" r="1.75" fill="#fff"/>
+        <circle cx="46.1" cy="31.3397" r="1.75" fill="#fff"/>
+      </g>
+      <circle cx="41.1" cy="40" r="1.75" fill="#fff"/>
+      <circle cx="61.1" cy="40" r="1.75" fill="#fff"/>
+      <g>
+        <circle cx="59.7603" cy="45" r="1.75" fill="#fff"/>
+        <circle cx="42.4398" cy="35" r="1.75" fill="#fff"/>
+      </g>
+      <g>
+        <circle cx="46.1" cy="48.6603" r="1.75" fill="#fff"/>
+        <circle cx="56.1" cy="31.3397" r="1.75" fill="#fff"/>
+      </g>
+      <g>
+        <circle cx="42.4398" cy="45" r="1.75" fill="#fff"/>
+        <circle cx="59.7603" cy="35" r="1.75" fill="#fff"/>
+      </g>
+    </g>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..24013b9
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1F1.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+    <rect x="5" y="17" width="21" height="19" fill="#1e50a0"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="12.688 30.445 15.16 22.445 17.632 30.445 11.16 25.5 19.16 25.5 12.688 30.445"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..fd78340
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1F2.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+    <rect x="46" y="17" width="21" height="38" fill="#f1b31c"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="33.528 40 36 32 38.473 40 32 35.055 40 35.056 33.528 40"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..372b56b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1F3.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <circle cx="24" cy="34" r="1.75" fill="#f1b31c"/>
+    <circle cx="24" cy="24" r="1.75" fill="#f1b31c"/>
+    <circle cx="28" cy="31" r="1.75" fill="#f1b31c"/>
+    <circle cx="28" cy="26" r="1.75" fill="#f1b31c"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="13.528 32.445 16 24.445 18.473 32.445 12 27.5 20 27.5 13.528 32.445"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5528b94
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1F4.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="45" width="62" height="10" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="9" fill="#1e50a0"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..13f31d8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1F5.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d3df24c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1F7.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="29.5" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="49" width="62" height="6" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="6" fill="#1e50a0"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..08fabdf
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1FA.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="32" width="62" height="8" fill="#1e50a0"/>
+    <rect x="5" y="47" width="62" height="8" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="8" fill="#1e50a0"/>
+    <path fill="#d22f27" d="m5 55-1e-6 -19 1e-6 -19 32.91 19-16.45 9.5z"/>
+    <path transform="rotate(-120 15.368 32.9) scale(.8682)" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m19.5 39.74-4.253-0.8137-2.241 3.705-0.5402-4.296-4.216-0.9863 3.919-1.841-0.3648-4.314 2.962 3.158 3.991-1.68-2.088 3.793z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5e21396
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1FB.svg
@@ -0,0 +1,31 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="41" width="62" height="6" fill="#d22f27" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <g>
+      <g>
+        <circle cx="25.1" cy="51" r="1.75" fill="#f1b31c"/>
+        <circle cx="25.1" cy="37" r="1.75" fill="#f1b31c"/>
+      </g>
+      <g>
+        <circle cx="29.2145" cy="49.6631" r="1.75" fill="#f1b31c"/>
+        <circle cx="20.9855" cy="38.3369" r="1.75" fill="#f1b31c"/>
+      </g>
+      <g>
+        <circle cx="29.2145" cy="38.3369" r="1.75" fill="#f1b31c"/>
+        <circle cx="20.9855" cy="49.6631" r="1.75" fill="#f1b31c"/>
+      </g>
+      <g>
+        <circle cx="31.7574" cy="41.8369" r="1.75" fill="#f1b31c"/>
+        <circle cx="18.4426" cy="46.1631" r="1.75" fill="#f1b31c"/>
+      </g>
+      <g>
+        <circle cx="31.7574" cy="46.1631" r="1.75" fill="#f1b31c"/>
+        <circle cx="18.4426" cy="41.8369" r="1.75" fill="#f1b31c"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d6511c3
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1FC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="41" width="62" height="6" fill="#f1b31c"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="17.5 26 19.045 31 15 27.91 20 27.91 15.955 31 17.5 26"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="11.5 21 13.045 26 9 22.91 14 22.91 9.955 26 11.5 21"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..aacdb27
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1FD.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#5c9e31" points="67 17 67 55 5 17 67 17"/>
+    <circle cx="36" cy="36" r="9" fill="#f1b31c"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="18.174 44.737 18.87 42.487 19.565 44.737 17.745 43.346 19.995 43.346 18.174 44.737"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="10.875 42.094 10.041 42.885 10.123 41.723 9 41.547 9.938 40.889 9.371 39.878 10.458 40.219 10.875 39.135 11.292 40.219 12.379 39.878 11.813 40.889 12.75 41.547 11.627 41.723 11.709 42.885 10.875 42.094"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="22.125 39.844 21.291 40.635 21.373 39.473 20.25 39.297 21.188 38.639 20.621 37.628 21.708 37.969 22.125 36.885 22.542 37.969 23.629 37.628 23.063 38.639 24 39.297 22.877 39.473 22.959 40.635 22.125 39.844"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="16.125 35.344 15.291 36.135 15.373 34.973 14.25 34.797 15.188 34.139 14.621 33.128 15.708 33.469 16.125 32.385 16.542 33.469 17.629 33.128 17.063 34.139 18 34.797 16.877 34.973 16.959 36.135 16.125 35.344"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="16.125 51.094 15.291 51.885 15.373 50.723 14.25 50.547 15.188 49.889 14.621 48.878 15.708 49.219 16.125 48.135 16.542 49.219 17.629 48.878 17.063 49.889 18 50.547 16.877 50.723 16.959 51.885 16.125 51.094"/>
+    <path fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" d="M31.6167,33.9578a3.9219,3.9219,0,0,1,1.3637.618,3.7837,3.7837,0,0,0,4.1357.1622,7.3908,7.3908,0,0,0,1.383-1.2213l1.3647-1.4247a1.767,1.767,0,0,0,1.2557.0939,5.833,5.833,0,0,0,.6047,3.0157,7.2091,7.2091,0,0,0-2.5037,2.7337,10.1762,10.1762,0,0,0-.4691,2.74,2.3962,2.3962,0,0,1-.2922,1.0169.9378.9378,0,0,1-.8912.47c-.6224-.1-.8053-.9185-.7177-1.5428s.2827-1.3239-.0822-1.838a2.008,2.008,0,0,0-1.2545-.6339l-2.7566-.6358c-.644-.1485-1.4613-.2346-1.8317.3128a.55.55,0,0,1-.1781.2081c-.2479.1248-.4224-.2919-.3351-.5554a4.2479,4.2479,0,0,1,1.0534-1.3153c.3756-.4246.6276-1.1023.26-1.5345C31.2641,34.0837,31.3394,33.9275,31.6167,33.9578Z"/>
+    <line x1="49.4349" x2="62.4349" y1="30.2958" y2="26.2958" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="54.5" x2="58.5" y1="24.5" y2="27.5" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="58.5 21.5 59.85 24.125 58.5 27.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c746104
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1FE.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <path fill="#e27022" stroke="#e27022" stroke-linecap="round" stroke-linejoin="round" d="M53.3956,25.8867a22.4569,22.4569,0,0,0-3.912,1.7784,1.2328,1.2328,0,0,1-1.08.2357,8.4457,8.4457,0,0,1-2.772,1.677c-.5144.188-1.0457.3253-1.5759.4624l-1.6436.4247a15.6892,15.6892,0,0,1-2.54.5091,15.6949,15.6949,0,0,1-2.77-.084l-1.9812-.1773a4.5448,4.5448,0,0,1-2.4609-.7106,4.9509,4.9509,0,0,1,.1615,2.3536c-.1173.6706-.511,1.4233-1.19,1.4691a2.816,2.816,0,0,1-1.23-.4253,2.6661,2.6661,0,0,0-2.2932.1061c-.4684.4485-.66,1.1472-1.1813,1.533-.6371.4716-1.1327.1157-1.7391-.107-.9379-.3444-.4842.42-.2224,1.0519a2.6344,2.6344,0,0,1,.1524,1.4925,2.1325,2.1325,0,0,1,1.1052,1.9224,26.0579,26.0579,0,0,0,2.93,1.3147,2.6293,2.6293,0,0,0,.9883.225c.516-.0153.9953-.3174,1.5114-.3086a1.3283,1.3283,0,0,1,1.2364,1.4653,3.4945,3.4945,0,0,1,1.24-.0275c-.546-.35-.327-1.2705.2195-1.62a3.8876,3.8876,0,0,1,1.8876-.365,8.0513,8.0513,0,0,0,3.78-1.2291,1.4765,1.4765,0,0,1,1.16-.3631c.55-.3392.2986-1.22.63-1.775.3865-.6478,1.3656-.5691,2.0385-.228a1.159,1.159,0,0,0,.58.1884,1.3224,1.3224,0,0,0,.5192-.22,2.29,2.29,0,0,1,2.3387.11,12.3481,12.3481,0,0,0-2.3708-2.9752,3.5207,3.5207,0,0,1,.1563-1.458,1.2014,1.2014,0,0,1,1.1224-.8041,1.5714,1.5714,0,0,0,.377.0285c.2865-.0456.4344-.3548.5849-.6028.8345-1.3751,2.8112-1.5874,3.86-2.8067a4.6449,4.6449,0,0,1,.534-.6082,4.9435,4.9435,0,0,1,1.1279-.5264A1.0671,1.0671,0,0,0,53.3956,25.8867Z"/>
+    <g>
+      <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23.5,42a18.0342,18.0342,0,0,0,11,4"/>
+      <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M48.5,42a18.0339,18.0339,0,0,1-11,4"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2855a51
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8-1F1FF.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+    <path fill="#1e50a0" d="m36 36-31 18.6v-37.2z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..766c808
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E8.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36.5" cy="35.5" r="27.5" fill="#fff"/>
+    <path d="m36.6819,23c2.2046,0,4.3257.8042,5.9727,2.2642.4131.3672,1.0464.3281,1.4116-.0845.3667-.4136.3286-1.0454-.0845-1.4121-2.0137-1.7847-4.606-2.7676-7.2998-2.7676-6.0654,0-11,4.9346-11,11v8c0,6.0654,4.9346,11,11,11,2.6943,0,5.2866-.9829,7.2998-2.7676.4131-.3662.4512-.998.0845-1.4116-.3662-.4126-.999-.4521-1.4116-.0845-1.6465,1.4595-3.7676,2.2637-5.9727,2.2637-4.9624,0-9-4.0376-9-9v-8c0-4.9624,4.0376-9,9-9Z"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="m36.6819,23c2.2046,0,4.3257.8042,5.9727,2.2642.4131.3672,1.0464.3281,1.4116-.0845.3667-.4136.3286-1.0454-.0845-1.4121-2.0137-1.7847-4.606-2.7676-7.2998-2.7676-6.0654,0-11,4.9346-11,11v8c0,6.0654,4.9346,11,11,11,2.6943,0,5.2866-.9829,7.2998-2.7676.4131-.3662.4512-.998.0845-1.4116-.3662-.4126-.999-.4521-1.4116-.0845-1.6465,1.4595-3.7676,2.2637-5.9727,2.2637-4.9624,0-9-4.0376-9-9v-8c0-4.9624,4.0376-9,9-9Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4c75505
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9-1F1EA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="30" width="62" height="12" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..89dc8c8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9-1F1EC.svg
@@ -0,0 +1,41 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5.1969" y="17.2454" width="61.6062" height="37.7586" fill="#fff"/>
+    <path fill="#fff" d="m66.8031,44.0739c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,46.0612c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#fff" d="m66.8031,48.0485c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,50.0358c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,55.004s-4.6013-.9446-6.1606-.9936-4.6014.9446-6.1606.9936-4.6014-.9446-6.1606-.9936-4.6013.9446-6.1606.9936-4.6013-.9446-6.1606-.9936-4.6014.9448-6.1606.9936-4.6014-.9459-6.1606-.9936-4.6012.9524-6.1606.9936-4.6006-.9936-6.1606-.9936c-2.0721.2039-4.1295.5358-6.1606.9936v-3.9746c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v3.9746Z"/>
+    <path fill="#fff" d="m66.8031,52.0231c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,38.112c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#fff" d="m66.8031,40.0993c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,42.0866c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#fff" d="m66.8031,44.0739c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,30.1628c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#fff" d="m66.8031,32.1501c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936c-1.5592.0489-4.6014,1.0414-6.1606.9936s-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,34.1374c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#fff" d="m66.8031,36.1247c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,22.2136c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#fff" d="m66.8031,24.2009c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,18.571c-2.0263.3215-4.0854.5428-6.1606.6622-1.5593-.0327-4.6014-.695-6.1606-.6622s-4.6014.695-6.1606.6622-4.6013-.695-6.1606-.6622-4.6013.695-6.1606.6622-4.6014-.6948-6.1606-.6622-4.6014.6941-6.1606.6622-4.6012-.6897-6.1606-.6622-4.6006.6622-6.1606.6622c-2.0721-.1359-4.1295-.3571-6.1606-.6622v-1.3245c2.0311.3052,4.0886.5263,6.1606.6622,1.56,0,4.6011-.6348,6.1606-.6622s4.6014.6304,6.1606.6622,4.6014-.6297,6.1606-.6622,4.6013.6295,6.1606.6622,4.6013-.6295,6.1606-.6622,4.6013.6295,6.1606.6622,4.6013-.6295,6.1606-.6622,4.6013.6295,6.1606.6622c2.0752-.1194,4.1343-.3407,6.1606-.6622v1.3245Z"/>
+    <path fill="#fff" d="m66.8031,20.2263c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#1e50a0" d="m66.8031,26.1882c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <path fill="#fff" d="m66.8031,28.1755c-2.0263.4824-4.0854.8145-6.1606.9936-1.5593-.0491-4.6014-1.0427-6.1606-.9936s-4.6014,1.0427-6.1606.9936-4.6013-1.0427-6.1606-.9936-4.6013,1.0427-6.1606.9936-4.6014-1.0425-6.1606-.9936-4.6014,1.0414-6.1606.9936-4.6012-1.0349-6.1606-.9936-4.6006.9936-6.1606.9936c-2.0721-.2039-4.1295-.5358-6.1606-.9936v-1.9873c2.0311.4579,4.0886.7897,6.1606.9936,1.56,0,4.6011-.9525,6.1606-.9936s4.6014.9459,6.1606.9936,4.6014-.9448,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936,4.6013-.9446,6.1606-.9936,4.6013.9446,6.1606.9936c2.0752-.1792,4.1343-.5113,6.1606-.9936v1.9873Z"/>
+    <rect x="5.1969" y="17.2454" width="30.8031" height="18.8793" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="10.0529 18.239 6.1905 18.239 6.1905 20.5562 32.1377 36.1247 36 36.1247 36 33.8075 10.0529 18.239"/>
+      <polygon fill="#fff" points="36 20.5562 36 18.239 32.1377 18.239 6.1905 33.8075 6.1905 36.1247 10.0529 36.1247 36 20.5562"/>
+      <rect x="6.1905" y="24.2009" width="29.8095" height="5.9619" fill="#fff"/>
+      <rect x="18.1143" y="18.239" width="5.9619" height="17.8857" fill="#fff"/>
+      <rect x="20.1016" y="18.239" width="1.9873" height="17.8857" fill="#d22f27"/>
+      <rect x="6.1905" y="26.1882" width="29.8095" height="1.9873" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.8075 29.9258 30.1628 26.0635 30.1628 36 36.1247 36 33.8075"/>
+      <polygon fill="#d22f27" points="36 18.239 32.1377 18.239 24.0762 23.0761 24.0762 24.2009 26.0635 24.2009 36 18.239"/>
+      <polygon fill="#d22f27" points="6.1905 20.5562 12.2647 24.2009 16.127 24.2009 6.1905 18.239 6.1905 20.5562"/>
+      <polygon fill="#d22f27" points="6.1905 36.1247 10.0529 36.1247 18.1143 31.2876 18.1143 30.1628 16.127 30.1628 6.1905 36.1247"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5.1969" y="17.2454" width="61.6062" height="37.7586" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9873"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..52f2267
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9-1F1EF.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="36" width="62" height="19" fill="#5c9e31"/>
+    <polygon fill="#fff" points="26 36 5 55 5 17 26 36"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="11.413 39.046 13.736 32.046 15.739 38.939 10.175 34.785 17.175 34.613 11.413 39.046"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..19e24b5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9-1F1F0.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0f20e17
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9-1F1F2.svg
@@ -0,0 +1,34 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#186648"/>
+    <rect x="38" y="17" width="4" height="38" fill="#ffffff" stroke-width="2"/>
+    <rect x="5" y="34" width="62" height="4"/>
+    <rect x="5" y="38" width="62" height="4" fill="#ffffff" stroke-width="2"/>
+    <rect x="5" y="30" width="62" height="4" fill="#fcea2b"/>
+    <rect x="34" y="17" width="4" height="38"/>
+    <rect x="30" y="17" width="4" height="38" fill="#fcea2b"/>
+    <circle cx="36" cy="36" r="13" fill="#d22f27"/>
+    <g>
+      <path d="M36.3668,34.9556A5.1,5.1,0,0,0,39.2812,38.46a.2572.2572,0,0,0,.3528-.1087.1829.1829,0,0,0-.0858-.2935h0a4.81,4.81,0,0,1-2.6927-3.1408h0a.2261.2261,0,0,0-.2408-.1658A.2317.2317,0,0,0,36.3668,34.9556Z"/>
+      <path fill="#8967aa" d="m 38.76838,36.930886 -0.04049,-0.07964 c -0.35042,-0.700289 -0.900863,-1.247485 -1.279496,-1.921372 -0.3688,-0.656515 0.523623,-1.402075 1.152692,-1.766677 0.735111,-0.425818 0.540407,-1.883677 0.185768,-2.432192 L 37.245235,28.7955 c 0,0 -0.81116,-1.158456 -3.568533,0.201086 0,0 -3.539239,0.856733 -3.846066,1.5378 0,0 2.683445,-0.73296 2.954423,0.520945 0.270979,1.253904 -1.404094,1.699196 0.241578,4.689899 0,0 1.39113,2.968668 3.114979,3.446877 a 6.2,6.2 0 0 1 2.542156,0.423068 c -0.222069,-0.587995 0.171291,-2.063302 0.08461,-2.684289 z"/>
+      <path d="m 36.546061,40.353075 c -0.02413,-0.0043 -0.04798,-0.0095 -0.0716,-0.01608 -1.880332,-0.521946 -3.872761,-3.835772 -4.093515,-4.211819 -1.156731,-2.193184 -0.677442,-3.058197 -0.08869,-3.758501 0.190669,-0.226735 0.189081,-0.234428 0.171232,-0.324394 -0.0715,-0.308604 -1.465792,-0.825676 -2.947315,-0.971861 a 0.7645,0.7645 0 0 1 -0.575368,-0.370134 0.7471,0.7471 0 0 1 -0.03515,-0.683487 c 0.125943,-0.281203 0.458813,-1.021853 5.183722,-1.908856 a 3.1158,3.1158 0 0 1 3.03469,-0.716314 c 1.632216,0.629901 2.056766,2.90519 2.099993,3.162201 a 0.75,0.75 0 0 1 -1.478873,0.249385 c -0.07498,-0.435131 -0.44983,-1.739743 -1.16317,-2.013269 -0.521466,-0.203036 -1.221084,0.221324 -1.714145,0.611025 a 0.7464,0.7464 0 0 1 -0.328729,0.148777 c -0.811766,0.149916 -1.698281,0.346562 -2.462138,0.545542 a 2.5786,2.5786 0 0 1 1.859247,1.659669 1.7587,1.7587 0 0 1 -0.496261,1.576882 c -0.276065,0.328655 -0.514158,0.612421 0.250862,2.064222 0.753312,1.278636 2.257123,3.238546 3.185376,3.49625 a 0.75,0.75 0 0 1 -0.33,1.4615 z m -6.359238,-9.592806 z"/>
+      <g>
+        <path fill="#186648" d="m 36.064435,37.754768 c -0.30154,-2.450592 1.415024,-5.90865 3.020755,-4.276826 1.605732,1.631823 0.736585,11.198537 0.736585,11.198537 0,0 -3.455817,-4.471021 -3.75734,-6.921711 z"/>
+        <path d="M 39.892396,45.388561 A 0.75,0.75 0 0 1 39.444515,45.12813 c -0.381778,-0.461404 -3.745087,-4.585186 -4.149067,-7.153353 l 8.7e-5,-4.92e-4 c -0.301704,-1.921584 0.463771,-4.649199 1.940178,-5.424198 a 1.8249,1.8249 0 0 1 2.193312,0.388771 c 1.819223,1.72887 1.436977,10.094283 1.342634,11.754016 a 0.75,0.75 0 0 1 -0.879263,0.695687 z M 36.77649,37.74131 c 0.199565,1.263855 1.483043,3.286457 2.5771,4.803688 0.08008,-3.890399 -0.220846,-7.818734 -0.958078,-8.519397 -0.263163,-0.250707 -0.37794,-0.190625 -0.462799,-0.147607 -0.695015,0.364855 -1.394724,2.342293 -1.155239,3.86349 z"/>
+      </g>
+      <circle cx="36" cy="25" r="1" fill="#186648"/>
+      <circle cx="50.2849" cy="-3.0357" r="1" transform="rotate(36)" fill="#186648"/>
+      <circle cx="45.3626" cy="-34.1134" r="1" transform="rotate(72)" fill="#186648"/>
+      <circle cx="23.1134" cy="-56.3626" r="1" transform="rotate(108)" fill="#186648"/>
+      <circle cx="-7.9643" cy="-61.2849" r="1" transform="rotate(144)" fill="#186648"/>
+      <circle cx="-36" cy="-47" r="1" transform="scale(-1)" fill="#186648"/>
+      <circle cx="-50.2849" cy="-18.9643" r="1" transform="rotate(-144)" fill="#186648"/>
+      <circle cx="-45.3626" cy="12.1134" r="1" transform="rotate(-108)" fill="#186648"/>
+      <circle cx="-23.1134" cy="34.3626" r="1" transform="rotate(-72)" fill="#186648"/>
+      <circle cx="7.9643" cy="39.2849" r="1" transform="rotate(-36)" fill="#186648"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d1627da
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9-1F1F4.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="36" width="31" height="19" fill="#d22f27"/>
+    <rect x="36" y="17" width="31" height="19" fill="#d22f27"/>
+    <rect x="5" y="33" width="62" height="6" fill="#fff"/>
+    <rect x="33" y="17" width="6" height="38" fill="#fff"/>
+    <circle cx="36" cy="36" r="3" fill="#5c9e31"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4c6acbc
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9-1F1FF.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="36" y="17" width="31" height="38" fill="#fff"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="43.863 38.5 41.457 33.928 46.034 36.326 41.034 37.018 44.547 33.5 43.863 38.5"/>
+    <path fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M39.2921,44.6429A8.6429,8.6429,0,1,1,43.25,28.3078a11,11,0,1,0,0,15.3844A8.715,8.715,0,0,1,39.2921,44.6429Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..873d654
--- /dev/null
+++ b/static/openmoji-svg-color/1F1E9.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m38.6938,21.052h-9.708c-.5522,0-1,.4478-1,1v27.896c0,.5522.4478,1,1,1h9.708c5.1392,0,9.3203-4.1807,9.3203-9.3198v-11.2602c0-5.1367-4.1811-9.3159-9.3203-9.3159h0Zm7.3203,20.5762c0,4.0361-3.2837,7.3198-7.3203,7.3198h-8.708v-25.896h8.708c4.0366,0,7.3203,3.2817,7.3203,7.3159v11.2602h0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d2b27b5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1E6.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <path fill="#d22f27" d="M23,33v7a2.0059,2.0059,0,0,1-2,2H17a2.0059,2.0059,0,0,1-2-2V33"/>
+    <rect x="5" y="17" width="62" height="9" fill="#d22f27"/>
+    <rect x="5" y="46" width="62" height="9" fill="#d22f27"/>
+    <rect x="19" y="33" width="4" height="4" fill="#f1b31c"/>
+    <circle cx="19" cy="37" r="1.5" fill="#6a462f"/>
+    <g>
+      <line x1="27" x2="27" y1="33" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="11" x2="11" y1="33" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15,30a8.5678,8.5678,0,0,1,4-1"/>
+      <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23,30a8.5678,8.5678,0,0,0-4-1"/>
+      <line x1="15" x2="23" y1="33" y2="33" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23,33v7a2.0059,2.0059,0,0,1-2,2H17a2.0059,2.0059,0,0,1-2-2V33"/>
+      <line x1="10" x2="12" y1="42" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="26" x2="28" y1="42" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1e4549a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1E8.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="45" width="62" height="10" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="9" fill="#1e50a0"/>
+    <ellipse cx="36" cy="36" rx="4.5" ry="6" fill="#92d3f5"/>
+    <path fill="#5c9e31" d="M40.5,36c0,3.3137-2.0147,6-4.5,6s-4.5-2.6863-4.5-6Z"/>
+    <line x1="36" x2="36" y1="46" y2="42" fill="none" stroke="#d22f27" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42.0652,42A10.9284,10.9284,0,0,0,44.5,35V30H46"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M26,30h1.5v5a10.9284,10.9284,0,0,0,2.4348,7"/>
+    <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M29,26c3.5-1,5.25,0,7,3,1.75-3,3.5-4,7-3"/>
+    <ellipse cx="36" cy="36" rx="4.5" ry="6" fill="none" stroke="#d22f27" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..349b9a8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1EA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="30" width="62" height="12"/>
+    <rect x="5" y="17" width="62" height="13" fill="#1e50a0"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..38a5c07
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1EC.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="33" y="33" width="6" height="6" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="36" x2="36" y1="32" y2="40" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7f31df2
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1ED.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13"/>
+    <polygon fill="#d22f27" points="26 36 5 55 5 17 26 36"/>
+    <path fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M35.1216,36A4.0529,4.0529,0,0,1,38.5,32.0764,4.3955,4.3955,0,0,0,37.6892,32a4.0043,4.0043,0,1,0,0,8,4.3955,4.3955,0,0,0,.8108-.0764A4.0529,4.0529,0,0,1,35.1216,36Z"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="38.707 38 40.035 34 41.18 37.939 38 35.565 42 35.467 38.707 38"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1313046
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1F7.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="36" width="62" height="19" fill="#61b2e4"/>
+    <polygon fill="#d22f27" points="66 36 6 54 6 18 66 36"/>
+    <circle cx="19" cy="36.5" r="9.5" fill="none" stroke="#f1b31c" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="19" x2="19" y1="46" y2="33" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="19" x2="22" y1="41" y2="41" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="19" x2="22" y1="37" y2="37" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="16" x2="19" y1="39" y2="39" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="16" x2="19" y1="35" y2="35" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d2b27b5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1F8.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <path fill="#d22f27" d="M23,33v7a2.0059,2.0059,0,0,1-2,2H17a2.0059,2.0059,0,0,1-2-2V33"/>
+    <rect x="5" y="17" width="62" height="9" fill="#d22f27"/>
+    <rect x="5" y="46" width="62" height="9" fill="#d22f27"/>
+    <rect x="19" y="33" width="4" height="4" fill="#f1b31c"/>
+    <circle cx="19" cy="37" r="1.5" fill="#6a462f"/>
+    <g>
+      <line x1="27" x2="27" y1="33" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="11" x2="11" y1="33" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15,30a8.5678,8.5678,0,0,1,4-1"/>
+      <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23,30a8.5678,8.5678,0,0,0-4-1"/>
+      <line x1="15" x2="23" y1="33" y2="33" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <path fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23,33v7a2.0059,2.0059,0,0,1-2,2H17a2.0059,2.0059,0,0,1-2-2V33"/>
+      <line x1="10" x2="12" y1="42" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="26" x2="28" y1="42" y2="42" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..fdccb19
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1F9.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fcea2b"/>
+    <rect x="5" y="17" width="62" height="13" fill="#5c9e31"/>
+    <circle cx="36" cy="36" r="10" fill="#1e50a0"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" points="36 31 38.781 40 31.5 34.438 40.5 34.438 33.219 40 36 31"/>
+    <line x1="36" x2="36" y1="44" y2="42" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
+    <line x1="43.6085" x2="41.7064" y1="38.4722" y2="37.8541" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
+    <line x1="40.7023" x2="39.5268" y1="29.5279" y2="31.1459" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
+    <line x1="31.2978" x2="32.4733" y1="29.5278" y2="31.1459" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
+    <line x1="28.3916" x2="30.2937" y1="38.4721" y2="37.8541" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
+    <circle cx="36" cy="36" r="1.75" fill="#1e50a0"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..53017dc
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA-1F1FA.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="35.105 26.794 36.024 24.099 36.816 26.753 34.616 25.154 37.384 25.087 35.105 26.794"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="35.105 47.901 36.024 45.206 36.816 47.859 34.616 46.261 37.384 46.194 35.105 47.901"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="26.093 31.922 27.011 29.227 27.804 31.88 25.603 30.282 28.371 30.215 26.093 31.922"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="44.371 42.475 45.29 39.78 46.082 42.434 43.882 40.835 46.65 40.768 44.371 42.475"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="29.838 28.242 30.757 25.547 31.549 28.2 29.348 26.602 32.116 26.535 29.838 28.242"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="40.391 46.52 41.31 43.826 42.102 46.479 39.901 44.88 42.67 44.814 40.391 46.52"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="45.659 37.347 46.578 34.653 47.37 37.306 45.169 35.707 47.937 35.641 45.659 37.347"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="24.552 37.347 25.471 34.653 26.263 37.306 24.063 35.707 26.831 35.641 24.552 37.347"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="40.281 28.216 41.2 25.522 41.992 28.175 39.792 26.576 42.56 26.51 40.281 28.216"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="29.728 46.495 30.647 43.8 31.439 46.454 29.238 44.855 32.007 44.788 29.728 46.495"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="44.13 31.886 45.048 29.191 45.841 31.845 43.64 30.246 46.408 30.179 44.13 31.886"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="25.851 42.439 26.77 39.745 27.562 42.398 25.361 40.799 28.129 40.733 25.851 42.439"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7ec0c81
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EA.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m45,23c.5522,0,1-.4478,1-1s-.4478-1-1-1h-16c-.5522,0-1,.4478-1,1v28c0,.5522.4478,1,1,1h16c.5522,0,1-.4478,1-1s-.4478-1-1-1h-15v-12h11c.5522,0,1-.4478,1-1s-.4478-1-1-1h-11v-12h15Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..bb4e0bf
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EB-1F1EE.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <polygon fill="#1e50a0" stroke="#1e50a0" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7cb022a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EB-1F1EF.svg
@@ -0,0 +1,27 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="17" width="31" height="19" fill="#1e50a0"/>
+    <path fill="#d22f27" d="M52,48s6-1.9375,6-7.75V34.5H46v5.75C46,46.0625,52,48,52,48Z"/>
+    <rect x="53" y="37" width="5" height="4" fill="#fff"/>
+    <rect x="46" y="37" width="5" height="4" fill="#fff"/>
+    <path fill="#fff" d="M51,47.5743V43H46.5118A9.0283,9.0283,0,0,0,51,47.5743Z"/>
+    <path fill="#fff" d="M57.4882,43H53v4.5743A9.028,9.028,0,0,0,57.4882,43Z"/>
+    <rect x="46.5" y="34" width="11" height="2" fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c6b58ff
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EB-1F1F0.svg
@@ -0,0 +1,30 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <path fill="#61b2e4" d="M59,29v5c0,9-2.6667,13-8,15-5.3333-2-8-6-8-15V29Z"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M59,29v5c0,9-2.6667,13-8,15-5.3333-2-8-6-8-15V29Z"/>
+    <rect x="49" y="33" width="5" height="2" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="54" x2="54" y1="35" y2="37" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="49" x2="49" y1="35" y2="37" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="47" x2="49" y1="33" y2="33" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M44.035,40.115C45.035,40.548,45.945,40.925,47,41c2,0,2,-1,4,-1"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M45.721,44.814C46.142,44.978,46.579,44.971,47,45c2,0,2,-1,4,-1"/>
+    <path stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M57.965,40.115C56.965,40.548,56.055,40.925,55,41c-2,0-2-1-4-1"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M56.279,44.814C55.858,44.978,55.421,44.971,55,45c-2,0-2-1-4-1"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..353db5c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EB-1F1F2.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#92d3f5"/>
+    <g>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="41.523 34.356 46.477 36.045 41.599 37.501 44.538 33.456 44.66 38.544 41.523 34.356"/>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="30.477 37.644 25.523 35.955 30.401 34.499 27.462 38.544 27.34 33.456 30.477 37.644"/>
+    </g>
+    <g>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="34.356 30.477 36.045 25.523 37.501 30.401 33.456 27.462 38.544 27.34 34.356 30.477"/>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="37.644 41.523 35.955 46.477 34.499 41.599 38.544 44.538 33.456 44.66 37.644 41.523"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..43a69ea
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EB-1F1F4.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <polygon fill="#d22f27" stroke="#1e50a0" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..13f31d8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EB-1F1F7.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e55152f
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EB.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m46,21h-16c-.5522,0-1,.4478-1,1v28c0,.5522.4478,1,1,1s1-.4478,1-1v-13h11c.5522,0,1-.4478,1-1s-.4478-1-1-1h-11v-12h15c.5522,0,1-.4478,1-1s-.4478-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6dbfd02
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1E6.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fcea2b"/>
+    <rect x="5" y="17" width="62" height="13" fill="#5c9e31"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3f650dd
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1E7.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="40 28.856 40 32 50.181 32 67 21.691 67 17 59.346 17 40 28.856"/>
+      <polygon fill="#d22f27" points="67 17 67 17 63.173 17 40 31.203 40 32 43.482 32 67 17.586 67 17"/>
+      <polygon fill="#fff" points="59.347 55 67 55 67 55 67 50.308 50.182 40 40 40 40 43.143 59.347 55"/>
+      <polygon fill="#d22f27" points="67 55 67 52.653 46.355 40 41.568 40 66.042 55 67 55 67 55"/>
+      <polygon fill="#fff" points="32 43.144 32 40 21.819 40 5 50.309 5 55 12.654 55 32 43.144"/>
+      <polygon fill="#d22f27" points="5 55 5 55 8.827 55 32 40.797 32 40 28.518 40 5 54.414 5 55"/>
+      <polygon fill="#fff" points="12.653 17 5 17 5 17 5 21.692 21.818 32 32 32 32 28.857 12.653 17"/>
+      <polygon fill="#d22f27" points="5 17 5 19.347 25.646 32 30.432 32 5.958 17 5 17 5 17"/>
+      <rect x="5" y="31" width="62" height="10" fill="#fff"/>
+      <rect x="31" y="17" width="10" height="38" fill="#fff"/>
+      <rect x="5" y="33" width="62" height="6" fill="#d22f27"/>
+      <rect x="33" y="17" width="6" height="38" fill="#d22f27"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a906ae6
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1E9.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <polygon fill="#5c9e31" points="12 48 36 36 12 24 12 48"/>
+    <polygon fill="#5c9e31" points="60 48 36 36 60 24 60 48"/>
+    <circle cx="36" cy="36" r="5" fill="#d22f27"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="36 33.5 37.545 38.5 33.5 35.41 38.5 35.41 34.455 38.5 36 33.5"/>
+    <path fill="#d22f27" d="M5,17V55H67V17ZM60,48H12V24H60Z"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="35.105 22.242 36.024 19.547 36.816 22.2 34.616 20.602 37.384 20.535 35.105 22.242"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="45.105 22.242 46.024 19.547 46.816 22.2 44.616 20.602 47.384 20.535 45.105 22.242"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="25.105 22.242 26.024 19.547 26.816 22.2 24.616 20.602 27.384 20.535 25.105 22.242"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="35.105 52.242 36.024 49.547 36.816 52.2 34.616 50.602 37.384 50.535 35.105 52.242"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="45.105 52.242 46.024 49.547 46.816 52.2 44.616 50.602 47.384 50.535 45.105 52.242"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="25.105 52.242 26.024 49.547 26.816 52.2 24.616 50.602 27.384 50.535 25.105 52.242"/>
+    <g>
+      <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" d="M18.6308,37.9167a6.7812,6.7812,0,0,0-1.258-2.6215,6.7812,6.7812,0,0,0,2.6215,1.258,1.7666,1.7666,0,0,0-1.5618-2.1251c-.0249-.0023-.05-.0017-.0749-.003l.0025-.0022c-.0212,0-.0414,0-.0623,0-.0284-.0005-.0566-.0012-.0849,0a5.7735,5.7735,0,0,1-2.09-.3772A5.7764,5.7764,0,0,1,16.5,36.1434c-.0008.0321-.0006.0642,0,.0963,0,.0145,0,.0282,0,.0428l.0018-.0021a1.7633,1.7633,0,0,0,2.1285,1.6363Z"/>
+      <path fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M18.8014,36.2773a1.77,1.77,0,0,1,.4464.8929,1.5782,1.5782,0,0,1-1.3393-1.3393A1.77,1.77,0,0,1,18.8014,36.2773Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..69d3b62
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1EA.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-miterlimit="10" stroke-width="2" points="67 33 39 33 39 17 33 17 33 33 5 33 5 39 33 39 33 55 39 55 39 39 67 39 67 33"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="54.958 24.684 53.316 24.684 53.316 23 52.684 23 52.684 24.684 51.042 24.684 51.042 25.316 52.684 25.316 52.684 27 53.316 27 53.316 25.316 54.958 25.316 54.958 24.684"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="54.958 46.684 53.316 46.684 53.316 45 52.684 45 52.684 46.684 51.042 46.684 51.042 47.316 52.684 47.316 52.684 49 53.316 49 53.316 47.316 54.958 47.316 54.958 46.684"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="20.958 46.684 19.316 46.684 19.316 45 18.684 45 18.684 46.684 17.042 46.684 17.042 47.316 18.684 47.316 18.684 49 19.316 49 19.316 47.316 20.958 47.316 20.958 46.684"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="20.958 24.684 19.316 24.684 19.316 23 18.684 23 18.684 24.684 17.042 24.684 17.042 25.316 18.684 25.316 18.684 27 19.316 27 19.316 25.316 20.958 25.316 20.958 24.684"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9fea5bd
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1EB.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <polygon fill="#5c9e31" points="67 17 67 55 5 17 67 17"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="33.703 39.269 36.242 31.823 38.431 39.155 32.35 34.737 40 34.553 33.703 39.269"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1ad93e7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1EC.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-miterlimit="10" stroke-width="2" points="67 33 39 33 39 17 33 17 33 33 5 33 5 39 33 39 33 55 39 55 39 39 67 39 67 33"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linejoin="round" points="49.958 34.684 37.316 34.684 37.316 22 34.684 22 34.684 34.684 22.042 34.684 22.042 37.316 34.684 37.316 34.684 50 37.316 50 37.316 37.316 49.958 37.316 49.958 34.684"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3a3406e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1ED.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fcea2b"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <polygon stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="33.528 39.723 36.067 32.277 38.256 39.609 32.175 35.191 39.825 35.007 33.528 39.723"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8753d43
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1EE.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="27" y="32" width="18" height="9" fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="34" y="22" width="4" height="9" fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="43" y="25" width="2" height="10" fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="27" y="25" width="2" height="10" fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="30" x2="30" y1="37" y2="42" fill="#d22f27" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
+    <line x1="36" x2="36" y1="37" y2="42" fill="#d22f27" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
+    <line x1="42" x2="42" y1="37" y2="42" fill="#d22f27" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
+    <rect x="5" y="45" width="62" height="10" fill="#d22f27"/>
+    <line x1="36" x2="36" y1="45" y2="51" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="4.5" y="42" width="62" height="3" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..406be12
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F1.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+    <circle cx="24" cy="36" r="9" fill="#d22f27"/>
+    <path fill="#fff" d="M24,45a9,9,0,0,0,9-9H15A9,9,0,0,0,24,45Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ab0e858
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F2.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30.5" width="62" height="11" fill="#1e50a0" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..175bbf6
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F3.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="21" height="38" fill="#d22f27"/>
+    <rect x="46" y="17" width="21" height="38" fill="#5c9e31"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5b28895
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F5.svg
@@ -0,0 +1,25 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="17" width="62" height="13" fill="#1e50a0"/>
+    <line x1="25.2835" x2="46.7165" y1="36.0628" y2="48.4372" fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="4"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="36 37.832 37.293 35.75 37.691 38.168 39.682 36.74 39.124 39.126 41.51 38.568 40.082 40.559 42.5 40.957 40.418 42.25 42.5 43.543 40.082 43.941 41.51 45.932 39.124 45.374 39.682 47.76 37.691 46.332 37.293 48.75 36 46.668 34.707 48.75 34.309 46.332 32.318 47.76 32.876 45.374 30.49 45.932 31.918 43.941 29.5 43.543 31.582 42.25 29.5 40.957 31.918 40.559 30.49 38.568 32.876 39.126 32.318 36.74 34.309 38.168 34.707 35.75 36 37.832"/>
+    <g>
+      <g>
+        <line x1="36" x2="36" y1="21.25" y2="27.25" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+        <line x1="37.5" x2="34.5" y1="25.25" y2="25.25" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+      <g>
+        <line x1="23" x2="23" y1="21.25" y2="27.25" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+        <line x1="24.5" x2="21.5" y1="25.25" y2="25.25" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+      <g>
+        <line x1="49" x2="49" y1="21.25" y2="27.25" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+        <line x1="50.5" x2="47.5" y1="25.25" y2="25.25" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ec2fb83
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F6.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13" fill="#5c9e31"/>
+    <polygon fill="#1e50a0" points="26 36 5 55 5 17 26 36"/>
+    <line x1="40" x2="40" y1="34.5" y2="38.5" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="38" x2="42" y1="33.5" y2="33.5" fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ad24997
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F7.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="34" width="62" height="4" fill="#1e50a0"/>
+    <rect x="5" y="25.75" width="62" height="4" fill="#1e50a0"/>
+    <rect x="5" y="42.25" width="62" height="4" fill="#1e50a0"/>
+    <rect x="5" y="50" width="62" height="5" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="5" fill="#1e50a0"/>
+    <rect x="5" y="17" width="22" height="21" fill="#1e50a0"/>
+    <rect x="14.5" y="17" width="4" height="22" fill="#fff"/>
+    <rect x="5" y="25.75" width="22" height="4" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7b650c9
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F8.svg
@@ -0,0 +1,36 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <line x1="49" x2="51" y1="25" y2="23" fill="none" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="49" x2="47" y1="25" y2="23" fill="none" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <rect x="50" y="26" width="4" height="1" fill="none" stroke="#e27022" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="54" x2="54" y1="27" y2="30" fill="none" stroke="#e27022" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="50" x2="50" y1="27" y2="30" fill="none" stroke="#e27022" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="49" x2="50" y1="25" y2="26" fill="none" stroke="#e27022" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M59.1357,49a9.9864,9.9864,0,0,0-14.2714,0"/>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="52 42 55 34 49 34 52 42"/>
+    <g>
+      <path d="M59,31V41a1.0029,1.0029,0,0,0,1,1h1a1.0029,1.0029,0,0,0,1-1V36a2.094,2.094,0,0,0-.8321-1.5547L59,33"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M59,31V41a1.0029,1.0029,0,0,0,1,1h1a1.0029,1.0029,0,0,0,1-1V36a2.094,2.094,0,0,0-.8321-1.5547L59,33"/>
+    </g>
+    <g>
+      <path fill="#9b9b9a" d="M45,31V41a1.0029,1.0029,0,0,1-1,1H43a1.0029,1.0029,0,0,1-1-1V36a2.094,2.094,0,0,1,.8321-1.5547L45,33"/>
+      <path fill="none" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M45,31V41a1.0029,1.0029,0,0,1-1,1H43a1.0029,1.0029,0,0,1-1-1V36a2.094,2.094,0,0,1,.8321-1.5547L45,33"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f31ecb3
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1F9.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#92d3f5"/>
+    <rect x="46" y="17" width="21" height="38" fill="#92d3f5"/>
+    <path fill="none" stroke="#b1cc33" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.1056,30a7,7,0,1,0,9.7889,0"/>
+    <line x1="32" x2="29" y1="38" y2="42" fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="40" x2="43" y1="39" y2="42" fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M35,36a4.9253,4.9253,0,0,0,2.5-4A4.9253,4.9253,0,0,0,35,28Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0084513
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1FA.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <path fill="#92d3f5" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M36.0018,46.5A11.7362,11.7362,0,0,0,42,36.0005,11.736,11.736,0,0,0,36,25.5a11.736,11.736,0,0,0-6,10.5005A11.7364,11.7364,0,0,0,35.9982,46.5Z"/>
+    <path fill="#fcea2b" d="M30.64,40a11.2419,11.2419,0,0,0,5.3581,6.5h.0035A11.2419,11.2419,0,0,0,41.36,40Z"/>
+    <rect x="7" y="19" width="58" height="34" fill="none" stroke="#d22f27" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="28" x2="44" y1="39" y2="39" fill="none" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36.0018,46.5A11.7362,11.7362,0,0,0,42,36.0005,11.736,11.736,0,0,0,36,25.5a11.736,11.736,0,0,0-6,10.5005A11.7364,11.7364,0,0,0,35.9982,46.5Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..14e6258
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1FC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="36" width="62" height="19" fill="#5c9e31"/>
+    <rect x="5" y="17" width="21" height="38" fill="#d22f27"/>
+    <polygon stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="15.5 33.5 17.045 38.5 13 35.41 18 35.41 13.955 38.5 15.5 33.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b2dc67d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC-1F1FE.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <polygon fill="#fcea2b" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="66 36 5 55 5 17 66 36"/>
+    <polygon fill="#d22f27" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="26 36 5 55 5 17 26 36"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b9fe4e0
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="35.8889" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m45.8889,34.448h-8c-.5522,0-1,.4478-1,1s.4478,1,1,1h7v3.0562c0,4.9624-4.0376,9-9,9s-9-4.0376-9-9v-8c0-4.9624,4.0376-9,9-9,2.209,0,4.3301.8037,5.9717,2.2637.4131.3677,1.0449.3296,1.4121-.083.3667-.4131.3296-1.0449-.083-1.4121-2.0083-1.7852-4.6011-2.7686-7.3008-2.7686-6.0654,0-11,4.9346-11,11v8c0,6.0654,4.9346,11,11,11s11-4.9346,11-11v-4.0562c0-.5522-.4478-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..16a4697
--- /dev/null
+++ b/static/openmoji-svg-color/1F1ED-1F1F0.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m36.7 31.62c0.9815-0.658 1.256-2.365 0.7196-3.238-0.5361-0.8724-0.3786-2.135-0.1436-2.686-5.763 1.337-5.569 7.762-2.637 9.448-0.3602-2.147 1.079-2.866 2.061-3.524z"/>
+    <circle cx="35.44" cy="29.67" r="0.75" fill="#d22f27" fill-rule="evenodd" paint-order="normal"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m40.47 36.18c0.9291 0.7302 2.638 0.4633 3.302-0.3161 0.664-0.7794 1.913-1.02 2.51-0.9667-3.052-5.067-9.103-2.898-9.8 0.4118 1.931-1.006 3.059 0.1408 3.988 0.871z"/>
+    <circle cx="45.65" cy="-29.26" r="0.75" transform="rotate(72)" fill="#d22f27" fill-rule="evenodd" paint-order="normal"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m37.3 41.17c-0.4073 1.109 0.3744 2.652 1.321 3.042 0.9464 0.3907 1.561 1.505 1.695 2.089 3.876-4.469-0.0571-9.553-3.42-9.193 1.554 1.526 0.8113 2.953 0.404 4.062z"/>
+    <circle cx="-7.242" cy="-57.19" r="0.75" transform="rotate(144)" fill="#d22f27" fill-rule="evenodd" paint-order="normal"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m31.57 39.7c-1.181-0.04461-2.406 1.176-2.485 2.196-0.07908 1.021-0.9486 1.95-1.463 2.258 5.448 2.306 9.068-3.006 7.686-6.094-0.9708 1.949-2.558 1.684-3.738 1.639z"/>
+    <circle cx="-50.14" cy="-15.51" r="0.75" transform="rotate(216)" fill="#d22f27" fill-rule="evenodd" paint-order="normal"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m31.21 33.8c-0.3225-1.137-1.862-1.925-2.857-1.685s-2.147-0.2996-2.599-0.6935c-0.5094 5.894 5.661 7.695 8.171 5.427-2.154-0.321-2.392-1.912-2.714-3.049z"/>
+    <circle cx="-23.77" cy="38.16" r="0.75" transform="rotate(-72)" fill="#d22f27" fill-rule="evenodd" paint-order="normal"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..73396fa
--- /dev/null
+++ b/static/openmoji-svg-color/1F1ED-1F1F2.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="54.233 38.945 55.16 35.945 56.087 38.945 53.66 37.09 56.66 37.091 54.233 38.945"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="20.5 46.999 18.942 48.476 19.097 46.306 17 45.978 18.75 44.748 17.693 42.862 19.721 43.499 20.5 41.476 21.279 43.499 23.307 42.862 22.25 44.748 24 45.978 21.903 46.306 22.058 48.476 20.5 46.999"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="44.5 35.421 43.387 36.476 43.498 34.926 42 34.691 43.25 33.813 42.495 32.466 43.944 32.921 44.5 31.476 45.056 32.921 46.505 32.466 45.75 33.813 47 34.691 45.502 34.926 45.613 36.476 44.5 35.421"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="59.5 32.421 58.387 33.476 58.498 31.926 57 31.691 58.25 30.813 57.495 29.466 58.944 29.921 59.5 28.476 60.056 29.921 61.505 29.466 60.75 30.813 62 31.691 60.502 31.926 60.613 33.476 59.5 32.421"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="51.5 26.421 50.387 27.476 50.498 25.926 49 25.691 50.25 24.813 49.495 23.466 50.944 23.921 51.5 22.476 52.056 23.921 53.505 23.466 52.75 24.813 54 25.691 52.502 25.926 52.613 27.476 51.5 26.421"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="51.5 47.421 50.387 48.476 50.498 46.926 49 46.691 50.25 45.813 49.495 44.466 50.944 44.921 51.5 43.476 52.056 44.921 53.505 44.466 52.75 45.813 54 46.691 52.502 46.926 52.613 48.476 51.5 47.421"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cb80d95
--- /dev/null
+++ b/static/openmoji-svg-color/1F1ED-1F1F3.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13" fill="#61b2e4"/>
+    <rect x="5" y="42" width="62" height="13" fill="#61b2e4"/>
+    <circle cx="36" cy="36" r="1.5" fill="#61b2e4"/>
+    <circle cx="43" cy="39" r="1.5" fill="#61b2e4"/>
+    <circle cx="43" cy="33" r="1.5" fill="#61b2e4"/>
+    <circle cx="29" cy="39" r="1.5" fill="#61b2e4"/>
+    <circle cx="29" cy="33" r="1.5" fill="#61b2e4"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cd22b29
--- /dev/null
+++ b/static/openmoji-svg-color/1F1ED-1F1F7.svg
@@ -0,0 +1,46 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <g>
+      <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+      <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+      <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    </g>
+    <g>
+      <path fill="#d22f27" d="M40.5,43.7918A6.7093,6.7093,0,0,0,42.4885,42H40.5Z"/>
+      <path fill="#fff" d="M37.5,42v2.88a8.4378,8.4378,0,0,0,3-1.0877V42Z"/>
+      <path fill="#d22f27" d="M34.5,42v2.88a9.3963,9.3963,0,0,0,3,0V42Z"/>
+      <path fill="#fff" d="M31.5,42v1.7918a8.4378,8.4378,0,0,0,3,1.0877V42Z"/>
+      <path fill="#d22f27" d="M29.5115,42A6.7093,6.7093,0,0,0,31.5,43.7918V42Z"/>
+      <path fill="#fff" d="M40.5,42h1.9885A5.0877,5.0877,0,0,0,43.5,39h-3Z"/>
+      <rect x="37.5" y="39" width="3" height="3" fill="#d22f27"/>
+      <rect x="34.5" y="39" width="3" height="3" fill="#fff"/>
+      <rect x="31.5" y="39" width="3" height="3" fill="#d22f27"/>
+      <path fill="#fff" d="M31.5,39h-3a5.0877,5.0877,0,0,0,1.0115,3H31.5Z"/>
+      <rect x="40.5" y="36" width="3" height="3" fill="#d22f27"/>
+      <rect x="37.5" y="36" width="3" height="3" fill="#fff"/>
+      <rect x="34.5" y="36" width="3" height="3" fill="#d22f27"/>
+      <rect x="31.5" y="36" width="3" height="3" fill="#fff"/>
+      <rect x="28.5" y="36" width="3" height="3" fill="#d22f27"/>
+      <rect x="40.5" y="33" width="3" height="3" fill="#fff"/>
+      <rect x="37.5" y="33" width="3" height="3" fill="#d22f27"/>
+      <rect x="34.5" y="33" width="3" height="3" fill="#fff"/>
+      <rect x="31.5" y="33" width="3" height="3" fill="#d22f27"/>
+      <rect x="28.5" y="33" width="3" height="3" fill="#fff"/>
+      <rect x="40.5" y="30" width="3" height="3" fill="#d22f27"/>
+      <rect x="37.5" y="30" width="3" height="3" fill="#fff"/>
+      <rect x="34.5" y="30" width="3" height="3" fill="#d22f27"/>
+      <rect x="31.5" y="30" width="3" height="3" fill="#fff"/>
+      <rect x="28.5" y="30" width="3" height="3" fill="#d22f27"/>
+    </g>
+    <path fill="none" stroke="#d22f27" stroke-miterlimit="10" d="M43.5,39c0,3.3137-3.3579,6-7.5,6s-7.5-2.6863-7.5-6V30h15Z"/>
+    <g>
+      <path fill="#61b2e4" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" d="M30.1872,24.3719,31.84,22.5087l2.1937,1.2321L36,22.1781l1.9663,1.5627L40.16,22.5087l1.6528,1.8632L44.1869,23.5l1.2922,2.104L43.5,30a15.9375,15.9375,0,0,0-15,0l-1.9791-4.396L27.8131,23.5Z"/>
+      <polygon fill="#1e50a0" stroke="#1e50a0" stroke-miterlimit="10" stroke-width="0.25" points="37.619 28.21 37.966 23.741 40.16 22.509 41.813 24.372 40.674 28.83 37.619 28.21"/>
+      <polygon fill="#1e50a0" stroke="#1e50a0" stroke-miterlimit="10" stroke-width="0.25" points="34.381 28.21 34.034 23.741 31.84 22.509 30.187 24.372 31.326 28.83 34.381 28.21"/>
+      <path fill="none" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" d="M30.1872,24.3719,31.84,22.5087l2.1937,1.2321L36,22.1781l1.9663,1.5627L40.16,22.5087l1.6528,1.8632L44.1869,23.5l1.2922,2.104L43.5,30a15.9375,15.9375,0,0,0-15,0l-1.9791-4.396L27.8131,23.5Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a7cde13
--- /dev/null
+++ b/static/openmoji-svg-color/1F1ED-1F1F9.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+    <rect x="29" y="29" width="14" height="14" fill="#fff"/>
+    <line x1="36" x2="36" y1="33" y2="41" fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="40" x2="36" y1="37" y2="41" fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
+    <line x1="32" x2="36" y1="37" y2="41" fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="3"/>
+    <line x1="33" x2="39" y1="32" y2="32" fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="29" y="41" width="14" height="2" fill="#5c9e31"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..13889f0
--- /dev/null
+++ b/static/openmoji-svg-color/1F1ED-1F1FA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d877f4d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1ED.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m44,20.5081c-.5527,0-1,.4478-1,1v12.96h-14v-12.96c0-.5522-.4473-1-1-1s-1,.4478-1,1v28c0,.5522.4473,1,1,1s1-.4478,1-1v-13.04h14v13.04c0,.5522.4473,1,1,1s1-.4478,1-1v-28c0-.5522-.4473-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e92fbff
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1E8.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="17" width="21" height="38" fill="#fff"/>
+    <rect x="46" y="17" width="21" height="38" fill="#fcea2b"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..fe320c8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1E9.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="19" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1adefd7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1EA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+    <rect x="46" y="17" width="21" height="38" fill="#e27022"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7fbf47f
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F1.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="20" width="62" height="3" fill="#1e50a0"/>
+    <rect x="5" y="49" width="62" height="3" fill="#1e50a0"/>
+    <polygon fill="none" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 26 27 41 45 41 36 26"/>
+    <polygon fill="none" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 46 27 31 45 31 36 46"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..26fb397
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F2.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m42.34 34.23 3.988-6.744 2.792-0.6478-2.484 1.423-3.372 7.467-6.186 0.3526-5.546 2.496 3.527 6.996-0.9624 2.697 0.1428-2.857-4.468-6.868 3.191-4.973 0.2343-5.676-7.834 0.3142-2.06-1.992 2.545 1.312 8.106-1.223 3.471 4.805z"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m35.82 33.58 1.256 2.492"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m37.42 31.11-1.603 2.476-2.858-0.01662"/>
+    <polygon transform="matrix(.6713 -.3266 .3266 .6706 .7123 21.38)" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.34" points="24.21 28.34 25.16 25.34 26.06 28.32 23.65 26.5 26.65 26.47"/>
+    <polygon transform="matrix(.3343 -.6675 .6671 .3338 7.886 51.12)" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.34" points="51.06 29.32 48.65 27.5 51.65 27.47 49.21 29.34 50.16 26.34"/>
+    <polygon transform="matrix(.4707 -.5794 .5792 .4701 -7.299 42.64)" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.34" points="36.16 46.34 37.06 49.32 34.65 47.5 37.65 47.47 35.21 49.34"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2ae1bf7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F3.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#e27022"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <polygon fill="none" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" points="36.296 34.896 38 32.536 36.808 35.192 39.464 34 37.104 35.704 40 36 37.104 36.296 39.464 38 36.808 36.808 38 39.464 36.296 37.104 36 40 35.704 37.104 34 39.464 35.192 36.808 32.536 38 34.896 36.296 32 36 34.896 35.704 32.536 34 35.192 35.192 34 32.536 35.704 34.896 36 32 36.296 34.896"/>
+    <circle cx="36" cy="36" r="5" fill="none" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5f8877c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F4.svg
@@ -0,0 +1,41 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <path fill="#fff" d="M67,44a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,44V42a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,42Z"/>
+    <path fill="#1e50a0" d="M67,46a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,46V44a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,44Z"/>
+    <path fill="#fff" d="M67,48a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,48V46a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,46Z"/>
+    <path fill="#1e50a0" d="M67,50a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,50V48a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,48Z"/>
+    <path fill="#1e50a0" d="M67,55s-4.6307-.9506-6.2-1-4.6308.9506-6.2,1-4.6308-.9506-6.2-1-4.6307.9506-6.2,1-4.6307-.9506-6.2-1-4.6308.9508-6.2,1-4.6308-.9519-6.2-1-4.6306.9585-6.2,1-4.63-1-6.2-1A50.8361,50.8361,0,0,0,5,55V51a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,51Z"/>
+    <path fill="#fff" d="M67,52a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,52V50a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,50Z"/>
+    <path fill="#1e50a0" d="M67,38a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,38V36a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,36Z"/>
+    <path fill="#fff" d="M67,40a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,40V38a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,38Z"/>
+    <path fill="#1e50a0" d="M67,42a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,42V40a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,40Z"/>
+    <path fill="#fff" d="M67,44a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,44V42a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,42Z"/>
+    <path fill="#1e50a0" d="M67,30a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,30V28a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,28Z"/>
+    <path fill="#fff" d="M67,32a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,32V30a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,30Z"/>
+    <path fill="#1e50a0" d="M67,34a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,34V32a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,32Z"/>
+    <path fill="#fff" d="M67,36a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,36V34a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,34Z"/>
+    <path fill="#1e50a0" d="M67,22a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,22V20a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,20Z"/>
+    <path fill="#fff" d="M67,24a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,24V22a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,22Z"/>
+    <path fill="#1e50a0" d="M67,18a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,18V16a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,16Z"/>
+    <path fill="#fff" d="M67,20a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,20V18a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,18Z"/>
+    <path fill="#1e50a0" d="M67,26a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,26V24a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,24Z"/>
+    <path fill="#fff" d="M67,28a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,28V26a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,26Z"/>
+    <rect x="5" y="17" width="31" height="19" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..92a1448
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F6.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" d="m25.76 36h20.47"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0aec517
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F7.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#5c9e31"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <line x1="36" x2="36" y1="32" y2="40" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M38,32a4,4,0,0,1,0,8"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M36,40a4.0012,4.0012,0,0,0,1.2285-6.7678"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M36,40a4.0013,4.0013,0,0,1-1.2284-6.7678"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M34,32a4,4,0,0,0,0,8"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7e72b57
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F8.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#d22f27" stroke="#fff" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6940c36
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE-1F1F9.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1278c8b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EE.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fff"/>
+    <path d="m36,21c-.5527,0-1,.4478-1,1v28c0,.5522.4473,1,1,1s1-.4478,1-1v-28c0-.5522-.4473-1-1-1Z"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="m36,21c-.5527,0-1,.4478-1,1v28c0,.5522.4473,1,1,1s1-.4478,1-1v-28c0-.5522-.4473-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..87aa6e5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EF-1F1EA.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <polygon fill="#d22f27" points="67 20 67 17 63 17 5 52 5 55 9 55"/>
+    <polygon fill="#d22f27" points="5 20 5 17 9 17 67 52 67 55 63 55"/>
+    <path fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.522" d="m38.74 22.34s0.2958 0.5821 0.2996 2.759c0.0038 2.177-0.9878 4.162-3.017 5.113-2.03-0.9514-3.071-2.972-3.071-5.113 0-2.141 0.3002-2.759 0.3002-2.759z"/>
+    <path fill="#fcea2b" fill-rule="evenodd" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="0.9856" d="m32.66 19.96h6.683l-0.5663 1.193h-5.604z" paint-order="normal"/>
+    <rect x="33.26" y="22.72" ry="0.0166" width="5.478" height="0.8682" fill="#fcea2b" fill-rule="evenodd" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="0.6318" paint-order="stroke fill markers"/>
+    <rect x="33.26" y="25.08" ry="0.0166" width="5.478" height="0.8682" fill="#fcea2b" fill-rule="evenodd" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="0.6318" paint-order="stroke fill markers"/>
+    <rect x="33.74" y="27.39" ry="0.0137" width="4.526" height="0.7173" fill="#fcea2b" fill-rule="evenodd" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="0.522" paint-order="stroke fill markers"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..16c5524
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EF-1F1F2.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" rx="3.2004" ry="3.2004" width="62" height="38" fill="#5c9e31"/>
+    <path d="m29.4811,39.9955l-17.346,10.6314c-3.1225,1.9138-7.135-.3331-7.135-3.9955v-21.2629c0-3.6623,4.0125-5.9093,7.135-3.9955l17.346,10.6314c2.9832,1.8284,2.9832,6.1625,0,7.9909Z"/>
+    <path d="m42.12,39.7509l18.1816,11.1436c2.9314,1.7967,6.6984-.3127,6.6984-3.7509v-22.2872c0-3.4382-3.767-5.5476-6.6984-3.7509l-18.1816,11.1436c-2.8006,1.7165-2.8006,5.7854,0,7.5019Z"/>
+    <path fill="#fcea2b" d="m5,21.6921v-2.4179c0-1.256,1.0182-2.2742,2.2742-2.2742h4.1124c.4018,0,.7964.1064,1.1437.3085l53.3393,31.0338c.6999.4072,1.1305,1.1559,1.1305,1.9657v2.4179c0,1.256-1.0182,2.2742-2.2742,2.2742h-4.1124c-.4018,0-.7964-.1064-1.1437-.3085L6.1305,23.6577c-.6999-.4072-1.1305-1.1559-1.1305-1.9657Z"/>
+    <path fill="#fcea2b" d="m67,21.3178v-1.3929c0-1.6154-1.3095-2.9249-2.9249-2.9249h-3.2861c-.5168,0-1.0243.1369-1.4709.3968L6.454,48.154c-.9002.5238-1.454,1.4867-1.454,2.5282v1.3929c0,1.6154,1.3095,2.9249,2.9249,2.9249h3.2861c.5168,0,1.0243-.1369,1.4709-.3968l52.864-30.7573c.9002-.5238,1.454-1.4867,1.454-2.5282Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f7444f6
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EF-1F1F4.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13"/>
+    <polygon fill="#d22f27" points="26 36 5 55 5 17 26 36"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="13 33.5 13.556 34.945 15.005 34.49 14.25 35.838 15.5 36.716 14.002 36.95 14.113 38.5 13 37.445 11.887 38.5 11.998 36.95 10.5 36.716 11.75 35.838 10.995 34.49 12.444 34.945 13 33.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e351578
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EF-1F1F5.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <circle cx="36" cy="36" r="9" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2f546b1
--- /dev/null
+++ b/static/openmoji-svg-color/1F1EF.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fff"/>
+    <path d="m44.3463,21c-.5527,0-1,.4478-1,1v18c0,4.9624-4.0371,9-9,9-2.2256,0-4.3643-.8208-6.0244-2.312-.4082-.3677-1.043-.3354-1.4121.0757s-.335,1.0435.0762,1.4126c2.0273,1.8208,4.6406,2.8237,7.3604,2.8237,6.0654,0,11-4.9346,11-11v-18c0-.5522-.4473-1-1-1Z"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="m44.3463,21c-.5527,0-1,.4478-1,1v18c0,4.9624-4.0371,9-9,9-2.2256,0-4.3643-.8208-6.0244-2.312-.4082-.3677-1.043-.3354-1.4121.0757s-.335,1.0435.0762,1.4126c2.0273,1.8208,4.6406,2.8237,7.3604,2.8237,6.0654,0,11-4.9346,11-11v-18c0-.5522-.4473-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a2de368
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1EA.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13"/>
+    <rect x="5" y="30.5" width="62" height="11" fill="#d22f27" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M29.25,47.6913l13.5-23.3826"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M29.25,24.3087l13.5,23.3826"/>
+    <path fill="#d22f27" d="M36.231,25.0566a.4958.4958,0,0,0-.4619,0A12.2986,12.2986,0,0,0,29.5,36a12.2988,12.2988,0,0,0,6.2671,10.9434.5.5,0,0,0,.231.0566h.0039a.5.5,0,0,0,.2309-.0566A12.2986,12.2986,0,0,0,42.5,36,12.2985,12.2985,0,0,0,36.231,25.0566Z"/>
+    <path d="M41.7033,31.501A6.2884,6.2884,0,0,0,40,36a6.2883,6.2883,0,0,0,1.7037,4.4991,13.1042,13.1042,0,0,0,0-8.9979Z"/>
+    <path d="M30.2964,40.4989A6.2883,6.2883,0,0,0,32,36a6.2884,6.2884,0,0,0-1.7033-4.4988,13.1034,13.1034,0,0,0,0,8.9979Z"/>
+    <line x1="36" x2="36" y1="27" y2="45" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b0feb86
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1EC.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="36 30 37.326 25.08 37.436 30.174 39.901 25.715 38.788 30.687 42.249 26.947 39.979 31.509 44.234 28.706 40.938 32.592 45.74 30.888 41.61 33.872 46.68 33.368 41.956 35.277 47 36 41.956 36.723 46.68 38.632 41.61 38.128 45.74 41.112 40.938 39.408 44.234 43.294 39.979 40.491 42.249 45.053 38.788 41.313 39.901 46.285 37.436 41.826 37.326 46.92 36 42 34.674 46.92 34.564 41.826 32.099 46.285 33.212 41.313 29.751 45.053 32.021 40.491 27.766 43.294 31.062 39.408 26.26 41.112 30.39 38.128 25.32 38.632 30.044 36.723 25 36 30.044 35.277 25.32 33.368 30.39 33.872 26.26 30.888 31.062 32.592 27.766 28.706 32.021 31.509 29.751 26.947 33.212 30.687 32.099 25.715 34.564 30.174 34.674 25.08 36 30"/>
+    <circle cx="36" cy="36" r="6" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M30.55,33.5024a5.9922,5.9922,0,0,0,9.4709,6.9422A10,10,0,0,0,30.55,33.5024Z"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M41.4505,33.5024a5.9923,5.9923,0,0,1-9.471,6.9422A10,10,0,0,1,41.4505,33.5024Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..07ff4aa
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1ED.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="45" width="62" height="10" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="10" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="45.882 42 26.118 42 28.235 37.765 43.765 37.765 45.882 42"/>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="38.824 35.647 33.176 35.647 36 30 38.824 35.647"/>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="43.059 35.647 39.529 35.647 40.853 32.824 41.735 32.824 43.059 35.647"/>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="32.471 35.647 28.941 35.647 30.265 32.824 31.147 32.824 32.471 35.647"/>
+      <rect x="28.2353" y="35.6471" width="15.5294" height="2.1176" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..32648e3
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1EE.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="36 36 37.326 31.08 37.436 36.174 39.901 31.715 38.788 36.687 42.249 32.947 39.979 37.509 44.234 34.706 40.938 38.592 45.74 36.888 41.61 39.872 46.68 39.368 41.956 41.277 47 42 41.956 42.723 46.68 44.632 41.61 44.128 45.74 47.112 40.938 45.408 44.234 49.294 39.979 46.491 42.249 51.053 38.788 47.313 39.901 52.285 37.436 47.826 37.326 52.92 36 48 34.674 52.92 34.564 47.826 32.099 52.285 33.212 47.313 29.751 51.053 32.021 46.491 27.766 49.294 31.062 45.408 26.26 47.112 30.39 44.128 25.32 44.632 30.044 42.723 25 42 30.044 41.277 25.32 39.368 30.39 39.872 26.26 36.888 31.062 38.592 27.766 34.706 32.021 37.509 29.751 32.947 33.212 36.687 32.099 31.715 34.564 36.174 34.674 31.08 36 36"/>
+    <path fill="#fff" d="M67,44a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,44V42a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,42Z"/>
+    <path fill="#1e50a0" d="M67,46a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,46V44a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,44Z"/>
+    <path fill="#fff" d="M67,48a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,48V46a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,46Z"/>
+    <path fill="#1e50a0" d="M67,50a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,50V48a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,48Z"/>
+    <path fill="#1e50a0" d="M67,55s-4.6307-.9506-6.2-1-4.6308.9506-6.2,1-4.6308-.9506-6.2-1-4.6307.9506-6.2,1-4.6307-.9506-6.2-1-4.6308.9508-6.2,1-4.6308-.9519-6.2-1-4.6306.9585-6.2,1-4.63-1-6.2-1A50.8361,50.8361,0,0,0,5,55V51a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,51Z"/>
+    <path fill="#fff" d="M67,52a42.5886,42.5886,0,0,1-6.2,1c-1.5693-.0494-4.6308-1.0494-6.2-1s-4.6308,1.0494-6.2,1-4.6307-1.0494-6.2-1-4.6307,1.0494-6.2,1-4.6308-1.0492-6.2-1-4.6308,1.0481-6.2,1-4.6306-1.0415-6.2-1-4.63,1-6.2,1A50.8361,50.8361,0,0,1,5,52V50a50.8361,50.8361,0,0,0,6.2,1c1.57,0,4.6305-.9586,6.2-1s4.6308.9519,6.2,1,4.6308-.9508,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1,4.6307-.9506,6.2-1,4.6307.9506,6.2,1A42.5886,42.5886,0,0,0,67,50Z"/>
+    <g>
+      <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M45.5,22a17.1366,17.1366,0,0,1-8,2"/>
+      <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M26.5,22a17.1366,17.1366,0,0,0,8,2"/>
+    </g>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.4946,25.9334a10.9861,10.9861,0,0,1,9.0109-.0011"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3c61ec7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1F2.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="27" width="62" height="9" fill="#fff"/>
+    <rect x="5" y="36" width="62" height="9" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="10" fill="#f1b31c"/>
+    <polygon fill="#5c9e31" points="37 36 5 55 5 17 37 36"/>
+    <g>
+      <circle cx="19" cy="31" r="1.0435" fill="#fff"/>
+      <circle cx="19" cy="34.3333" r="1.0435" fill="#fff"/>
+      <circle cx="19" cy="37.6667" r="1.0435" fill="#fff"/>
+      <circle cx="19" cy="41" r="1.0435" fill="#fff"/>
+    </g>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M11.6929,36.125a7.4815,7.4815,0,0,1,5.9889-7.3567,7.3762,7.3762,0,0,0-1.4373-.1433,7.5,7.5,0,0,0,0,15,7.3839,7.3839,0,0,0,1.4373-.1432A7.4817,7.4817,0,0,1,11.6929,36.125Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..be6f9e5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1F3.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polygon fill="#5c9e31" points="5 17 5 55 67 17 5 17"/>
+    <polygon stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="67 24 67 17 59 17 5 48 5 55 13 55 67 24"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="44.799 33.5 43.78 28.5 47.5 31.905 42.5 31.396 46.87 28.815 44.799 33.5"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="25.799 44.5 24.78 39.5 28.5 42.905 23.5 42.396 27.87 39.815 25.799 44.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e0dc8a7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1F5.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <circle cx="22.5873" cy="36.013" r="8.5" fill="#fff"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="19.122 41.513 22.628 30.513 25.921 41.442 17.087 34.758 28.087 34.643 19.122 41.513"/>
+    <rect x="5" y="49" width="62" height="6" fill="#1e50a0" stroke="#fff" stroke-miterlimit="10"/>
+    <rect x="5" y="17" width="62" height="6" fill="#1e50a0" stroke="#fff" stroke-miterlimit="10"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..037e03e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1F7.svg
@@ -0,0 +1,43 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <g>
+      <circle cx="36" cy="36" r="9" fill="#d22f27"/>
+      <g>
+        <path fill="#1e50a0" d="M28.1267,31.6756A4.4922,4.4922,0,0,0,36,36c.023-.04.0338-.0828.0554-.123l.0232.0138a4.4932,4.4932,0,0,1,7.7243,4.59l.003.0018a8.9918,8.9918,0,0,1-15.6792-8.8071Z"/>
+        <path fill="#1e50a0" d="M28.3313,31.2869l.02.0115c-.03.046-.0668.085-.0954.1325C28.283,31.3844,28.3029,31.3328,28.3313,31.2869Z"/>
+      </g>
+    </g>
+    <g>
+      <g>
+        <line x1="24.2321" x2="27.2321" y1="41.9019" y2="47.0981" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="20.768" x2="23.768" y1="43.9019" y2="49.0981" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="22.5" x2="23.5" y1="42.9019" y2="44.634" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="24.5" x2="25.5" y1="46.366" y2="48.0981" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+      </g>
+      <g>
+        <line x1="45.5" x2="46.5" y1="48.0981" y2="46.366" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="47.5" x2="48.5" y1="44.634" y2="42.9019" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="47.2321" x2="48.2321" y1="49.0981" y2="47.366" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="49.2321" x2="50.2321" y1="45.634" y2="43.9019" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="43.768" x2="44.768" y1="47.0981" y2="45.366" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="45.768" x2="46.768" y1="43.634" y2="41.9019" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+      </g>
+      <g>
+        <line x1="20.768" x2="23.768" y1="28.0981" y2="22.9019" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="22.5" x2="25.5" y1="29.0981" y2="23.9019" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="24.2321" x2="27.2321" y1="30.0981" y2="24.9019" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+      </g>
+      <g>
+        <line x1="44.768" x2="45.768" y1="24.9019" y2="26.634" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="46.768" x2="47.768" y1="28.366" y2="30.0981" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="48.2321" x2="49.2321" y1="22.9019" y2="24.634" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="50.2321" x2="51.2321" y1="26.366" y2="28.0981" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+        <line x1="46.5" x2="49.5" y1="23.9019" y2="29.0981" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..57b3774
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1FC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13" fill="#b1cc33"/>
+    <path d="m19.368,42l-13.0441,11.8022c-.5094.4609-1.3239.0994-1.3239-.5875V18.0804c0-.4157.4929-.6345.8012-.3556l13.5688,12.2762-.002,11.999Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3179f1c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1FE.svg
@@ -0,0 +1,28 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <circle cx="51" cy="39" r="5" fill="#61b2e4"/>
+    <rect x="46" y="32" width="10" height="4" fill="#d22f27"/>
+    <rect x="46" y="36" width="10" height="3" fill="#61b2e4"/>
+    <line x1="54.25" x2="56.25" y1="42.25" y2="44.25" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="47.75" x2="45.75" y1="42.25" y2="44.25" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="2" d="M55.25,43.2352a6,6,0,0,1-8.4927.0075"/>
+    <circle cx="51" cy="26" r="1" fill="none" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M54,29c0-.5523-1.3431-1-3-1s-3,.4477-3,1Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..387df16
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0-1F1FF.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <polygon transform="translate(14.6 8.726) scale(.6848)" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="44.23 28.71 40.94 32.59 45.74 30.89 41.61 33.87 46.68 33.37 41.96 35.28 47 36 41.96 36.72 46.68 38.63 41.61 38.13 45.74 41.11 40.94 39.41 44.23 43.29 39.98 40.49 42.25 45.05 38.79 41.31 39.9 46.28 37.44 41.83 37.33 46.92 36 42 34.67 46.92 34.56 41.83 32.1 46.28 33.21 41.31 29.75 45.05 32.02 40.49 27.77 43.29 31.06 39.41 26.26 41.11 30.39 38.13 25.32 38.63 30.04 36.72 25 36 30.04 35.28 25.32 33.37 30.39 33.87 26.26 30.89 31.06 32.59 27.77 28.71 32.02 31.51 29.75 26.95 33.21 30.69 32.1 25.72 34.56 30.17 34.67 25.08 36 30 37.33 25.08 37.44 30.17 39.9 25.72 38.79 30.69 42.25 26.95 39.98 31.51"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m31.09 39.13s2.312 4.125 6.688 4.688c2.768 0.3559 1.376 0.6496-0.04232 1.065-0.8236 0.2413-1.676 0.5633-1.676 0.5633s1.315-0.5202 3.443-0.616c2.104-0.09466 1.471-0.06925 0.8339-0.2106-0.4556-0.1011-1.57-0.1957-1.263-0.2675 4.083-0.9558 7.427-2.98 8.33-5.222"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.995" d="m10.5 22.02v27.95"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..80fce2a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F0.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m37.3163,31.4598l7.7462-8.7889c.3652-.4141.3252-1.0464-.0889-1.4111-.4141-.3652-1.0449-.3252-1.4111.0889l-14.3281,16.2568v-15.5932c0-.5522-.4473-1-1-1s-1,.4478-1,1v28c0,.5522.4473,1,1,1s1-.4478,1-1v-9.3826l6.6624-7.5591,8.9802,17.412c.1777.3442.5273.5415.8896.5415.1543,0,.3105-.0356.457-.1113.4912-.2529.6836-.856.4307-1.3472l-9.338-18.1057h0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..29467a9
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1E6.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <circle cx="36" cy="36.013" r="8.5" fill="#fff"/>
+    <rect x="5" y="48" width="62" height="7" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="7" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6fc8784
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1E7.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="7" fill="#d22f27"/>
+    <rect x="5" y="48" width="62" height="7" fill="#d22f27"/>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 27 29 32 36 31 43 32 36 27"/>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 31 28 36 36 35 44 36 36 31"/>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 35 27 40 36 39 45 40 36 35"/>
+    <g>
+      <path fill="#5c9e31" d="M38,39v3.5a2.2272,2.2272,0,0,0,1.4231,1.9743l.1539.0514h0l-.1539-.0514A11.1134,11.1134,0,0,0,36.5,44h-1a11.1126,11.1126,0,0,0-2.923.4743l-.1539.0514h0l.1539-.0514A2.2271,2.2271,0,0,0,34,42.5V39"/>
+      <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M38,39v3.5a2.2272,2.2272,0,0,0,1.4231,1.9743l.1539.0514h0l-.1539-.0514A11.1134,11.1134,0,0,0,36.5,44h-1a11.1126,11.1126,0,0,0-2.923.4743l-.1539.0514h0l.1539-.0514A2.2271,2.2271,0,0,0,34,42.5V39"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9bcef44
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1E8.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <polygon stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 23 48 49 24 49 36 23"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 37 48 49 24 49 36 37"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..98e7894
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1EE.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+    <line x1="18" x2="18" y1="22" y2="30" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18,28a3,3,0,0,1,3-3c1.6569,0,4.1391,1.4725,2,6H13c-2.1391-4.5275.3431-6,2-6a3,3,0,0,1,3,3"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f5d7d8d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1F0.svg
@@ -0,0 +1,33 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="11" height="38" fill="#5c9e31"/>
+    <rect x="16" y="17" width="10" height="38" fill="#e27022"/>
+    <line x1="26" x2="26" y1="18" y2="54" fill="none" stroke="#f1b31c" stroke-miterlimit="10" stroke-width="2"/>
+    <rect x="7" y="19" width="58" height="34" fill="none" stroke="#f1b31c" stroke-miterlimit="10" stroke-width="2"/>
+    <g>
+      <polyline fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50 45 52 45 53 43 50 37"/>
+      <polyline fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="41 45 43 45 44 43 41 37"/>
+      <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37,26a7.0706,7.0706,0,0,0-1,4V42"/>
+      <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M44,41c3,0,3-2,7-2l5,2c-1-2,2-3,1-6H42s-3,2-3,5h3Z"/>
+      <polyline fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="54 45 56 45 57 43 54 37"/>
+      <line x1="35" x2="39" y1="37" y2="40" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M56,31a2,2,0,0,1,0,4"/>
+      <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M52,31a2,2,0,0,1,0-4"/>
+      <g>
+        <rect x="42" y="30" rx="1" ry="1" width="4" height="5" fill="#f1b31c"/>
+        <rect x="42" y="30" rx="1" ry="1" width="4" height="5" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      </g>
+      <line x1="52" x2="56" y1="31" y2="31" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="60" x2="61" y1="24" y2="23" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="31" x2="30" y1="24" y2="23" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="43" x2="40" y1="32" y2="31" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="43" x2="40" y1="33" y2="34" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="60" x2="61" y1="48" y2="49" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="31" x2="30" y1="48" y2="49" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..dd6085c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1F7.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="26" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="34" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="42" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="50" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="17" width="17" height="17" fill="#1e50a0"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="14.455 26.09 16 24.91 14.09 24.91 13.5 23 12.91 24.91 11 24.91 12.545 26.09 11.955 28 13.5 26.82 15.045 28 14.455 26.09"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8896210
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1F8.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13" fill="#1e50a0"/>
+    <g>
+      <polygon stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="36 34.75 32.536 40.75 39.464 40.75 36 34.75"/>
+      <ellipse cx="36" cy="34.25" rx="2" ry="3" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+      <line x1="36" x2="36" y1="31.25" y2="37.25" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+      <line x1="34.5" x2="37.5" y1="33.75" y2="33.75" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8e2eeee
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1F9.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#f1b31c"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cbe7a9a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1FA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0452856
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1FB.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#781e32"/>
+    <rect x="5" y="32" width="62" height="8" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c4d59e3
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1-1F1FE.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M32.1358,36.125a4.0528,4.0528,0,0,1,3.3783-3.9236,4.3947,4.3947,0,0,0-.8108-.0764,4.0043,4.0043,0,1,0,0,8,4.3947,4.3947,0,0,0,.8108-.0764A4.0527,4.0527,0,0,1,32.1358,36.125Z"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="38.193 37.166 39.521 33.166 40.666 37.105 37.486 34.732 41.486 34.633 38.193 37.166"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..38ead1d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F1.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m43,49.0122h-11v-27c0-.5522-.4473-1-1-1s-1,.4478-1,1v28c0,.5522.4473,1,1,1h12c.5527,0,1-.4478,1-1s-.4473-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f24acbc
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1E6.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" points="25 33.03 47 33.03 29.202 45.962 36 25.038 42.798 45.962 25 33.03"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..fe320c8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1E8.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="19" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d6f6d0d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1E9.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+    <path fill="#a57939" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M34.6566,30.5657,34.1579,32.27h-2.21A2.0412,2.0412,0,0,0,29,32.27v8.1052l2.9474-2.9473h2.21L31.8283,44h8.4848l-2.471-6.572H40.79L43,40.3753V32.27a2.0412,2.0412,0,0,0-2.9474,0h-2.21l-.3573-1.7044V29.1515a2.5259,2.5259,0,0,0-1.8481-2.6862,1.8866,1.8866,0,0,0-1.5806.2582l-1.5207,1.0139,2.1212,1.4141Z"/>
+    <g>
+      <rect x="32.2194" y="31.5" width="7.7641" height="4.529" fill="#d22f27"/>
+      <path fill="#1e50a0" d="M32.2194,35.382h7.7641c.3235,4.5291-4.2056,6.47-4.2056,6.47S30.9254,38.6171,32.2194,35.382Z"/>
+      <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.454 35.25 36.748 35.25 36.101 37.2 35.454 35.25"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M35.9936,41.8521s3.882-1.294,3.882-5.1761V31.5h-7.764v5.176C32.1116,40.5581,35.9936,41.8521,35.9936,41.8521Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b65bfed
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1EA.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39,35c1.501,0,3.5084-3.5564,1.9248-7.3049A8,8,0,0,1,36,42"/>
+    <line x1="36" x2="42" y1="42" y2="44" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33,35c-1.501,0-3.5084-3.5564-1.9248-7.3049A8,8,0,0,0,36,42"/>
+    <line x1="36" x2="30" y1="42" y2="44" fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 43 34 45.5 36 46 38 45.5 36 43"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M38,31c-2,0-2,2.4424-1,4"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M34,31c2,0,2,2.4424,1,4"/>
+    <path fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M38,38c0,1.2-.6509,1.6174-2,2-1.3491-.3826-2-.8-2-2"/>
+    <rect x="33" y="34" width="6" height="4" fill="#1e50a0"/>
+    <line x1="35" x2="37" y1="28" y2="28" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..13f31d8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1EB.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..560cbe7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1EC.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="19" fill="#5c9e31"/>
+    <rect x="5" y="17" width="21" height="38" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..dfa356b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1ED.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#f1b31c" points="67 24 67 18 6 53 6 54 67 24"/>
+    <polygon fill="#fff" points="67 30 67 24 6 54 6 55 67 30"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="16.725 26.966 17.852 23.78 17.081 27.059 19.043 24.257 17.4 27.236 20.062 25.01 17.659 27.485 20.84 25.985 17.841 27.789 21.324 27.118 17.933 28.127 23.119 28.315 17.93 28.476 21.302 29.541 17.831 28.813 20.797 30.665 17.644 29.113 20.001 31.628 17.38 29.358 18.968 32.364 17.059 29.53 17.769 32.821 16.701 29.617 16.511 35.29 16.331 29.614 15.204 32.8 15.975 29.521 14.014 32.323 15.657 29.344 12.995 31.57 15.398 29.095 12.217 30.595 15.216 28.791 11.732 29.462 15.123 28.453 9.119 28.273 15.127 28.104 11.755 27.039 15.225 27.768 12.26 25.915 15.413 27.467 13.056 24.952 15.677 27.222 14.089 24.217 15.998 27.05 15.288 23.759 16.356 26.963 16.546 21.29 16.725 26.966"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..502d9e5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F0.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#f1b31c" points="15 17 5 17 36 36 36 34 15 17"/>
+    <polygon fill="#f1b31c" points="15 55 5 55 36 36 36 38 15 55"/>
+    <polygon fill="#f1b31c" points="57 17 67 17 36 36 36 34 57 17"/>
+    <polygon fill="#f1b31c" points="57 55 67 55 36 36 36 38 57 55"/>
+    <polygon fill="#f1b31c" points="33 55 39 55 37 36 35 36 33 55"/>
+    <polygon fill="#f1b31c" points="67 39 67 33 36 35 36 37 67 39"/>
+    <polygon fill="#f1b31c" points="5 39 5 33 36 35 36 37 5 39"/>
+    <polygon fill="#f1b31c" points="33 17 39 17 37 36 35 36 33 17"/>
+    <circle cx="36" cy="36" r="7" fill="#f1b31c" stroke="#d22f27" stroke-miterlimit="10"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..03259dc
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F1.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..dac483e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F2.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#f1b31c"/>
+    <rect x="5" y="30" width="62" height="12" fill="#5c9e31"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="30.183 46 36.158 28 41.309 45.725 27 35.044 45 34.6 30.183 46"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..312ae71
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F3.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5.2273" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5.2273" y="17" width="21" height="38" fill="#d22f27"/>
+    <rect x="46.2273" y="17" width="21" height="38" fill="#d22f27"/>
+    <circle cx="16" cy="29" r="1" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="16" cy="41" r="1" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17,24a1,1,0,0,1-2,0l1-1Z"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="15 33 17 33 16 34 15 33"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="15 48 17 48 16 49 15 48"/>
+    <line x1="15" x2="17" y1="37" y2="37" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="15" x2="17" y1="45" y2="45" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="11" y="33" width="1" height="16" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="20" y="33" width="1" height="16" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e283a3e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F4.svg
@@ -0,0 +1,25 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#186648"/>
+    <g>
+      <line x1="32.4077" x2="39.4077" y1="49.977" y2="49.977" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+      <line x1="43.9077" x2="27.9077" y1="47.977" y2="47.977" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+      <line x1="25.4077" x2="46.4077" y1="45.977" y2="45.977" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="34.467 27.023 36.127 22.023 37.557 26.946 33.583 23.98 38.583 23.856 34.467 27.023"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="42.993 28.307 42.355 25.211 44.576 27.34 41.621 26.991 44.182 25.427 42.993 28.307"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="46.094 33.047 47.09 30.047 47.949 33.001 45.564 31.221 48.564 31.147 46.094 33.047"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="29.007 28.155 29.645 25.059 27.424 27.188 30.379 26.839 27.818 25.275 29.007 28.155"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="25.906 32.895 24.91 29.895 24.051 32.849 26.436 31.069 23.436 30.995 25.906 32.895"/>
+      <g>
+        <g>
+          <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M35.0066,41.34c1.3822,1.2555,4.0028,1.8321,6.8351,1.3326s5.0984-1.9379,5.9676-3.5908c-1.3821-1.2559-4.0031-1.8327-6.8359-1.3332s-5.0976,1.9374-5.9671,3.59Z"/>
+          <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M24.0062,39.083c.8695,1.6525,3.1348,3.09,5.9671,3.59s5.4538-.0773,6.8358-1.3332c-.8691-1.6529-3.1347-3.0913-5.9675-3.5908s-5.4529.0771-6.8351,1.3326Z"/>
+        </g>
+        <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M35.907,29.977c-1.4765,1.0443-2.4993,3.31-2.4993,5.9373s1.0232,4.8938,2.5,5.9378c1.4769-1.044,2.5-3.31,2.5-5.9378s-1.0228-4.893-2.4992-5.9373Z"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..955054f
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F5.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <g>
+      <ellipse cx="36" cy="36" rx="10.4661" ry="10.4999" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="3"/>
+      <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" d="M46.4658,35.9315a10.4661,10.4661,0,1,1-20.9317.137"/>
+      <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M25.5343,36.0685a10.4661,10.4661,0,1,1,20.9317-.137"/>
+      <polygon fill="#9b9b9a" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" points="40.5 50 31.5 50 34.5 32 37.5 32 40.5 50"/>
+      <polygon fill="#9b9b9a" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" points="38.5 29 33.5 29 34.5 33 37.5 33 38.5 29"/>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="32.122 42 36.105 30 39.539 41.816 30 34.696 42 34.4 32.122 42"/>
+      <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" d="M25.7466,38.1161A10.6415,10.6415,0,0,1,25.7235,34"/>
+      <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" d="M46.2535,34a10.6388,10.6388,0,0,1,.023,4.1158"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4a35f20
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F6.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5C9E31"/>
+    <rect x="5" y="36" width="62" height="19" fill="#3F3F3F"/>
+    <polygon fill="#D22F27" points="26 36 5 55 5 17 26 36"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2a338a3
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F7.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="7" fill="#d22f27"/>
+    <rect x="5" y="48" width="62" height="7" fill="#d22f27"/>
+    <g>
+      <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" d="M36,40.8847a6.9294,6.9294,0,0,1-6.8663-5.4054A6.4559,6.4559,0,0,0,29,36.7766a7.0066,7.0066,0,0,0,14,0,6.4486,6.4486,0,0,0-.1337-1.2973A6.9294,6.9294,0,0,1,36,40.8847Z"/>
+      <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="34.707 34.521 36.035 30.521 37.18 34.46 34 32.086 38 31.987 34.707 34.521"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..32f7748
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F8.svg
@@ -0,0 +1,24 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <path fill="#92d3f5" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" d="M52.679,47s6.75-2.25,6.75-9V29h-13.5v9C45.929,44.75,52.679,47,52.679,47Z"/>
+    <path fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M46.2767,40.5C47.6461,45.3127,52.679,47,52.679,47s5.033-1.6873,6.4024-6.5Z"/>
+    <line x1="52.4584" x2="52.4584" y1="32.0625" y2="42.6875" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="55.6459" x2="49.2709" y1="35.25" y2="35.25" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b55425b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1F9.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="31" height="38" fill="#fff"/>
+    <polygon fill="#d0cfce" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="14 22.035 11.965 22.035 11.965 20 10.035 20 10.035 22.035 8 22.035 8 23.965 10.035 23.965 10.035 26 11.965 26 11.965 23.965 14 23.965 14 22.035"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5b0f7ce
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1FA.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="27" width="62" height="9" fill="#1e50a0"/>
+    <rect x="5" y="36" width="62" height="9" fill="#fcea2b"/>
+    <rect x="5" y="17" width="62" height="10" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..819f4e7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1FB.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="9.431" y="21.43" width="53.14" height="29.14" fill="none" stroke="#d22f27" stroke-miterlimit="10" stroke-width="8.861"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m34.59 36a6.215 6.215 0 0 1 5.405-5.885 7.487 7.487 0 0 0-1.297-0.1146c-3.702 0-6.703 2.686-6.703 6s3.001 6 6.703 6a7.487 7.487 0 0 0 1.297-0.1146 6.215 6.215 0 0 1-5.405-5.885z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a042b32
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1FC.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13"/>
+    <rect x="5" y="30" width="62" height="12" fill="#d22f27"/>
+    <path fill="#d22f27" stroke="#d22f27" stroke-miterlimit="10" d="M29.2393,30.9991A7.503,7.503,0,0,1,42.76,30.9984Z"/>
+    <path fill="none" stroke="#d22f27" stroke-miterlimit="10" d="M26.54,31a10.004,10.004,0,0,1,18.92-.0009Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..15bf308
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1FD.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+    <circle cx="36" cy="35" r="3.5" fill="#a57939" stroke="#a57939" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30,39.4863a7.48,7.48,0,0,0,12,0"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7b70711
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1FE.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="26" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="34" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="42" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="50" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="17" width="29" height="21" fill="#1e50a0"/>
+    <g>
+      <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" d="M13.8446,27.5A6.2149,6.2149,0,0,1,19.25,21.6146,7.4868,7.4868,0,0,0,17.9527,21.5c-3.7018,0-6.7027,2.6863-6.7027,6s3.0009,6,6.7027,6a7.4868,7.4868,0,0,0,1.2973-.1146A6.2149,6.2149,0,0,1,13.8446,27.5Z"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="24.612 25.969 26.709 22.551 25.258 26.274 28.667 24.082 25.703 26.822 29.75 26.29 25.861 27.504 29.744 28.737 25.7 28.185 28.649 30.94 25.251 28.731 26.684 32.461 24.605 29.033 24.236 33 23.888 29.031 21.791 32.449 23.242 28.726 19.833 30.918 22.797 28.178 18.75 28.71 22.639 27.496 18.756 26.263 22.8 26.815 19.851 24.06 23.249 26.269 21.816 22.539 23.895 25.967 24.264 22 24.612 25.969"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b97fb6e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2-1F1FF.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="62" height="13" fill="#186648"/>
+    <rect x="5" y="30" width="62" height="12" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
+    <polygon fill="#d22f27" points="26 36 5 55 5 17 26 36"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="10.004 41.409 13.593 30.591 16.689 41.245 8.091 34.825 18.909 34.559 10.004 41.409"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="16.869 38.804 10.131 38.804 11.033 35.585 15.967 35.585 16.869 38.804"/>
+    <line x1="8.9345" x2="16.2625" y1="40.121" y2="32.7804" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
+    <line x1="10.7376" x2="18.0655" y1="32.7804" y2="40.121" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c018eeb
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F2.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m48.2295,21.0391c-.4502-.1064-.917.1108-1.124.5259l-11.1055,22.2114-11.1055-22.2114c-.207-.415-.6758-.6313-1.124-.5259-.4512.1064-.7705.5093-.7705.9731v28c0,.5522.4473,1,1,1s1-.4478,1-1v-23.7642l10.1055,20.2114c.3398.6777,1.4492.6777,1.7891,0l10.1055-20.2114v23.7642c0,.5522.4473,1,1,1s1-.4478,1-1v-28c0-.4639-.3193-.8667-.7705-.9731h0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b0da578
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1E6.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <polygon fill="#1e50a0" points="5 17 5 55 67 17 5 17"/>
+    <polygon fill="#d22f27" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="67 24 67 17 59 17 5 48 5 55 13 55 67 24"/>
+    <circle cx="17" cy="27" r="4" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0b7db1a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1E8.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="30" width="62" height="12" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#1e50a0"/>
+    <circle cx="25" cy="36.5" r="13" fill="#fcea2b" stroke="#000" stroke-miterlimit="10"/>
+    <line x1="25" x2="25" y1="23.56" y2="48.56" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <ellipse cx="25" cy="36.93" rx="1.785" ry="1.071" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"/>
+    <ellipse cx="25" cy="42.49" rx="1.162" ry="1.55" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.7749"/>
+    <circle cx="25" cy="31.29" r="1.353" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9021"/>
+    <line x1="22.83" x2="27.17" y1="28.61" y2="26.11" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <path stroke="#000" stroke-miterlimit="10" stroke-width="1.046" d="m25 49.49a10.75 17.05 0 0 0 3.694-1.05c-0.2219-1.632-1.782-2.902-3.694-2.902s-3.472 1.27-3.694 2.902a10.75 17.05 0 0 0 3.694 1.05z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="m22.39 42.45c1.114-3.639 4.098-3.639 5.216 0"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="m22.4 31.36c1.11 3.798 4.085 3.798 5.199 0"/>
+    <line x1="23.35" x2="26.65" y1="35.25" y2="35.25" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <line x1="23.35" x2="26.65" y1="38.61" y2="38.61" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1993ff4
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1EA.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <circle cx="36" cy="36.01" r="5.803" fill="#e27022" stroke-width="0.6828"/>
+    <rect x="5" y="42.4" width="62" height="12.6" fill="#5c9e31" stroke-width="1.342"/>
+    <rect x="5" y="17" width="62" height="12.6" fill="#e27022" stroke-width="1.342"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5009760
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1EB.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#186648"/>
+    <rect x="46" y="17" width="21" height="38" fill="#186648"/>
+    <g>
+      <polygon fill="#186648" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 26 32 30 36 29.2 40 30 36 26"/>
+      <polygon fill="#186648" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 30 31 34 36 33.2 41 34 36 30"/>
+      <polygon fill="#186648" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 34 30 38 36 37.2 42 38 36 34"/>
+      <polygon fill="#186648" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 38 29 42 36 41.2 43 42 36 38"/>
+      <line x1="36" x2="36" y1="40" y2="46" fill="none" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1059963
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1EC.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#186648"/>
+    <rect x="46" y="17" width="21" height="38" fill="#186648"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..383ad1b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1EE.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="17" width="62" height="13" fill="#61b2e4"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <polygon fill="#61b2e4" points="33 37.5 36 32.5 39 37.5 33 37.5"/>
+    <circle cx="36" cy="36" r="5" fill="none" stroke="#fcea2b" stroke-miterlimit="10"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6d764fc
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1F1.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b362fff
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1F4.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#1e50a0" stroke="#fff" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..33f2ee3
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1F5.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <polygon fill="#000" stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="30 42.773 31.206 42 31.864 43.272 33.294 43.206 33.228 44.637 34.5 45.294 33.727 46.5 34.5 47.706 33.228 48.363 33.294 49.794 31.864 49.728 31.206 51 30 50.227 28.794 51 28.137 49.728 26.706 49.794 26.772 48.363 25.5 47.706 26.273 46.5 25.5 45.294 26.772 44.637 26.706 43.206 28.137 43.272 28.794 42 30 42.773"/>
+    <circle cx="30" cy="30" r="2" fill="#000" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M34,31c-.45,1-1.7187,2-4,2s-3.55-1-4-2"/>
+  </g>
+  <g id="color">
+    <polygon fill="#d22f27" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50 55 22 55 22 17 50 37 33 37 50 55"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="30 42.773 31.206 42 31.864 43.272 33.294 43.206 33.228 44.637 34.5 45.294 33.727 46.5 34.5 47.706 33.228 48.363 33.294 49.794 31.864 49.728 31.206 51 30 50.227 28.794 51 28.137 49.728 26.706 49.794 26.772 48.363 25.5 47.706 26.273 46.5 25.5 45.294 26.772 44.637 26.706 43.206 28.137 43.272 28.794 42 30 42.773"/>
+    <circle cx="30" cy="30" r="2" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M34,31c-.45,1-1.7187,2-4,2s-3.55-1-4-2"/>
+  </g>
+  <g id="line">
+    <polygon fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50 55 22 55 22 17 50 37 33 37 50 55"/>
+  </g>
+  <g id="color-foreground">
+    <polygon fill="none" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50 55 22 55 22 17 50 37 33 37 50 55"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..09793f5
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1F7.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="35" width="62" height="2" fill="#f1b31c"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="16.296 44.896 18 42.536 16.808 45.192 19.464 44 17.104 45.704 20 46 17.104 46.296 19.464 48 16.808 46.808 18 49.464 16.296 47.104 16 50 15.704 47.104 14 49.464 15.192 46.808 12.536 48 14.896 46.296 12 46 14.896 45.704 12.536 44 15.192 45.192 14 42.536 15.704 44.896 16 42 16.296 44.896"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..13be4b4
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1FA.svg
@@ -0,0 +1,27 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="31" height="19" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <circle cx="20.5" cy="26.5" r="2.5" fill="#1e50a0"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="19.531 28 20.526 25 21.385 27.954 19 26.174 22 26.1 19.531 28"/>
+    <circle cx="27" cy="26.5" r="1" fill="#fcea2b"/>
+    <circle cx="14" cy="26.5" r="1" fill="#fcea2b"/>
+    <circle cx="20.5" cy="32" r="1" fill="#fcea2b"/>
+    <circle cx="20.5" cy="21" r="1" fill="#fcea2b"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..bb49c70
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3-1F1FF.svg
@@ -0,0 +1,32 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <g>
+      <polygon fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="52.594 27.262 54.317 25.937 52.224 25.989 51.625 23.928 50.931 26.021 48.839 26.072 50.502 27.314 49.807 29.406 51.53 28.081 53.193 29.323 52.594 27.262"/>
+      <polygon fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="52.594 45.262 54.317 43.937 52.224 43.989 51.625 41.928 50.931 44.021 48.839 44.072 50.502 45.314 49.807 47.406 51.53 46.081 53.193 47.323 52.594 45.262"/>
+      <polygon fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="60.594 32.262 62.317 30.937 60.224 30.989 59.625 28.928 58.931 31.021 56.839 31.072 58.502 32.314 57.807 34.406 59.53 33.081 61.193 34.323 60.594 32.262"/>
+      <polygon fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="45.594 34.262 47.317 32.937 45.224 32.989 44.625 30.928 43.931 33.021 41.839 33.072 43.502 34.314 42.807 36.406 44.53 35.081 46.193 36.323 45.594 34.262"/>
+    </g>
+    <g>
+      <polygon fill="#d22f27" points="52.505 27.211 54.078 26.001 52.168 26.048 51.621 24.167 50.987 26.077 49.078 26.124 50.596 27.257 49.962 29.167 51.534 27.958 53.052 29.091 52.505 27.211"/>
+      <polygon fill="#d22f27" points="52.505 45.211 54.078 44.001 52.168 44.048 51.621 42.167 50.987 44.077 49.078 44.124 50.596 45.257 49.962 47.167 51.534 45.958 53.052 47.091 52.505 45.211"/>
+      <polygon fill="#d22f27" points="60.505 32.211 62.078 31.001 60.168 31.048 59.621 29.167 58.987 31.077 57.078 31.124 58.596 32.257 57.962 34.167 59.534 32.958 61.052 34.091 60.505 32.211"/>
+      <polygon fill="#d22f27" points="45.505 34.211 47.078 33.001 45.168 33.048 44.621 31.167 43.987 33.077 42.078 33.124 43.596 34.257 42.962 36.167 44.534 34.958 46.052 36.091 45.505 34.211"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..dee2268
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F3.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m46,21.0122c-.5527,0-1,.4478-1,1v24.8794l-18.1865-25.4604c-.2529-.354-.7041-.5039-1.1191-.3711-.4131.1323-.6943.5176-.6943.9521v28c0,.5522.4473,1,1,1s1-.4478,1-1v-24.8794l18.1865,25.4604c.1914.2681.4971.4189.8135.4189.1016,0,.2051-.0156.3057-.0479.4131-.1323.6943-.5176.6943-.9521v-28c0-.5522-.4473-1-1-1h0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..53107f1
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F4-1F1F2.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="42" width="62" height="13" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#fff"/>
+    <rect x="5" y="17" width="16" height="38" fill="#d22f27"/>
+    <g>
+      <line x1="10.5" x2="15.5" y1="23.9167" y2="23.9167" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+      <line x1="13" x2="13" y1="23.9167" y2="19.9167" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+      <g>
+        <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M17,20.0833l-4,4s-2,4-5,4"/>
+        <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M9,20.0833l4,4s2,4,5,4"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..eaf4634
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F4.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+    <path d="m36,21.0122c-6.0654,0-11,4.9346-11,11v8c0,6.0654,4.9346,11,11,11s11-4.9346,11-11v-8c0-6.0654-4.9346-11-11-11Zm9,19c0,4.9624-4.0371,9-9,9s-9-4.0376-9-9v-8c0-4.9624,4.0371-9,9-9s9,4.0376,9,9v8Z"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="m36,21.0122c-6.0654,0-11,4.9346-11,11v8c0,6.0654,4.9346,11,11,11s11-4.9346,11-11v-8c0-6.0654-4.9346-11-11-11Zm9,19c0,4.9624-4.0371,9-9,9s-9-4.0376-9-9v-8c0-4.9624,4.0371-9,9-9s9,4.0376,9,9v8Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8abbbce
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1E6.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="36" width="31" height="19" fill="#1e50a0"/>
+    <rect x="36" y="17" width="31" height="19" fill="#d22f27"/>
+    <polygon fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" points="18.962 29.167 20.621 24.167 22.052 29.091 18.078 26.124 23.078 26.001 18.962 29.167"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="50.962 48.167 52.621 43.167 54.052 48.091 50.078 45.124 55.078 45.001 50.962 48.167"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..72216c8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1EA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="38" fill="#d22f27"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5086493
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1EB.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="9" fill="#d22f27"/>
+    <rect x="5" y="46" width="62" height="9" fill="#d22f27"/>
+    <path fill="#92d3f5" stroke="#92d3f5" stroke-linejoin="round" stroke-width="0.9333" d="M42,36a7,7,0,0,1-14,0"/>
+    <path fill="#f4aa41" stroke="#f4aa41" stroke-linejoin="round" stroke-width="0.9333" d="M28,36a7,7,0,0,1,14,0"/>
+    <path fill="#d22f27" stroke="#d22f27" stroke-linejoin="round" d="M36.5417,31s-3.1667,0-3.1667,2.1111v3.1667l3.1667,1.5833V33.6389S34.4306,33.1111,36.5417,31Z"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M33,39.5794s-1.0445.6963-1.7408,0l.05-4.8191"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M37.2592,39.5794s1.0445.6963,1.7408,0L38.95,34.76"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0482cda
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1EC.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" rx="2.0922" ry="2.0922" width="62" height="38" fill="#d22f27"/>
+    <path d="m5,54.3703V17.3118c0-.2641.2894-.4262.5146-.2882l60.4639,37.0585c.2908.1782.1645.6261-.1766.6261H5.338c-.1867,0-.338-.1513-.338-.338Z"/>
+    <circle cx="19" cy="50" r="1" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="19" cy="32" r="1" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="12" cy="40" r="1" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="26" cy="40" r="1" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="21.5" cy="44.5" r="0.5" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m42,25c9,1,15,6.0874,15,11,.1261,2.1257-1.0651,4.1109-3,5"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m50,21c-1.75.6584-3.1544,3.5714-1.9,5l1.9,1v-6Z"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m50,27c5-3,9,0,9,3h-5l-4-3"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m44.81,31.19c-.81-3.19,1.19-5.19,3-4.9l2,.9-5,4Z"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m49.81,27.19c-.81,3.81-1,8,2,8l2-5-4-3"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cb33531
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1ED.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+    <polygon fill="#fff" points="37 36 5 55 5 17 37 36"/>
+    <circle cx="8" cy="21" r="1.0435" fill="#f1b31c"/>
+    <circle cx="33" cy="36" r="1.0435" fill="#f1b31c"/>
+    <circle cx="8" cy="51" r="1.0435" fill="#f1b31c"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="17.907 35.086 20.04 33.59 18.434 35.642 21 36.092 18.414 36.407 19.91 38.54 17.859 36.934 17.408 39.5 17.093 36.914 14.96 38.41 16.566 36.359 14 35.908 16.586 35.593 15.09 33.46 17.142 35.066 17.592 32.5 17.907 35.086"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..125cc72
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1F0.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#186648"/>
+    <rect x="5" y="17" width="21" height="38" fill="#fff"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M50,44a11.9921,11.9921,0,0,1-9.8474-18.8474A11.9953,11.9953,0,1,0,56.8474,41.8474,11.9362,11.9362,0,0,1,50,44Z"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="53.453 29.52 54.8 27.666 52.621 28.374 51.273 26.52 51.273 28.812 49.094 29.52 51.273 30.228 51.273 32.52 52.621 30.666 54.8 31.374 53.453 29.52"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b661d9c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1F1.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="36" width="62" height="19" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1b0a880
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1F2.svg
@@ -0,0 +1,29 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <g>
+      <rect x="5" y="17" width="19" height="13" fill="#d22f27"/>
+      <line x1="6" x2="24" y1="30" y2="18" fill="none" stroke="#5c9e31" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="6" x2="24" y1="18" y2="30" fill="none" stroke="#5c9e31" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="15" x2="15" y1="30" y2="18" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="6" x2="24" y1="24" y2="24" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
+    </g>
+    <rect x="24" y="17" width="43" height="38" fill="#61b2e4"/>
+    <rect x="5" y="30" width="19" height="12" fill="#fff"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,35c0,3,4,5,7,5s11-1,15-9h2c0,4-3,11-6,13H37l-8-9h7"/>
+    <g>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M24,46c3,0,3-2,6-2s3,2,6,2"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,46c3,0,3-2,6-2s3,2,6,2"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M48,46c3,0,3-2,6-2s3,2,6,2"/>
+      <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M60,46c3,0,3-2,6-2"/>
+    </g>
+    <rect x="5" y="42" width="19" height="13" fill="#d22f27"/>
+    <line x1="10" x2="20" y1="46" y2="46" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="10" x2="20" y1="50" y2="50" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M47,24c-2,4-3,10-2,12l-4-1c0-5,2-9,5-11Z"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M55,24c-2,4-3,10-2,12l-4-1c0-5,2-9,5-11Z"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33.4213,30.1053A10.2782,10.2782,0,0,1,38,24h1a25.06,25.06,0,0,0-2.1591,6.96Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d7507ad
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1F3.svg
@@ -0,0 +1,29 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <line x1="48" x2="53" y1="30" y2="25" fill="#9b9b9a" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M58,29c3.0744,4.7618-.8014,9.1557-4,10"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M55.8318,39.9548c2,2,2.9548,6.2551.1682,10.0452"/>
+    <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53,38.5q6,0,9,3"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M44,29c-3.0744,4.7618.8014,9.1557,4,10"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M46.1682,39.9548c-2,2-2.9548,6.2551-.1682,10.0452"/>
+    <path fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M49,38.5q-6,0-9,3"/>
+    <polyline fill="#9b9b9a" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50 36 50 28 51 27 54 36"/>
+    <path fill="#61b2e4" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M55,35v3.625C55,44.25,53.6667,46.75,51,48c-2.6667-1.25-4-3.75-4-9.375V35Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b12955e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1F7.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="32" width="62" height="8" fill="#d22f27"/>
+    <rect x="5" y="47" width="62" height="8" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="8" fill="#d22f27"/>
+    <polygon fill="#1e50a0" points="26 36 5 55 5 17 26 36"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="13.5 33.5 15.045 38.5 11 35.41 16 35.41 11.955 38.5 13.5 33.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c7cd4a2
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1F8.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="42" width="62" height="13" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13"/>
+    <polygon fill="#d22f27" points="26 36 5 55 5 17 26 36"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a50fbb3
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1F9.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+    <circle cx="26" cy="36" r="12" fill="none" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="26" x2="26" y1="24" y2="48" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+    <polygon fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="26 39.5 17 44 35 44 26 39.5"/>
+    <polygon fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="26 33.5 35 28 26.5 29.5 17 28 26 33.5"/>
+    <polygon fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="38 36 26 41 14 36 26 31 38 36"/>
+    <path fill="#fff" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.2,29H31.8V39.1c0,2.5-2.6,4.6-5.8,4.6h0c-3.2,0-5.8-2.1-5.8-4.6V29Z"/>
+    <circle cx="26" cy="32.8" r="0.7" fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="26" cy="38.7" r="0.7" fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="26" cy="35.7" r="0.7" fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="29" cy="35.7" r="0.7" fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="23" cy="35.7" r="0.7" fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d184fd6
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1FC.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="6" y="18" width="60" height="36" fill="#61b2e4"/>
+    <circle cx="31.2" cy="36" r="10.8" fill="#fcea2b"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0b4e339
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5-1F1FE.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="34.707 38 36.035 34 37.18 37.939 34 35.565 38 35.467 34.707 38"/>
+    <circle cx="36" cy="36" r="5" fill="none" stroke="#5c9e31" stroke-miterlimit="10"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7775f69
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F5.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m40.8496,21.0122h-10.6758c-.5527,0-1,.4478-1,1v28c0,.5522.4473,1,1,1s1-.4478,1-1v-13.0518h9.6758c4.3984,0,7.9766-3.5762,7.9766-7.9722s-3.5781-7.9761-7.9766-7.9761h0Zm0,13.9482h-9.6758v-11.9482h9.6758c3.2959,0,5.9766,2.6807,5.9766,5.9761,0,3.293-2.6807,5.9722-5.9766,5.9722h0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ffc6297
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F6-1F1E6.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#781e32"/>
+    <polygon fill="#fff" points="5 17 19 17 26 19.5 19.5 21.9 26 24.2 19.5 26.6 26 28.9 19.5 31.3 26 33.7 19.5 36 26 38.4 19.5 40.7 26 43.1 19.5 45.5 26 47.8 19.5 50.2 26 52.5 19 55 5 55 5 17"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..dc1e6fc
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F6.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m36,21.0122c-6.0654,0-11,4.9346-11,11v8c0,6.0654,4.9346,11,11,11,2.6573,0,5.0974-.9475,7.0007-2.522l2.2474,2.2314c.1943.1938.4492.2905.7041.2905.2568,0,.5137-.0986.71-.2954.1934-.1953.29-.4502.29-.7051,0-.2568-.0986-.5137-.2959-.709l-2.239-2.2231c1.6091-1.9133,2.5827-4.3777,2.5827-7.0674v-8c0-6.0654-4.9346-11-11-11h0Zm9,19c0,2.1406-.754,4.1069-2.0068,5.6534l-3.0889-3.067c-.3896-.3887-1.0225-.3867-1.4141.0049-.1934.1953-.29.4502-.29.7051,0,.2568.0986.5137.2959.709l3.0729,3.0511c-1.5338,1.2131-3.4661,1.9435-5.569,1.9435-4.9629,0-9-4.0376-9-9v-8c0-4.9624,4.0371-9,9-9s9,4.0376,9,9c0,0,0,8,0,8Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8db2381
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F7-1F1EA.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="15 17 5 17 36 36 36 36 15 17"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="57 17 67 17 36 36 36 36 57 17"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="67 39 67 33 36 36 36 36 67 39"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="5 39 5 33 36 36 36 36 5 39"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="33 17 39 17 36 36 36 36 33 17"/>
+    <polygon fill="#d22f27" points="36 36 67 55 5 55 36 36"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..02b6f09
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F7-1F1F4.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..86827e2
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F7-1F1F8.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+    <circle cx="27" cy="40" r="7" fill="#fff" stroke="#d22f27" stroke-miterlimit="10" stroke-width="2"/>
+    <polyline fill="#fff" stroke="#d22f27" stroke-miterlimit="10" stroke-width="2" points="34 40 34 29 20 29 20 40"/>
+    <line x1="22" x2="34" y1="44" y2="30" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="32" x2="20" y1="44" y2="30" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="27" x2="27" y1="33" y2="43" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="22" x2="32" y1="38" y2="38" fill="none" stroke="#fff" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M27,23c-3.1257.623-5,1.6-4,4h8C32,24.6,30.1257,23.623,27,23Z"/>
+    <line x1="27" x2="27" y1="21.0488" y2="23" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7878ce2
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F7-1F1FA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#fff"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..305fd9b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F7-1F1FC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="36" width="62" height="9" fill="#fcea2b"/>
+    <rect x="5" y="45" width="62" height="10" fill="#5c9e31"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" points="56.296 24.896 58 22.536 56.808 25.192 59.464 24 57.104 25.704 60 26 57.104 26.296 59.464 28 56.808 26.808 58 29.464 56.296 27.104 56 30 55.704 27.104 54 29.464 55.192 26.808 52.536 28 54.896 26.296 52 26 54.896 25.704 52.536 24 55.192 25.192 54 22.536 55.704 24.896 56 22 56.296 24.896"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c232a99
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F7.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m47.8262,28.9883c0-4.3979-3.5781-7.9761-7.9756-7.9761h-10.6768c-.5527,0-1,.4478-1,1v28c0,.5522.4473,1,1,1s1-.4478,1-1v-13.0518h9.2615l5.8088,13.4453c.1631.3779.5312.604.9189.604.1318,0,.2666-.0269.3955-.0825.5068-.2192.7402-.8076.5215-1.3145l-5.5452-12.835c3.5908-.7753,6.2913-3.9715,6.2913-7.7896v.0002Zm-7.9756,5.9722h-9.6768v-11.9482h9.6768c3.2949,0,5.9756,2.6807,5.9756,5.9761,0,3.293-2.6807,5.9722-5.9756,5.9722h0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7c68a58
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1E6.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <line x1="49" x2="23" y1="45" y2="45" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="43" x2="43" y1="43" y2="47" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="46" x2="46" y1="27" y2="36" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="51" x2="51" y1="27" y2="36" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="41" x2="41" y1="27" y2="36" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="36" x2="36" y1="27" y2="36" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="31" x2="31" y1="27" y2="36" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="26" x2="26" y1="27" y2="36" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="21" x2="21" y1="27" y2="36" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="49" x2="49" y1="45" y2="47" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..118ceec
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1E7.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <polygon fill="#1e50a0" points="5 17 5 55 67 17 5 17"/>
+    <polygon fill="#fcea2b" points="67 21 67 17 62 17 5 51 5 55 10 55 67 21"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="9.384 25.5 11.044 20.5 12.475 25.423 8.5 22.457 13.5 22.333 9.384 25.5"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="21.384 25.5 23.044 20.5 24.475 25.423 20.5 22.457 25.5 22.333 21.384 25.5"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="9.384 35.5 11.044 30.5 12.475 35.423 8.5 32.457 13.5 32.333 9.384 35.5"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="15.384 30.5 17.044 25.5 18.475 30.423 14.5 27.457 19.5 27.333 15.384 30.5"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="21.384 35.5 23.044 30.5 24.475 35.423 20.5 32.457 25.5 32.333 21.384 35.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..310612a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1E8.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <path fill="#d22f27" d="M 67.253,29.579 67,17 47.161125,16.945094 6,54 Z"/>
+    <path fill="#f1b31c" d="m47.13 16.98-20.57 3.44e-4 -20.57 37.02z"/>
+    <path fill="#fff" d="m67.2 41.76-0.03981-12.23-61.16 24.46z"/>
+    <path transform="matrix(1 0 0 1.105 -.001553 -5.79)" fill="#5c9e31" d="m67 55v-11.95l-61 11.04z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b2fe7ef
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1E9.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="42" width="62" height="13"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <polygon fill="#5c9e31" points="26 36 5 55 5 17 26 36"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4b12f31
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1EA.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8cfb870
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1EC.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="19" fill="#fff"/>
+    <circle cx="20" cy="22" r="1" fill="#fff"/>
+    <circle cx="18" cy="27" r="1" fill="#fff"/>
+    <circle cx="22" cy="27" r="1" fill="#fff"/>
+    <circle cx="17" cy="24" r="1" fill="#fff"/>
+    <circle cx="23" cy="24" r="1" fill="#fff"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M11.1987,24.9227A4.873,4.873,0,0,1,15,20.094,4.539,4.539,0,0,0,14.0877,20a4.9273,4.9273,0,0,0,0,9.8454A4.539,4.539,0,0,0,15,29.7514,4.873,4.873,0,0,1,11.1987,24.9227Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7492ea1
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1ED.svg
@@ -0,0 +1,35 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <g>
+      <path fill="#3f3f3f" d="M58.5,29h-.2771c.0939.0307.1839.0693.2771.1014Z"/>
+      <path fill="#3f3f3f" d="M45.5,29v.1014c.0932-.0321.1832-.0707.2771-.1014Z"/>
+      <path fill="#fcea2b" d="M52,28a19.9562,19.9562,0,0,0-6.2229,1H58.2229A19.9562,19.9562,0,0,0,52,28Z"/>
+      <path fill="#fcea2b" d="M58.5,34.5V29.1014c-.0932-.0321-.1832-.0707-.2771-.1014H45.7771c-.0939.0307-.1839.0693-.2771.1014V34.5Z"/>
+    </g>
+    <path fill="#92d3f5" d="M44.9556,34.81,58.5,34.8635S60,44,52,47"/>
+    <path fill="#92d3f5" d="M44.9556,34.81S44,45,52,47"/>
+    <path fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M56,42.9188c-2.4-1.5567-8,0-8,0L52,47Z"/>
+    <polyline fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="46 37 49 41 49 44"/>
+    <ellipse cx="46.8576" cy="40.5894" rx="0.5" ry="2.6466" transform="translate(-10.3208 16.6359) rotate(-18.1699)" fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polygon fill="#f4aa41" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="53 32 51 32 50 30 53 32"/>
+    <path fill="none" stroke="#f4aa41" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M55,41H52A2.8222,2.8222,0,0,0,55,41Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M58.5833,29v9c0,6.75-6.75,9-6.75,9s-6.75-2.25-6.75-9V29S51.9792,25.5937,58.5833,29Z"/>
+    <line x1="58.5" x2="45.5" y1="34.5" y2="34.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d8c8ba9
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1EE.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#fff"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+    <path fill="#1e50a0" stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M22.5833,22v9c0,6.75-6.75,9-6.75,9s-6.75-2.25-6.75-9V22S15.9792,18.5937,22.5833,22Z"/>
+    <path fill="#fff" stroke="#fff" stroke-miterlimit="10" d="M11.9626,33.3515l7.9755.3394A6.8155,6.8155,0,0,1,16,38c-3,1-4.0374-4.6485-4.0374-4.6485"/>
+    <polyline fill="#fff" stroke="#fff" stroke-miterlimit="10" points="14.5 33.5 15.5 31.5 17.765 34.084 14.5 33.5"/>
+    <circle cx="13" cy="24" r="1" fill="#fcea2b"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21,35l-1-3-2,3-2-5-2,5-2-3-1,3S15,44,21,35Z"/>
+    <circle cx="16" cy="26" r="1" fill="#fcea2b"/>
+    <circle cx="19" cy="24" r="1" fill="#fcea2b"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M22.5833,22v9c0,6.75-6.75,9-6.75,9s-6.75-2.25-6.75-9V22S15.9792,18.5937,22.5833,22Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b362fff
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1EF.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#1e50a0" stroke="#fff" stroke-miterlimit="10" stroke-width="2" points="67 33 30 33 30 17 24 17 24 33 5 33 5 39 24 39 24 55 30 55 30 39 67 39 67 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..898c0e7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F0.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#fff"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+    <path fill="#d22f27" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M23.8334,45s6.75-2.25,6.75-9V27h-13.5v9C17.0834,42.75,23.8334,45,23.8334,45Z"/>
+    <line x1="23.8334" x2="23.8334" y1="29.5" y2="41.5" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="21.8334" x2="25.8334" y1="31.5" y2="31.5" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="20.3334" x2="27.3334" y1="34.5" y2="34.5" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="23.8334" cy="41.5" r="3.1667" fill="#1e50a0"/>
+    <path fill="#1e50a0" d="M19.25,39.3333a2.1457,2.1457,0,0,0-1.3265.465,9.5792,9.5792,0,0,0,2.7022,3.3628A2.158,2.158,0,0,0,19.25,39.3333Z"/>
+    <path fill="#1e50a0" d="M28.4167,39.3333a2.158,2.158,0,0,0-1.3757,3.8278,9.5792,9.5792,0,0,0,2.7022-3.3628A2.1455,2.1455,0,0,0,28.4167,39.3333Z"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M23.8334,45s6.75-2.25,6.75-9V27h-13.5v9C17.0834,42.75,23.8334,45,23.8334,45Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7974803
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F1.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="17" width="62" height="13" fill="#b1cc33"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f66c549
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F2.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="36" width="62" height="19" fill="#61b2e4"/>
+    <path fill="#61b2e4" d="M41,31a7.191,7.191,0,0,1,2,5,10.0442,10.0442,0,0,1-7,10,10.0442,10.0442,0,0,1-7-10,7.191,7.191,0,0,1,2-5"/>
+    <path fill="#61b2e4" d="M41,31a7.191,7.191,0,0,1,2,5,10.0442,10.0442,0,0,1-7,10,10.0442,10.0442,0,0,1-7-10,7.191,7.191,0,0,1,2-5"/>
+    <line x1="36" x2="36" y1="22" y2="30" fill="#fcea2b" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,28a3,3,0,0,1,3-3c1.6569,0,4.1391,1.4725,2,6H31c-2.1391-4.5275.3431-6,2-6a3,3,0,0,1,3,3"/>
+    <line x1="36" x2="36" y1="35" y2="41" fill="none" stroke="#6a462f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#5c9e31" d="M29.6694,40A10.0342,10.0342,0,0,0,36,46a10.0342,10.0342,0,0,0,6.3306-6Z"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M41,31a7.191,7.191,0,0,1,2,5,10.0442,10.0442,0,0,1-7,10,10.0442,10.0442,0,0,1-7-10,7.191,7.191,0,0,1,2-5"/>
+    <path fill="none" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M41,47c3.3484-1.7381,6-6.2282,6-11a12.9874,12.9874,0,0,0-1.066-5"/>
+    <path fill="none" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31,47c-3.3484-1.7381-6-6.2282-6-11a12.9874,12.9874,0,0,1,1.066-5"/>
+    <polyline fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="43 49 41 47 31 47 29 49"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f8c2787
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F3.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="21" height="38" fill="#5c9e31"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" points="32.122 42 36.105 30 39.539 41.816 30 34.696 42 34.4 32.122 42"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..11b6a3d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F4.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="32.122 42 36.105 30 39.539 41.816 30 34.696 42 34.4 32.122 42"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ff40d5a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F7.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="50" width="62" height="5" fill="#5c9e31"/>
+    <rect x="5" y="46" width="62" height="4" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="5" fill="#5c9e31"/>
+    <rect x="5" y="22" width="62" height="4" fill="#fff"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="32.122 42 36.105 30 39.539 41.816 30 34.696 42 34.4 32.122 42"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..46e9527
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F8.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13"/>
+    <rect x="5" y="30" width="62" height="12" fill="#d22f27" stroke="#fff" stroke-miterlimit="10"/>
+    <polygon fill="#1e50a0" points="26 36 5 55 5 17 26 36"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="10.5 36 15.5 37.545 12.41 33.5 12.41 38.5 15.5 34.455 10.5 36"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2919e30
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1F9.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#b1cc33"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fcea2b"/>
+    <polygon fill="#d22f27" points="26 36 5 55 5 17 26 36"/>
+    <polygon stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="38.5 33.59 40.045 38.59 36 35.5 41 35.5 36.955 38.59 38.5 33.59"/>
+    <polygon stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="53.5 33.59 55.045 38.59 51 35.5 56 35.5 51.955 38.59 53.5 33.59"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..98649f8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1FB.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <path fill="none" stroke="#186648" stroke-linecap="round" stroke-linejoin="round" d="M39.5,36a3.5,3.5,0,0,1-7,0"/>
+    <circle cx="36" cy="36" r="4.5" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+    <polygon fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36 34 34 37 38 37 36 34"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e0d38c8
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1FD.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="19" fill="#1e50a0"/>
+    <polygon fill="#fff" points="26 36 5 55 5 17 26 36"/>
+    <circle cx="13" cy="31" r="2.5" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round"/>
+    <path fill="#92d3f5" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M18,31.7758v4.6121C18,39.847,13.0417,41,13.0417,41S8.0833,39.847,8.0833,36.3879V31.7758A16.6778,16.6778,0,0,1,18,31.7758Z"/>
+    <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" d="M19,39c0,1.933-2.6863,3.5-6,3.5S7,40.933,7,39"/>
+    <rect x="11" y="34" width="4" height="3" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2347768
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1FE.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" points="28.5 33.59 30.045 38.59 26 35.5 31 35.5 26.955 38.59 28.5 33.59"/>
+    <polygon fill="#5c9e31" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" points="43.5 33.59 45.045 38.59 41 35.5 46 35.5 41.955 38.59 43.5 33.59"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2ac8823
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8-1F1FF.svg
@@ -0,0 +1,28 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="48" width="62" height="7" fill="#1e50a0" stroke="#f1b31c" stroke-miterlimit="10"/>
+    <rect x="5" y="17" width="62" height="7" fill="#1e50a0" stroke="#f1b31c" stroke-miterlimit="10"/>
+    <line x1="19.3616" x2="56.1629" y1="28.9275" y2="28.9275" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9681"/>
+    <line x1="16.0161" x2="52.8173" y1="33.1094" y2="33.1094" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9681"/>
+    <line x1="11.6763" x2="60.5027" y1="36.4783" y2="36.4783" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9246"/>
+    <g>
+      <path d="M48.6477,32.309a17.8474,17.8474,0,0,0-25.2386,0l-3.9549,3.9544a.3035.3035,0,0,0,0,.4293l3.9549,3.9544a17.8474,17.8474,0,0,0,25.2386,0l3.9549-3.9544a.3035.3035,0,0,0,0-.4293Z"/>
+      <path fill="#fff" d="M36.09,45.6893A.3112.3112,0,0,0,36.4018,46a17.4822,17.4822,0,0,0,12.1535-5.1379l4.1695-4.169a.3036.3036,0,0,0,0-.4293l-4.1695-4.169a17.4813,17.4813,0,0,0-12.1535-5.1382.3111.3111,0,0,0-.3123.3106Z"/>
+    </g>
+    <g>
+      <line x1="23.8897" x2="33.5703" y1="34.3001" y2="34.3001" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9361"/>
+      <line x1="23.8897" x2="33.5703" y1="38.6564" y2="38.6564" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9361"/>
+    </g>
+    <g>
+      <line x1="38.4106" x2="48.0911" y1="34.3001" y2="34.3001" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9361"/>
+      <line x1="38.4106" x2="48.0911" y1="38.6564" y2="38.6564" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9361"/>
+    </g>
+    <circle cx="31.1189" cy="30.6452" r="2.9042" fill="#1e50a0" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9681"/>
+    <circle cx="12.7661" cy="38.2922" r="2.9042" fill="#1e50a0" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9681"/>
+    <circle cx="60.1776" cy="38.2922" r="2.9042" fill="#1e50a0" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9681"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..09e28c4
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F8.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+    <path d="m35.8999,34.6265c-4.7129-.813-7.6016-1.5205-7.6016-5.6387,0-3.3086,3.4951-6,7.792-6,3.709,0,6.9238,2.0342,7.6426,4.8369.1377.5361.6836.8589,1.2178.7202.5342-.1372.8564-.6826.7197-1.2173-.9434-3.6733-4.9717-6.3398-9.5801-6.3398-5.3994,0-9.792,3.5889-9.792,8,0,6.0117,4.9209,6.8608,9.2617,7.6099,5.0654.874,8.1416,1.7417,8.1416,6.4146,0,3.3086-3.4951,6-7.792,6-3.708,0-6.9229-2.0361-7.6426-4.8408-.1377-.5356-.6816-.8564-1.2178-.7202-.5342.1377-.8564.6826-.7197,1.2173.9434,3.6758,4.9727,6.3438,9.5801,6.3438,5.3994,0,9.792-3.5889,9.792-8,0-6.6943-5.4346-7.6323-9.8018-8.3857Z"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="m35.8999,34.6265c-4.7129-.813-7.6016-1.5205-7.6016-5.6387,0-3.3086,3.4951-6,7.792-6,3.709,0,6.9238,2.0342,7.6426,4.8369.1377.5361.6836.8589,1.2178.7202.5342-.1372.8564-.6826.7197-1.2173-.9434-3.6733-4.9717-6.3398-9.5801-6.3398-5.3994,0-9.792,3.5889-9.792,8,0,6.0117,4.9209,6.8608,9.2617,7.6099,5.0654.874,8.1416,1.7417,8.1416,6.4146,0,3.3086-3.4951,6-7.792,6-3.708,0-6.9229-2.0361-7.6426-4.8408-.1377-.5356-.6816-.8564-1.2178-.7202-.5342.1377-.8564.6826-.7197,1.2173.9434,3.6758,4.9727,6.3438,9.5801,6.3438,5.3994,0,9.792-3.5889,9.792-8,0-6.6943-5.4346-7.6323-9.8018-8.3857Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..70a5a90
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1E6.svg
@@ -0,0 +1,35 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <g>
+      <path fill="#3f3f3f" d="M59.5,30h-.2771c.0939.0307.1839.0693.2771.1014Z"/>
+      <path fill="#3f3f3f" d="M46.5,30v.1014c.0932-.0321.1832-.0707.2771-.1014Z"/>
+      <path fill="#fcea2b" d="M53,29a19.9562,19.9562,0,0,0-6.2229,1H59.2229A19.9562,19.9562,0,0,0,53,29Z"/>
+      <path fill="#fcea2b" d="M59.5,35.5V30.1014c-.0932-.0321-.1832-.0707-.2771-.1014H46.7771c-.0939.0307-.1839.0693-.2771.1014V35.5Z"/>
+    </g>
+    <path fill="#92d3f5" d="M45.9556,35.81,59.5,35.8635S61,45,53,48"/>
+    <path fill="#92d3f5" d="M45.9556,35.81S45,46,53,48"/>
+    <path fill="#1e50a0" stroke="#1e50a0" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M57,43.9188c-2.4-1.5567-8,0-8,0L53,48Z"/>
+    <polyline fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="47 38 50 42 50 45"/>
+    <ellipse cx="47.8576" cy="41.5894" rx="0.5" ry="2.6466" transform="translate(-10.5827 16.9976) rotate(-18.1699)" fill="none" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polygon fill="#f4aa41" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="54 33 52 33 51 31 54 33"/>
+    <path fill="none" stroke="#f4aa41" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M56,42H53A2.8222,2.8222,0,0,0,56,42Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" d="M59.5833,30v9c0,6.75-6.75,9-6.75,9s-6.75-2.25-6.75-9V30S52.9792,26.5937,59.5833,30Z"/>
+    <line x1="59.5" x2="46.5" y1="35.5" y2="35.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d550a8f
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1E8.svg
@@ -0,0 +1,32 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+    <g>
+      <path fill="#f1b31c" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.0091" d="M60.73,29.0911H44.6178s-1.0053,14.0906,8.0395,18.1475v.0165l.0167-.0082.0167.0082v-.0165C61.7356,43.1817,60.73,29.0911,60.73,29.0911Z"/>
+      <g>
+        <path fill="#5c9e31" d="M49.777,42.7141s0-5.0455,3.0273-5.0455,3.0274,5.0455,3.0274,5.0455S52.8043,45.7415,49.777,42.7141Z"/>
+        <circle cx="52.8043" cy="37.6686" r="1.0091" fill="#d22f27" stroke="#d22f27" stroke-miterlimit="10" stroke-width="1.0091"/>
+      </g>
+      <g>
+        <ellipse cx="47.8891" cy="33.506" rx="1.5137" ry="2.6489" transform="translate(-9.6887 23.4653) rotate(-25.0868)" fill="#f4aa41"/>
+        <ellipse cx="48.8982" cy="33.506" rx="1.5137" ry="2.6489" fill="#ffa7c0"/>
+      </g>
+      <ellipse cx="56.9711" cy="33.506" rx="1.5137" ry="2.6489" fill="#a57939"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..02b6f09
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1E9.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#f1b31c"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c99c042
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1EB.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <circle cx="46.8595" cy="38.8723" r="0.5035" fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width="1.007"/>
+    <circle cx="58.9438" cy="38.8723" r="0.5035" fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width="1.007"/>
+    <circle cx="56.9298" cy="47.9356" r="0.5035" fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width="1.007"/>
+    <circle cx="48.8736" cy="47.9356" r="0.5035" fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width="1.007"/>
+    <circle cx="52.9017" cy="49.9496" r="0.5035" fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width="1.007"/>
+    <path fill="#fff" d="M58.4616,45.4768l-2.5193-4.3636a.8383.8383,0,0,0-1.1788,0l-1.0191,1.7649V39.9889h1.05a.6653.6653,0,0,0,.6652-.6653v-.3843a.6653.6653,0,0,0-.6652-.6653h-1.05V36.5591H56.45a.7248.7248,0,0,0,.7247-.7247v-.2655a.7248.7248,0,0,0-.7247-.7247h-7.125a.7248.7248,0,0,0-.7247.7247v.2655a.7248.7248,0,0,0,.7247.7247H52.03v6.61l-1.1872-2.0561a.8381.8381,0,0,0-1.1787,0l-2.5194,4.3636a.5336.5336,0,0,0,.1953.7289l.1932.1116a.5338.5338,0,0,0,.7291-.1953L48.84,45.12H51.666l.5783,1.0019a.7441.7441,0,0,0,1.1173,0L53.94,45.12h2.8256l.5786,1.0019a.5335.5335,0,0,0,.7289.1953l.193-.1116A.5335.5335,0,0,0,58.4616,45.4768ZM49.5852,43.83l.6679-1.1567.6678,1.1567Zm5.1,0,.668-1.1567.668,1.1567Z"/>
+    <polyline fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="36.5 17.5 36.5 36.5 5.5 36.5"/>
+    <rect x="5" y="17" width="11" height="19" fill="#1e50a0"/>
+    <rect x="16" y="17" width="10" height="19" fill="#fff"/>
+    <rect x="26" y="17" width="10" height="19" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..61fb67d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1EC.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="32" width="62" height="8" fill="#5c9e31"/>
+    <rect x="5" y="47" width="62" height="8" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="8" fill="#5c9e31"/>
+    <rect x="5" y="17" width="23" height="23" fill="#d22f27"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="14.415 33 17.07 25 19.359 32.878 13 28.131 21 27.933 14.415 33"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..348bd92
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1ED.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+    <rect x="5" y="50" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="5" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ecaf264
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1EF.svg
@@ -0,0 +1,24 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+    <g>
+      <circle cx="36" cy="35.1554" r="0.4969" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="0.9939"/>
+      <rect x="35.536" y="35.1553" rx="0.306" ry="0.306" width="0.9278" height="3.9755" fill="#fcea2b"/>
+      <path fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9877" d="M38.982,40.1247a4.2141,4.2141,0,0,0-5.9632,0"/>
+    </g>
+    <g>
+      <circle cx="41" cy="37" r="0.5" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="1"/>
+      <circle cx="40.2" cy="34.6" r="0.5" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="1"/>
+      <circle cx="38.4" cy="32.9" r="0.5" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="1"/>
+      <circle cx="36" cy="32.2" r="0.5" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="1"/>
+      <circle cx="33.6" cy="32.9" r="0.5" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="1"/>
+      <circle cx="31.8" cy="34.6" r="0.5" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="1"/>
+      <circle cx="31" cy="37" r="0.5" fill="#fcea2b" stroke="#fcea2b" stroke-miterlimit="10" stroke-width="1"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..07d0c62
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1F0.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="19.75 21.972 20.986 25.972 17.75 23.5 21.75 23.5 18.514 25.972 19.75 21.972"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="19.75 35.972 20.986 39.972 17.75 37.5 21.75 37.5 18.514 39.972 19.75 35.972"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="12.5 27.972 13.736 31.972 10.5 29.5 14.5 29.5 11.264 31.972 12.5 27.972"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="26.5 26.972 27.427 29.972 25 28.118 28 28.118 25.573 29.972 26.5 26.972"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M56.4964,22.0042,22.5,47h32l2-.0008c-2.1713-3.7-5.4086-7.9629-5.4086-12.5009C51.0914,29.9634,54.3273,25.7026,56.4964,22.0042Z"/>
+    <line x1="22.5" x2="58.5" y1="50" y2="50" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..617672d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1F1.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d22f27" d="m5.4907,17h61.5093v38H5V17.4906c0-.271.2197-.4907.4907-.4907Z"/>
+    <path fill="#f1b31c" d="m38,36L6.6524,54.0486c-.7349.4231-1.6524-.1073-1.6524-.9553V18.8964c0-.8434.9125-1.371,1.6435-.9502l31.3565,18.0538Z"/>
+    <path d="m26,36L6.0728,54.0293c-.4128.3735-1.0728.0806-1.0728-.4761V18.6171c0-.6222.7377-.9496,1.1991-.5322l19.8009,17.9151Z"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="15.35 34.05 10.72 36.49 15.76 37.16 12.23 33.63 12.9 38.67 15.35 34.05"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..10c82ab
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1F2.svg
@@ -0,0 +1,25 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#186648"/>
+    <rect x="8.1715" y="17" width="14.9278" height="38" fill="#d22f27"/>
+    <polygon fill="#781e32" points="18.624 17 12.658 17 8.171 21.216 15.641 28.234 23.11 21.216 18.624 17"/>
+    <polygon fill="#f1b31c" points="17.114 19.628 14.167 19.628 12.693 21.216 14.167 22.804 17.114 22.804 18.588 21.216 17.114 19.628"/>
+    <polygon fill="#781e32" points="15.641 38.16 8.171 31.142 15.641 24.123 23.11 31.142 15.641 38.16"/>
+    <polygon fill="#f1b31c" points="17.114 29.554 14.167 29.554 12.693 31.142 14.167 32.73 17.114 32.73 18.588 31.142 17.114 29.554"/>
+    <polygon fill="#781e32" points="15.641 48.086 8.171 41.067 15.641 34.049 23.11 41.067 15.641 48.086"/>
+    <polygon fill="#f1b31c" points="17.114 39.479 14.167 39.479 12.693 41.067 14.167 42.655 17.114 42.655 18.588 41.067 17.114 39.479"/>
+    <polygon fill="#781e32" points="18.846 55 23.11 50.993 15.641 43.975 8.171 50.993 12.435 55 18.846 55"/>
+    <polygon fill="#f1b31c" points="17.114 49.405 14.167 49.405 12.693 50.993 14.167 52.581 17.114 52.581 18.588 50.993 17.114 49.405"/>
+    <g>
+      <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9952" d="M37.4927,21.8329a7.7649,7.7649,0,0,1-6.8143,13.66,7.77,7.77,0,1,0,6.8143-13.66Z"/>
+      <circle cx="32.7629" cy="23.0551" r="0.7385" fill="#fff"/>
+      <circle cx="32.7629" cy="26.0091" r="0.7385" fill="#fff"/>
+      <circle cx="29.8089" cy="26.0091" r="0.7385" fill="#fff"/>
+      <circle cx="35.717" cy="26.0091" r="0.7385" fill="#fff"/>
+      <circle cx="32.7629" cy="28.9631" r="0.7385" fill="#fff"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7d6574c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1F3.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <circle cx="36" cy="36" r="9" fill="#fff"/>
+    <path fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" d="M38.0229,40.7143a4.7143,4.7143,0,1,1,2.1589-8.91,6,6,0,1,0,0,8.3914A4.753,4.753,0,0,1,38.0229,40.7143Z"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" points="38.388 38.71 38.238 33.443 41.266 37.581 36.516 36.152 41.173 34.326 38.388 38.71"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e47cd17
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1F4.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="32" height="20" fill="#fff"/>
+    <polygon fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="27.5 26 22.5 26 22.5 21 19.5 21 19.5 26 14.5 26 14.5 29 19.5 29 19.5 34 22.5 34 22.5 29 27.5 29 27.5 26"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2557443
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1F7.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m40.64 33.05s3.052 4.019 3.052 4.019l-4.934-1.532 4.932-1.541s-3.046 4.025-3.046 4.025l-0.003536-4.972"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="m31.29 44.64a8.643 8.643 0 1 1 3.958-16.34 11 11 0 1 0 0 15.38 8.715 8.715 0 0 1-3.958 0.9507z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..88a2f2a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1F9.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon stroke="#fff" stroke-miterlimit="10" points="66 55 54 55 6 17 18 17 66 55"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..716d42c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1FB.svg
@@ -0,0 +1,30 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#92d3f5"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="58.707 25 60.035 21 61.18 24.939 58 22.565 62 22.467 58.707 25"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="58.707 41 60.035 37 61.18 40.939 58 38.565 62 38.467 58.707 41"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="51.709 45 53.037 41 54.181 44.939 51.002 42.565 55.002 42.467 51.709 45"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="26.709 52 28.037 48 29.181 51.939 26.002 49.565 30.002 49.467 26.709 52"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="47.294 45 45.967 49 44.822 45.061 48.002 47.435 44.002 47.533 47.294 45"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="37.294 46 35.967 50 34.822 46.061 38.002 48.435 34.002 48.533 37.294 46"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="37.294 39 35.967 43 34.822 39.061 38.002 41.435 34.002 41.533 37.294 39"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="50.891 29.207 50.041 25.079 53.002 27.918 49.061 27.452 52.476 25.366 50.891 29.207"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="44.891 31.207 44.041 27.079 47.002 29.918 43.061 29.452 46.476 27.366 44.891 31.207"/>
+    <rect x="5" y="17" width="31" height="19" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" points="9.887 18 6 18 6 20.332 32.113 36 36 36 36 33.668 9.887 18"/>
+      <polygon fill="#fff" points="36 20.332 36 18 32.113 18 6 33.668 6 36 9.887 36 36 20.332"/>
+      <rect x="6" y="24" width="30" height="6" fill="#fff"/>
+      <rect x="18" y="18" width="6" height="18" fill="#fff"/>
+      <rect x="20" y="18" width="2" height="18" fill="#d22f27"/>
+      <rect x="6" y="26" width="30" height="2" fill="#d22f27"/>
+      <polygon fill="#d22f27" points="36 33.668 29.887 30 26 30 36 36 36 33.668"/>
+      <polygon fill="#d22f27" points="36 18 32.113 18 24 22.868 24 24 26 24 36 18"/>
+      <polygon fill="#d22f27" points="6 20.332 12.113 24 16 24 6 18 6 20.332"/>
+      <polygon fill="#d22f27" points="6 36 9.887 36 18 31.132 18 30 16 30 6 36"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..aca1961
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1FC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="32" height="20" fill="#1e50a0"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="19.523 25.523 18.324 21.999 20.776 24.8 21.5 21.148 22.223 24.8 24.675 21.999 23.476 25.523 27 24.323 24.199 26.776 27.851 27.499 24.199 28.223 27 30.675 23.476 29.475 24.675 33 22.223 30.199 21.5 33.851 20.776 30.199 18.324 33 19.523 29.475 15.999 30.675 18.8 28.223 15.148 27.499 18.8 26.776 15.999 24.323 19.523 25.523"/>
+    <circle cx="21.5" cy="27.5" r="4.0888" fill="none" stroke="#1e50a0" stroke-miterlimit="10"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f1be150
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9-1F1FF.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <polygon fill="#5c9e31" points="5 17 5 55 67 17 5 17"/>
+    <polygon stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="67 17 54 17 5 55 18 55 67 17"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7488792
--- /dev/null
+++ b/static/openmoji-svg-color/1F1F9.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m44,21h-16c-.5527,0-1,.4478-1,1s.4473,1,1,1h7v27c0,.5522.4473,1,1,1s1-.4478,1-1v-27h7c.5527,0,1-.4478,1-1s-.4473-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..253d1bd
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA-1F1E6.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#61b2e4"/>
+    <rect x="5" y="36" width="62" height="19" fill="#fcea2b"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d2165f4
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA-1F1EC.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="42" width="62" height="6" fill="#f1b31c"/>
+    <rect x="5" y="30" width="62" height="6" fill="#d22f27"/>
+    <rect x="5" y="48" width="62" height="7" fill="#d22f27"/>
+    <rect x="5" y="24" width="62" height="6" fill="#f1b31c"/>
+    <circle cx="36" cy="36" r="6" fill="#fff"/>
+    <circle cx="35.215" cy="32.6639" r="0.9933" stroke="#000" stroke-miterlimit="10" stroke-width="1.3347"/>
+    <circle cx="36.7049" cy="36.1404" r="0.9933" stroke="#000" stroke-miterlimit="10" stroke-width="1.6683"/>
+    <line x1="32.7318" x2="35.7116" y1="33.1606" y2="33.1606" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.001"/>
+    <line x1="35.7116" x2="35.7116" y1="36.1404" y2="33.1606" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.6683"/>
+    <line x1="36.7049" x2="36.7049" y1="40.1135" y2="37.1337" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.001"/>
+    <path stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.3337" d="M38.5822,34.9626c-1.2029-.676-2.5481-.5659-3.0044.246l4.3563,2.4483C40.39,36.8451,39.7851,35.6387,38.5822,34.9626Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6b62e41
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA-1F1F2.svg
@@ -0,0 +1,28 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="26" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="34" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="17" width="32" height="21" fill="#1e50a0"/>
+    <rect x="5" y="42" width="62" height="4" fill="#d22f27"/>
+    <circle cx="9" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="17" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="25" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="33" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="29" cy="26" r="1.75" fill="#fff"/>
+    <circle cx="21" cy="26" r="1.75" fill="#fff"/>
+    <circle cx="13" cy="26" r="1.75" fill="#fff"/>
+    <circle cx="9" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="17" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="25" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="33" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="29" cy="34" r="1.75" fill="#fff"/>
+    <circle cx="21" cy="34" r="1.75" fill="#fff"/>
+    <circle cx="13" cy="34" r="1.75" fill="#fff"/>
+    <rect x="5" y="50" width="62" height="5" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..421283d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA-1F1F3.svg
@@ -0,0 +1,34 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5.3191" y="17" width="61.6809" height="37.8044" fill="#61b2e4"/>
+    <g>
+      <g>
+        <g>
+          <g>
+            <circle cx="36.1595" cy="32.9384" r="11.5953" fill="none" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1529"/>
+            <circle cx="36.1595" cy="32.9384" r="8.6965" fill="none" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1529"/>
+            <line x1="36.1595" x2="36.1595" y1="44.5337" y2="21.3431" fill="none" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1529"/>
+            <line x1="24.5643" x2="47.7548" y1="32.9384" y2="32.9384" fill="none" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1529"/>
+            <line x1="27.9604" x2="44.3587" y1="41.1375" y2="24.7393" fill="none" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1529"/>
+            <line x1="44.3587" x2="27.9604" y1="41.1375" y2="24.7393" fill="none" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1529"/>
+          </g>
+          <circle cx="36.1595" cy="32.9384" r="5.7976" fill="#61b2e4" stroke="#92d3f5" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.2821"/>
+        </g>
+        <path fill="#fff" d="M26.4716,37.6969a.486.486,0,0,1,.4176-.7476h1.4837a.9062.9062,0,0,0,.9253-.9252.9062.9062,0,0,1,.9253-.9253c.9253,0,.9253,2.7758,1.85,3.7011s.9253,1.8506,0,1.8506a3.3991,3.3991,0,0,1-2.7758-.9253C28.6221,39.0491,26.958,38.373,26.4716,37.6969Z"/>
+        <path fill="#fff" d="M30.9606,34.9267a.8909.8909,0,0,1-.3922-1.1073c.4016-.9922,1.1891-2.6457,1.9765-2.6457,1.1249,0,1.1249-2.25,3.3748,0s-1.1249,2.25-1.1249,3.3748,1.1249,0,2.25,0,1.125,1.1249-1.1249,1.1249C33.7363,35.6734,37.91,38.8519,30.9606,34.9267Z"/>
+        <path fill="#fff" d="M38.8661,40.5337a1.9333,1.9333,0,0,1-2.6-1.733c0-1.733,1.733-.8665,1.733-1.733s0-2.6.8665-2.6,0-.8665,0-1.733,1.733-1.733,1.733-1.733,1.733-.8665,2.6,0,0,1.733,0,2.5995,1.733.8665,0,1.733-2.1663,1.3-1.3,1.3,2.5995.8665,2.5995,1.733,0,1.7331-.8665.8666-.8665,0-.8665.8665,0,2.6-1.733,2.6S39.4322,40.2992,38.8661,40.5337Z"/>
+        <path fill="#fff" d="M42.0289,26.8669c-.0738-.4542-.8232-2.47,1.6463-.8232s2.47,3.2928,1.6464,3.2928S42.1607,27.68,42.0289,26.8669Z"/>
+        <path fill="#fff" d="M40.3825,27.69s0-1.6464.8232,0,2.4695,1.6464,2.4695,2.47c0,.57-1.1856-.0448-1.9138-.4765A2.9534,2.9534,0,0,1,40.56,28.4087,1.7432,1.7432,0,0,1,40.3825,27.69Z"/>
+        <ellipse cx="38.7361" cy="23.1626" rx="0.8232" ry="0.4116" fill="#fff"/>
+        <path fill="#fff" d="M35.9484,30.7272c.5176.2144,1.12,1.12,2.2409,0s1.12,1.12,0,1.12,1.12,1.12,0,1.12S33.8782,29.87,35.9484,30.7272Z"/>
+      </g>
+      <g>
+        <path fill="#fff" d="M51.9928,24.4406a10.8943,10.8943,0,0,0-3.3112-2.9654c-.2439-.1415-.4913-.2739-.7411-.4a.5558.5558,0,0,0-.7362.7587c.4879.9619,1.8007,3.92,1.8007,3.92A14.3473,14.3473,0,0,1,36.9287,46.4775c-.1291.0068-.2575.0106-.3858.0139s-.2551.0063-.3834.0064-.2558-.003-.3833-.0064-.2567-.0071-.3858-.0139A14.3473,14.3473,0,0,1,23.3141,25.754s1.3128-2.9585,1.8007-3.92a.5558.5558,0,0,0-.7362-.7587c-.25.1264-.4972.2588-.7411.4a10.8943,10.8943,0,0,0-3.3112,2.9654A14.3927,14.3927,0,0,0,17.45,34.1674q.0068.0885.0144.1772a18.717,18.717,0,0,0,7.3065,13.2441,8.3031,8.3031,0,0,0,9.3539.5949,3.7255,3.7255,0,0,1,1.4013-.522c.0246-.0041.0478-.012.0726-.0156a3.8329,3.8329,0,0,1,1.1223,0c.025.0036.0486.0116.0735.0158a3.7233,3.7233,0,0,1,1.4.5218,8.3031,8.3031,0,0,0,9.3539-.5949A18.717,18.717,0,0,0,54.855,34.3446q.0077-.0887.0144-.1772A14.3927,14.3927,0,0,0,51.9928,24.4406Z"/>
+        <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.6871" d="M45.2409,47.7376a4.3178,4.3178,0,0,1-2.1156.351,5.3,5.3,0,0,1-1.8837-.5537,15.2989,15.2989,0,0,0-1.6114-.6543,6.1261,6.1261,0,0,0-2.0875-.3638,7.3981,7.3981,0,0,0-.9019.0959,2.958,2.958,0,0,0-.4714.12l-.01.002-.01-.002a2.958,2.958,0,0,0-.4714-.12,7.3981,7.3981,0,0,0-.9019-.0959,6.1261,6.1261,0,0,0-2.0875.3638,15.2989,15.2989,0,0,0-1.6114.6543,5.3007,5.3007,0,0,1-1.8837.5537,4.3178,4.3178,0,0,1-2.1156-.351c-.1487-.0684-.2906-.1516-.4582-.24a2.0946,2.0946,0,0,0,.3063.3158,4.6012,4.6012,0,0,0,1.02.73,4.3585,4.3585,0,0,0,1.58.5073,4.5816,4.5816,0,0,0,2.5895-.5249,12.066,12.066,0,0,0,1.3766-.8858,7.6787,7.6787,0,0,1,.8382-.5231,1.7348,1.7348,0,0,1,1.26-.1508c.03.0075.0591.02.1117.0388a12.1472,12.1472,0,0,0-3.2638,2.2736c-.143.1125-.771.63-.771,1.0444a.4229.4229,0,0,0,.281.4278l.0115.0045a.4069.4069,0,0,0,.1753.0354.2593.2593,0,0,0,.09-.0181.5329.5329,0,0,0,.2557-.1405,2.3508,2.3508,0,0,0,.3061-.3124,7.46,7.46,0,0,1,.9208-1.03l1.9688-1.7471c.0584-.0368.1189-.07.1809-.1013a.5525.5525,0,0,1,.6045,0c.062.0313.1225.0645.1809.1013l1.9688,1.7471a7.46,7.46,0,0,1,.9208,1.03,2.3508,2.3508,0,0,0,.3061.3124.5329.5329,0,0,0,.2557.1405.2593.2593,0,0,0,.09.0181.4069.4069,0,0,0,.1753-.0354l.0115-.0045a.4229.4229,0,0,0,.281-.4278c0-.4147-.628-.9319-.771-1.0444a12.1472,12.1472,0,0,0-3.2638-2.2736c.0526-.0185.0815-.0313.1117-.0388a1.7348,1.7348,0,0,1,1.26.1508,7.6787,7.6787,0,0,1,.8382.5231,12.066,12.066,0,0,0,1.3766.8858,4.5816,4.5816,0,0,0,2.59.5249,4.3585,4.3585,0,0,0,1.58-.5073,4.6012,4.6012,0,0,0,1.02-.73,2.0946,2.0946,0,0,0,.3063-.3158C45.5315,47.586,45.39,47.6692,45.2409,47.7376Z"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..356ecb1
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA-1F1F8.svg
@@ -0,0 +1,28 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <rect x="5" y="17" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="26" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="34" width="62" height="4" fill="#d22f27"/>
+    <rect x="5" y="17" width="32" height="21" fill="#1e50a0"/>
+    <rect x="5" y="42" width="62" height="4" fill="#d22f27"/>
+    <circle cx="9.5" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="17.5" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="25.5" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="33.5" cy="22" r="1.75" fill="#fff"/>
+    <circle cx="29.5" cy="26" r="1.75" fill="#fff"/>
+    <circle cx="21.5" cy="26" r="1.75" fill="#fff"/>
+    <circle cx="13.5" cy="26" r="1.75" fill="#fff"/>
+    <circle cx="9.5" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="17.5" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="25.5" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="33.5" cy="30" r="1.75" fill="#fff"/>
+    <circle cx="29.5" cy="34" r="1.75" fill="#fff"/>
+    <circle cx="21.5" cy="34" r="1.75" fill="#fff"/>
+    <circle cx="13.5" cy="34" r="1.75" fill="#fff"/>
+    <rect x="5" y="50" width="62" height="5" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6aadf38
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA-1F1FE.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <rect x="5" y="17" width="62" height="5" fill="#fff"/>
+    <rect x="5" y="26" width="62" height="4" fill="#fff"/>
+    <rect x="5" y="34" width="62" height="4" fill="#fff"/>
+    <rect x="5" y="42" width="62" height="4" fill="#fff"/>
+    <rect x="5" y="50" width="62" height="5" fill="#fff"/>
+    <rect x="5" y="17" width="21" height="21" fill="#fff"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="15.296 26.896 17 24.536 15.808 27.192 18.464 26 16.104 27.704 19 28 16.104 28.296 18.464 30 15.808 28.808 17 31.464 15.296 29.104 15 32 14.704 29.104 13 31.464 14.192 28.808 11.536 30 13.896 28.296 11 28 13.896 27.704 11.536 26 14.192 27.192 13 24.536 14.704 26.896 15 24 15.296 26.896"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..02cd813
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA-1F1FF.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#b1cc33"/>
+    <rect x="5" y="17" width="62" height="13" fill="#61b2e4"/>
+    <rect x="5" y="30.25" width="62" height="11.5" fill="#fff" stroke="#d22f27" stroke-miterlimit="10" stroke-width="1.5"/>
+    <circle cx="29.25" cy="21" r="1" fill="#fff"/>
+    <circle cx="29.25" cy="24" r="1" fill="#fff"/>
+    <circle cx="29.25" cy="27" r="1" fill="#fff"/>
+    <circle cx="26.25" cy="21" r="1" fill="#fff"/>
+    <circle cx="26.25" cy="24" r="1" fill="#fff"/>
+    <circle cx="26.25" cy="27" r="1" fill="#fff"/>
+    <circle cx="23.25" cy="21" r="1" fill="#fff"/>
+    <circle cx="23.25" cy="24" r="1" fill="#fff"/>
+    <circle cx="23.25" cy="27" r="1" fill="#fff"/>
+    <circle cx="20.25" cy="24" r="1" fill="#fff"/>
+    <circle cx="20.25" cy="27" r="1" fill="#fff"/>
+    <circle cx="17.25" cy="27" r="1" fill="#fff"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" d="M11.2973,24A3.4648,3.4648,0,0,1,14,20.5668a3.2286,3.2286,0,0,0-.6486-.0668,3.5033,3.5033,0,0,0,0,7A3.2286,3.2286,0,0,0,14,27.4332,3.4648,3.4648,0,0,1,11.2973,24Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..103724c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FA.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+    <path d="m46,21c-.5527,0-1,.4478-1,1v18c0,4.9624-4.0371,9-9,9s-9-4.0376-9-9v-18c0-.5522-.4473-1-1-1s-1,.4478-1,1v18c0,6.0654,4.9346,11,11,11s11-4.9346,11-11v-18c0-.5522-.4473-1-1-1Z"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="m46,21c-.5527,0-1,.4478-1,1v18c0,4.9624-4.0371,9-9,9s-9-4.0376-9-9v-18c0-.5522-.4473-1-1-1s-1,.4478-1,1v18c0,6.0654,4.9346,11,11,11s11-4.9346,11-11v-18c0-.5522-.4473-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a55da45
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB-1F1E6.svg
@@ -0,0 +1,30 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="17" y="17" width="38" height="38" fill="#fff"/>
+    <rect x="17" y="17" width="19" height="38" fill="#fcea2b"/>
+    <g>
+      <ellipse cx="44.7274" cy="29.8602" rx="1.9462" ry="2.703" fill="#9b9b9a"/>
+      <g>
+        <line x1="43.6125" x2="45.8423" y1="28.7453" y2="28.7453" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9103"/>
+        <line x1="43.6125" x2="45.8423" y1="29.8602" y2="29.8602" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9103"/>
+        <line x1="43.6125" x2="45.8423" y1="30.9751" y2="30.9751" fill="none" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.9103"/>
+      </g>
+    </g>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.1468" d="M40.2017,42.2844c2.54,2.54,6.8992,2.29,9.747-.5575"/>
+    <g>
+      <path fill="#9b9b9a" d="M47.9343,36.1387a3.2621,3.2621,0,1,0,3.9646,2.3588A3.2622,3.2622,0,0,0,47.9343,36.1387Zm1.3,5.1189a2.0193,2.0193,0,1,1,1.46-2.4542A2.0193,2.0193,0,0,1,49.2342,41.2576Z"/>
+      <rect x="42.8454" y="30.3687" rx="0.4164" ry="0.4164" width="1.4686" height="8.8114" transform="translate(-11.2822 44.7052) rotate(-48.8483)" fill="#9b9b9a"/>
+      <rect x="39.7038" y="32.3358" rx="0.369" ry="0.369" width="1.4686" height="1.8096" transform="translate(31.8635 -18.3991) rotate(41.1517)" fill="#9b9b9a"/>
+      <rect x="41.2676" y="33.7025" rx="0.369" ry="0.369" width="1.4686" height="1.8096" transform="translate(33.1492 -19.0905) rotate(41.1517)" fill="#9b9b9a"/>
+    </g>
+    <g>
+      <path fill="#fcea2b" d="M37.5178,38.8188a3.262,3.262,0,1,0,3.8347-2.5645A3.262,3.262,0,0,0,37.5178,38.8188Zm1.2189.2419a2.0193,2.0193,0,1,1,1.5875,2.3739A2.0192,2.0192,0,0,1,38.7367,39.0607Z"/>
+      <rect x="44.8948" y="30.2566" rx="0.4164" ry="0.4164" width="1.4686" height="8.8114" transform="translate(52.5644 91.5427) rotate(-134.1739)" fill="#fcea2b"/>
+      <rect x="47.9512" y="32.0601" rx="0.369" ry="0.369" width="1.4686" height="1.8096" transform="translate(106.5753 22.6824) rotate(135.8261)" fill="#fcea2b"/>
+      <rect x="46.4616" y="33.5073" rx="0.369" ry="0.369" width="1.4686" height="1.8096" transform="translate(105.0258 26.2056) rotate(135.8261)" fill="#fcea2b"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="17" y="17" width="38" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9810e1b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB-1F1E8.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fcea2b"/>
+    <rect x="5" y="17" width="21" height="38" fill="#1e50a0"/>
+    <rect x="46" y="17" width="21" height="38" fill="#5c9e31"/>
+    <g>
+      <polygon fill="#5c9e31" points="39.182 41 36 46 32.818 41 36 36 39.182 41"/>
+      <polygon fill="#5c9e31" points="43 35 39.818 40 36.636 35 39.818 30 43 35"/>
+      <polygon fill="#5c9e31" points="35.364 35 32.182 40 29 35 32.182 30 35.364 35"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b181100
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB-1F1EA.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="13" fill="#f1b31c"/>
+    <rect x="5" y="30" width="62" height="12" fill="#1e50a0"/>
+    <g>
+      <circle cx="34" cy="33" r="1" fill="#fff"/>
+      <circle cx="38" cy="33" r="1" fill="#fff"/>
+      <circle cx="30" cy="34" r="1" fill="#fff"/>
+      <circle cx="27" cy="36" r="1" fill="#fff"/>
+      <circle cx="25" cy="39" r="1" fill="#fff"/>
+      <circle cx="42" cy="34" r="1" fill="#fff"/>
+      <circle cx="45" cy="36" r="1" fill="#fff"/>
+      <circle cx="47" cy="39" r="1" fill="#fff"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1be8529
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB-1F1EC.svg
@@ -0,0 +1,43 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <rect x="5" y="17" width="31" height="19" fill="#1e50a0"/>
+      <path fill="#fff" d="M9.5,36H5L31.5,17H36Z"/>
+      <path fill="#fff" d="M36,32.5,5,17v3.5L36,36Z"/>
+      <path fill="#d22f27" d="M36,33.5,5,18v1.5L36,35Z"/>
+      <path fill="#d22f27" d="M8.5,36H6L32.5,17H35Z"/>
+      <polygon fill="#d22f27" points="36 25 22 25 22 17 19 17 19 25 5 25 5 28 19 28 19 36 22 36 22 28 36 28 36 25"/>
+      <g>
+        <polyline fill="none" stroke="#fff" stroke-linejoin="round" points="5 28 19 28 19 36"/>
+        <polyline fill="none" stroke="#fff" stroke-linejoin="round" points="19 17 19 25 5 25"/>
+        <polyline fill="none" stroke="#fff" stroke-linejoin="round" points="36 25 22 25 22 17"/>
+        <polyline fill="none" stroke="#fff" stroke-linejoin="round" points="22 36 22 28 36 28"/>
+      </g>
+    </g>
+    <path fill="#fcea2b" d="M57.4518,44.7545c-4.5023,3.939-9.0187,3.8068-13.3557.1308-.4754.112-.8438.3264-1.1072.2357-.6456-.2222-.704-.8505-.1978-1.3206a8.0456,8.0456,0,0,0,.9669-.9378c.3463-.4526.6265-.3777.9966-.0522a19.9329,19.9329,0,0,0,1.9685,1.6365,7.357,7.357,0,0,0,9.6994-1.4055c.6294-.7476.8221-.7463,1.4606-.0087a3.6555,3.6555,0,0,0,.6087.6286c.4793.3369.7014.7127.3,1.2333C58.4718,45.31,58.0566,45.2755,57.4518,44.7545Z"/>
+    <path fill="#186648" d="M50.6427,27.723H45.5671a1.8626,1.8626,0,0,0-1.8626,1.8626V40.3379c0,2.0873,4.749,3.7429,6.389,4.2524a1.84,1.84,0,0,0,1.0983,0c1.64-.5095,6.389-2.1651,6.389-4.2524V29.5856a1.8626,1.8626,0,0,0-1.8625-1.8626Z"/>
+    <circle cx="55.2155" cy="30.246" r="0.6307" fill="#fcea2b"/>
+    <circle cx="55.2155" cy="32.1382" r="0.6307" fill="#fcea2b"/>
+    <circle cx="55.2155" cy="34.0305" r="0.6307" fill="#fcea2b"/>
+    <circle cx="55.2155" cy="35.9227" r="0.6307" fill="#fcea2b"/>
+    <circle cx="55.2155" cy="37.8149" r="0.6307" fill="#fcea2b"/>
+    <circle cx="55.2155" cy="39.7072" r="0.6307" fill="#fcea2b"/>
+    <circle cx="46.3851" cy="30.246" r="0.6307" fill="#fcea2b"/>
+    <circle cx="51.1157" cy="29.9306" r="0.9461" fill="#ffa7c0"/>
+    <circle cx="46.3851" cy="32.1382" r="0.6307" fill="#fcea2b"/>
+    <circle cx="46.3851" cy="34.0305" r="0.6307" fill="#fcea2b"/>
+    <circle cx="47.6466" cy="35.9227" r="0.6307" fill="#fcea2b"/>
+    <circle cx="46.3851" cy="37.8149" r="0.6307" fill="#fcea2b"/>
+    <circle cx="46.3851" cy="39.7072" r="0.6307" fill="#fcea2b"/>
+    <circle cx="50.1696" cy="41.5994" r="0.6307" fill="#fcea2b"/>
+    <circle cx="51.4311" cy="41.5994" r="0.6307" fill="#fcea2b"/>
+    <line x1="49.8542" x2="47.962" y1="32.4536" y2="34.9766" fill="none" stroke="#ffa7c0" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.6307"/>
+    <rect x="49.46" y="31.5075" rx="1.1546" ry="1.1546" width="3.1537" height="10.0919" fill="#fff"/>
+    <line x1="52.3772" x2="52.9628" y1="32.4536" y2="35.8994" fill="none" stroke="#ffa7c0" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.6307"/>
+    <path fill="#a57939" stroke="#a57939" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.6307" d="M52.081,29.1231a.9461.9461,0,0,0-1.338,0l1.338,1.338A.9461.9461,0,0,0,52.081,29.1231Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5e79c15
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB-1F1EE.svg
@@ -0,0 +1,37 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <path fill="#3f3f3f" d="M24.4675,38.6242a5.6221,5.6221,0,0,0,.8728-1.9518.1112.1112,0,0,1,.09-.1206.8321.8321,0,0,0,.6065-.3025c.0559-.0793.1623-.0427.1755.0621a2.5167,2.5167,0,0,1-1.37,2.84.0929.0929,0,0,1-.1076-.0337l-.2588-.3321A.1442.1442,0,0,1,24.4675,38.6242Z"/>
+    <g>
+      <ellipse cx="19.7469" cy="38.9532" rx="1.7908" ry="4.782" transform="translate(-21.3357 24.1373) rotate(-43.2865)" fill="#5c9e31"/>
+      <line x1="17.4756" x2="29.6735" y1="36.5771" y2="49.2456" fill="none" stroke="#5c9e31" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <g>
+      <line x1="54.363" x2="42.7795" y1="39.2544" y2="48.6826" fill="none" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
+      <line x1="53.3623" x2="44.3163" y1="36.6219" y2="50.9509" fill="none" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
+      <line x1="51.3436" x2="46.3351" y1="35.5728" y2="52" fill="none" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
+    </g>
+    <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7984" d="M59.8284,22.3314a1.3315,1.3315,0,0,0-1.7081-.3466c-3.1855,1.2833-11.0738,3.2634-13.0377,4.3272a1.6411,1.6411,0,0,0-1.011,1.3913,1.4672,1.4672,0,0,0,.6979,1.2474l-.0089.0756a6.2765,6.2765,0,0,1-4.7213-.9382l-.2218-.2218c-.6347-1.4524-.6167-5.65-2.9639-6.0133a1.4644,1.4644,0,0,0-.3259-.039c-2.9447,0-4.417,2.9447-3.6808,2.2085s3.6808-.7362,1.6662,2.5988a5.4325,5.4325,0,0,1-.3437.4956l-.9711.9712a6.2766,6.2766,0,0,1-4.7213.9382l-.009-.0756a1.4673,1.4673,0,0,0,.698-1.2474,1.641,1.641,0,0,0-1.0111-1.3913c-1.9639-1.0638-9.8522-3.0439-13.0376-4.3272a1.3315,1.3315,0,0,0-1.7081.3466,1.35,1.35,0,0,0-.4348.8435,2.1454,2.1454,0,0,0,.2519.94c.5725,1.4909,6.9885,6.4578,11.1327,9.4016a10.6548,10.6548,0,0,1,1.703,1.5608,2.2031,2.2031,0,0,0,1.037.6425,4.3339,4.3339,0,0,1,1.4781.6644c.4583.3468.99.7948,1.53,1.27-.3152.1564-2.3573,1.26-1.6772,3.3.5484,1.6452-.9449,1.6561-1.7428,1.5547a1.4684,1.4684,0,1,0,1.0067,1.39,2.723,2.723,0,0,1,2.2085-1.4724,1.442,1.442,0,0,0,1.4723-1.4723,2.57,2.57,0,0,1,1.4724-.7362l.5575.5575-2.0919,2.092a1.4585,1.4585,0,0,0,0,2.0627l4.1838,4.1839a1.45,1.45,0,0,0,1.1865.4124,1.435,1.435,0,0,0,1.0584-.4124L41.9251,44.93a1.4585,1.4585,0,0,0,0-2.0627l-2.092-2.092.5576-.5575a2.57,2.57,0,0,1,1.4724.7362,1.442,1.442,0,0,0,1.4723,1.4723,2.7232,2.7232,0,0,1,2.2085,1.4724,1.4974,1.4974,0,1,0,1.0067-1.39c-.7979.1014-2.2913.0905-1.7429-1.5547.68-2.0406-1.3619-3.144-1.6771-3.3.54-.4749,1.0715-.9229,1.53-1.27a4.3334,4.3334,0,0,1,1.478-.6644,2.2029,2.2029,0,0,0,1.0371-.6425,10.6505,10.6505,0,0,1,1.703-1.5608c4.1441-2.9438,10.56-7.9107,11.1327-9.4016a2.1467,2.1467,0,0,0,.2519-.94A1.3514,1.3514,0,0,0,59.8284,22.3314Z"/>
+    <line x1="61.6382" x2="61.6382" y1="31.2655" y2="39.2566" fill="none" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <g>
+      <line x1="8.374" x2="11.0235" y1="31.2655" y2="39.0055" fill="none" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+      <line x1="14.0704" x2="11.4209" y1="31.2655" y2="39.0055" fill="none" stroke="#61b2e4" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <g>
+      <rect x="27.563" y="27.6004" width="17.9801" height="5.9934" fill="#1e50a0"/>
+      <g>
+        <path fill="#781e32" d="M27.5859,34.0682a8.965,8.965,0,0,0,.2279,1.624,14.7772,14.7772,0,0,0,7.909,10.5133,1.8422,1.8422,0,0,0,1.66,0,14.7776,14.7776,0,0,0,7.9091-10.5133,8.9827,8.9827,0,0,0,.2279-1.624c.0211-.2849.0228-.4528.0228-.4528H27.563S27.5648,33.7833,27.5859,34.0682Z"/>
+        <g>
+          <path fill="#fff" d="M33.0786,33.5745V44.49q.4533.3556.9567.6913V33.5745Z"/>
+          <path fill="#fff" d="M30.0719,33.5745v7.7138a14.3529,14.3529,0,0,0,.9358,1.22V33.5745Z"/>
+          <path fill="#fff" d="M39.0918,33.5745V45.183q.48-.32.9148-.6583v-10.95Z"/>
+          <path fill="#fff" d="M36.1062,33.5745v12.73a1.8972,1.8972,0,0,0,.9147.0009V33.5745Z"/>
+          <path fill="#fff" d="M42.0774,33.5745v8.9864a14.3157,14.3157,0,0,0,.9568-1.2385V33.5745Z"/>
+        </g>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..eb0bd9b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB-1F1F3.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" points="28.89 47 36.193 25 42.488 46.663 25 33.61 47 33.067 28.89 47"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a8ddc6a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB-1F1FA.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="19" fill="#5c9e31"/>
+    <path d="m25.248,36.6804L6.5332,53.6128c-.5899.5337-1.5332.1151-1.5332-.6804V19.0675c0-.7955.9432-1.2141,1.5332-.6804l18.7148,16.9325c.4026.3643.4026.9965,0,1.3608Z"/>
+    <polygon fill="#f1b31c" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="26 34 5 17 5 21 23.529 36 5 51 5 55 26 38 67 38 67 34 26 34"/>
+    <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" d="m12.3334,39.2727c2.1513.1362,4.0105-1.4864,4.1666-3.6363-.1248-1.72-1.6123-3.0181-3.3333-2.9091-1.3768-.0872-2.5668.9512-2.6667,2.3272.0799,1.1008,1.0319,1.9316,2.1334,1.8619"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7c8b3d7
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FB.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m43.2744,21.0385c-.5254-.1509-1.084.1548-1.2363.6865l-7.0381,24.6348-7.0381-24.6348c-.1523-.5317-.709-.8364-1.2363-.6865-.5312.1519-.8389.7051-.6875,1.2363l8,28c.123.4292.5156.7251.9619.7251s.8389-.2959.9619-.7251l8-28c.1514-.5312-.1562-1.0845-.6875-1.2363Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ac85f5d
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FC-1F1EB.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="46.5" y="36.5" width="11" height="11" fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round"/>
+    <line x1="44.5" x2="59.5" y1="34.5" y2="49.5" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="59.5" x2="44.5" y1="34.5" y2="49.5" fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="5" y="17" width="11" height="19" fill="#1e50a0"/>
+    <rect x="16" y="17" width="10" height="19" fill="#fff"/>
+    <rect x="26" y="17" width="10" height="19" fill="#d22f27"/>
+    <polyline fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="36.5 17.5 36.5 36.5 5.5 36.5"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9ccaf2a
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FC-1F1F8.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="17" width="32" height="21" fill="#1e50a0"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="20.081 24.089 21.313 20.089 22.553 24.087 19.315 21.618 23.315 21.615 20.081 24.089"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="20.081 35.971 21.313 31.971 22.553 35.969 19.315 33.5 23.315 33.497 20.081 35.971"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="26.581 27.471 27.813 23.471 29.053 27.469 25.815 25 29.815 24.997 26.581 27.471"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="13.581 27.471 14.813 23.471 16.053 27.469 12.815 25 16.815 24.997 13.581 27.471"/>
+    <circle cx="24.75" cy="30" r="0.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8ff102b
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FC.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m52.2754,21.0503c-.5254-.1514-1.084.1548-1.2363.6865l-7.0371,24.6348-7.042-24.6353c-.123-.4292-.5156-.7251-.9619-.7251s-.8389.2959-.9619.7251l-7.0371,24.6338-7.0381-24.6328c-.1523-.5312-.708-.8374-1.2363-.6865-.5312.1519-.8389.7051-.6875,1.2363l8,27.998c.123.4292.5156.7251.9619.7251s.8389-.2959.9619-.7251l7.0371-24.6348,7.042,24.6353c.123.4292.5156.7251.9619.7251s.8389-.2959.9619-.7251l7.999-27.999c.1514-.5312-.1562-1.085-.6875-1.2363Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6b75000
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FD-1F1F0.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#1e50a0"/>
+    <g>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="31.516 26.089 32.749 22.089 33.989 26.087 30.75 23.618 34.75 23.615 31.516 26.089"/>
+      <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="38.016 26.089 39.249 22.089 40.489 26.087 37.25 23.618 41.25 23.615 38.016 26.089"/>
+    </g>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="43.581 28.471 44.813 24.471 46.053 28.469 42.815 26 46.815 25.997 43.581 28.471"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="49.581 30.471 50.813 26.471 52.053 30.469 48.815 28 52.815 27.997 49.581 30.471"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="25.581 28.471 26.813 24.471 28.053 28.469 24.815 26 28.815 25.997 25.581 28.471"/>
+    <polygon fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" points="19.581 30.471 20.813 26.471 22.053 30.469 18.815 28 22.815 27.997 19.581 30.471"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" d="M29.82,35.7794c.7763-.1309,1.5819-.21,1.9521-.85-.4534-.0176-.5355-.7276-.2233-1.0568a3.9713,3.9713,0,0,1,1.2-.6194c.4054-.2037.7722-.6831.5574-1.0827.2839-.0362.4037-.4169.2944-.6815a1.7427,1.7427,0,0,0-.58-.62,1.0377,1.0377,0,0,1-.4568-.6961c.755.3016,1.52-.8745,2.2743-.5718-.0541-.8706.9657.5222,1.0943.6242a.3132.3132,0,0,0-.42.0438.3923.3923,0,0,0,.0589.5124,1.1425,1.1425,0,0,0,.5039.2481l1.9305.578a.3427.3427,0,0,0,.3742-.2565.8223.8223,0,0,0,.6188.302,2.5089,2.5089,0,0,0,.5317,1.6872l.2376-.3913c.5867.2457.2566,1.2414.7057,1.6919a1.1708,1.1708,0,0,0,.4218.2387,10.2882,10.2882,0,0,0,1.6127.4733l-.4944,1.8145a4.406,4.406,0,0,1,3.21,1.2378.7776.7776,0,0,1,1.4476.3358c-.3669.0158-.4525.5115-.471.8783s-.2784.8514-.6122.6983c.15.2716-.0854.5929-.323.7922s-.5232.4342-.4916.7427c.018.1763.1427.3337.1355.5107-.0257.6244-1.3678.3943-1.3993,1.0184-.025.4958.9185.77.687,1.2091-.0993.1882-.355.2108-.5678.2093a.7287.7287,0,0,0-.6232-.5c-.2831.001-.5358.3445-.3807.5813a1.5951,1.5951,0,0,0-1.5308,1.9874l-1.035.2053a7.612,7.612,0,0,0-.5581-1.2853.688.688,0,0,0-.274-.3137.7281.7281,0,0,0-.6136.0978L35.638,47.0376c-.5576.2744-1.1916.6569-1.2329,1.2769-.0344.5149.3752,1.0107.245,1.51-.136.5214-.7631.7219-1.2981.7867-.2951.0357-.6575.0249-.8074-.2319-.1992-.3415.16-.7262.2781-1.1035a2.2413,2.2413,0,0,0-.29-1.4406,17.9857,17.9857,0,0,0-.933-2.6125,3.4261,3.4261,0,0,0-3.1072-1.6408,4.6472,4.6472,0,0,0-1.1278-2.8058,4.2641,4.2641,0,0,1-.809-1.0411A.91.91,0,0,1,26.85,38.57,8.4823,8.4823,0,0,1,25.51,37.89a.4332.4332,0,0,1-.1967-.1963.38.38,0,0,1,.05-.2979,1.2952,1.2952,0,0,1,1.4639-.6224c.3505.1025.723.356,1.0441.1822.1824-.0988.2723-.3051.3964-.4712A2.2858,2.2858,0,0,1,29.82,35.7794Z"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..10dc716
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FD.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m44.4951,21.122c-.4805-.2759-1.0918-.1074-1.3643.3721l-7.1371,12.4904-7.1246-12.4684c-.2734-.48-.8857-.6475-1.3643-.3721-.4795.2739-.6465.8848-.3721,1.3643l7.7093,13.4917-7.7093,13.4917c-.2744.4795-.1074,1.0903.3721,1.3643.1562.0894.3271.1318.4951.1318.3477,0,.6846-.1807.8691-.5039l7.1246-12.4684,7.1371,12.4904c.1846.3232.5215.5039.8691.5039.168,0,.3389-.0425.4951-.1318.4795-.2739.6465-.8848.3721-1.3643l-7.7218-13.5137,7.7218-13.5137c.2744-.4795.1074-1.0903-.3721-1.3643h.0002Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..717ccc1
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FE-1F1EA.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="17" width="62" height="13" fill="#d22f27"/>
+    <rect x="5" y="30" width="62" height="12" fill="#fff"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9f21322
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FE-1F1F9.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#fff"/>
+    <path fill="#1e50a0" stroke-width="0.7699" d="m28.63 36.7a1.357 1.357 0 0 0 1.21 1.346v0.0154h12.1v-0.0154a1.342 1.342 0 0 0 0.1513 0.0154 1.362 1.362 0 0 0 0-2.723 1.342 1.342 0 0 0-0.1513 0.0154v-0.0308a1.342 1.342 0 0 0 0.1513 0.0154 1.362 1.362 0 1 0 0-2.723 1.324 1.324 0 0 0-0.1513 0.0154v-0.0308a1.324 1.324 0 0 0 0.1513 0.0154 1.362 1.362 0 1 0-1.346-1.513h-0.333a1.354 1.354 0 0 0-2.693 0h-0.3328a1.354 1.354 0 0 0-2.693 0h-0.333a1.354 1.354 0 0 0-2.692 0h-0.3331a1.358 1.358 0 1 0-1.498 1.498v0.0308a1.354 1.354 0 0 0 0 2.692v0.0308a1.357 1.357 0 0 0-1.21 1.346z"/>
+    <path fill="#d22f27" stroke-width="0.7699" d="m43.45 39.43a1.357 1.357 0 0 0-1.21-1.346v-0.0154h-12.1v0.0154a1.342 1.342 0 0 0-0.1513-0.0154 1.362 1.362 0 0 0 0 2.723 1.324 1.324 0 0 0 0.1513-0.0154v0.0308a1.324 1.324 0 0 0-0.1513-0.0154 1.362 1.362 0 0 0 0 2.723 1.342 1.342 0 0 0 0.1513-0.0154v0.0308a1.342 1.342 0 0 0-0.1513-0.0154 1.362 1.362 0 1 0 1.346 1.513h0.3331a1.354 1.354 0 0 0 2.692 0h0.333a1.354 1.354 0 0 0 2.693 0h0.333a1.354 1.354 0 0 0 2.693 0h0.333a1.358 1.358 0 1 0 1.498-1.498v-0.0308a1.354 1.354 0 0 0 0-2.692v-0.0308a1.357 1.357 0 0 0 1.21-1.346z"/>
+    <path fill="#fff" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.7413" d="m36.04 35.5a2.382 2.382 0 0 1-2.306-1.986 2.581 2.581 0 0 0-0.04496 0.4766 2.354 2.354 0 1 0 4.703 0 2.588 2.588 0 0 0-0.04489-0.4766 2.382 2.382 0 0 1-2.306 1.986z"/>
+    <path fill="#f1b31c" stroke-width="0.7699" d="m33.5 39.46a0.3537 0.3537 0 0 1 0.3537 0.3537v2.83a0.3537 0.3537 0 0 1-0.3537 0.3537 0.3537 0.3537 0 0 1-0.3537-0.3537v-2.83a0.3537 0.3537 0 0 1 0.3537-0.3537z"/>
+    <path fill="#f1b31c" stroke-width="0.7699" d="m31.97 40.34a0.3537 0.3537 0 0 1 0.4832-0.1295l2.451 1.415a0.3537 0.3537 0 0 1 0.1295 0.4831 0.3537 0.3537 0 0 1-0.4832 0.1295l-2.451-1.415a0.3537 0.3537 0 0 1-0.1295-0.4832z"/>
+    <path fill="#f1b31c" stroke-width="0.7699" d="m31.97 42.11a0.3537 0.3537 0 0 1 0.1294-0.4831l2.451-1.415a0.3537 0.3537 0 0 1 0.4832 0.1295 0.3537 0.3537 0 0 1-0.1294 0.4831l-2.451 1.415a0.3537 0.3537 0 0 1-0.4832-0.1295z"/>
+    <path fill="#f1b31c" stroke-width="0.7699" d="m38.58 39.46a0.3537 0.3537 0 0 1 0.3537 0.3537v2.83a0.3537 0.3537 0 0 1-0.3537 0.3537 0.3537 0.3537 0 0 1-0.3537-0.3537v-2.83a0.3537 0.3537 0 0 1 0.3537-0.3537z"/>
+    <path fill="#f1b31c" stroke-width="0.7699" d="m37.04 40.34a0.3537 0.3537 0 0 1 0.4831-0.1295l2.451 1.415a0.3537 0.3537 0 0 1 0.1295 0.4831 0.3537 0.3537 0 0 1-0.4832 0.1295l-2.45-1.415a0.3537 0.3537 0 0 1-0.1295-0.4832z"/>
+    <path fill="#f1b31c" stroke-width="0.7699" d="m37.04 42.11a0.3537 0.3537 0 0 1 0.1295-0.4831l2.451-1.415a0.3537 0.3537 0 0 1 0.4831 0.1295 0.3537 0.3537 0 0 1-0.1295 0.4832l-2.45 1.415a0.3537 0.3537 0 0 1-0.4832-0.1295z"/>
+    <path fill="#9b9b9a" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.7413" d="m50.78 40.82c1.466-0.6358 2.694-2.471 3.014-2.864 0.7899-0.9716 1.58-4.797-1.038-7.285a5.519 5.519 0 0 0-1.245-0.8671c-2.557-1.347-2.557-0.4474-2.557-0.4474a1.538 1.538 0 0 1 1.076 0.6615c0.5377 0.6615 0 0.6615-1.076 1.323s-0.5378 1.985-1.076 2.646c-0.5381 0.6615-1.076 0.6615-0.5377 1.323 0.5378 0.6615 2.282-1.038 2.282-1.038l0.0034-0.0028a1.412 1.412 0 0 0 0.9415 0.379 1.781 1.781 0 0 0 1.597-1.789 0.3873 0.3873 0 0 1 0.2848 0.1347c0.5365 0.6599 0.05351 2.131-3.738 3.955-4.91 2.362-4.68 7.095-4.385 8.916a3.977 3.977 0 0 0 0.4345 1.271c0.1405 0.2571 0.2843 0.5062 0.4287 0.7423a5.625 5.625 0 0 0 5.109 2.977c2.198 0 3.986-2.163 4.032-4.853 1e-3 -0.06467-0.0055-0.1283-0.0092-0.1925-0.1041 2.259-1.622 4.053-3.485 4.053-0.0629 0-0.1243-0.0077-0.1862-0.0117-0.0522-0.0022-0.104-0.0035-0.1559-0.0095-1.77-0.2116-3.153-2.046-3.153-4.279a5.271 5.271 0 0 1 3.44-4.744z"/>
+    <path fill="#9b9b9a" stroke="#9b9b9a" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.7413" d="m21.28 40.82c-1.466-0.6358-2.694-2.471-3.014-2.864-0.7899-0.9716-1.58-4.797 1.038-7.285a5.521 5.521 0 0 1 1.245-0.8671c2.557-1.347 2.557-0.4474 2.557-0.4474a1.538 1.538 0 0 0-1.076 0.6615c-0.5377 0.6615 0 0.6615 1.076 1.323s0.5378 1.985 1.076 2.646c0.5377 0.6615 1.076 0.6615 0.5378 1.323-0.5377 0.6615-2.282-1.038-2.282-1.038l-0.0034-0.0028a1.412 1.412 0 0 1-0.9415 0.379 1.781 1.781 0 0 1-1.597-1.789 0.3875 0.3875 0 0 0-0.2848 0.1347c-0.5365 0.6599-0.05343 2.131 3.738 3.955 4.91 2.362 4.68 7.095 4.385 8.916a3.977 3.977 0 0 1-0.4345 1.271c-0.1405 0.2571-0.2843 0.5062-0.4287 0.7423a5.625 5.625 0 0 1-5.109 2.977c-2.198 0-3.986-2.163-4.032-4.853-0.0011-0.06467 0.0055-0.1283 0.0092-0.1925 0.1045 2.259 1.623 4.053 3.485 4.053 0.06282 0 0.1242-0.0077 0.1862-0.0117 0.0522-0.0022 0.104-0.0035 0.1558-0.0095 1.77-0.2116 3.154-2.046 3.154-4.279a5.271 5.271 0 0 0-3.44-4.744z"/>
+    <path fill="#3f3f3f" stroke-width="0.7699" d="m18.25 39.7c-0.4458-0.6433-1.984-2.941-2.03-4.092a0.2377 0.2377 0 0 0-0.2027-0.2497 1.778 1.778 0 0 1-1.321-0.5939c-0.1262-0.1644-0.3502-0.07698-0.3695 0.1477-0.1296 1.516-0.01879 4.816 3.168 5.944a0.1987 0.1987 0 0 0 0.2269-0.08114l0.5239-0.7314a0.3079 0.3079 0 0 0 0.0042-0.344z"/>
+    <path fill="#3f3f3f" stroke-width="0.7699" d="m53.75 39.7c0.4458-0.6433 1.984-2.941 2.03-4.092a0.2377 0.2377 0 0 1 0.2027-0.2497 1.778 1.778 0 0 0 1.321-0.5939c0.1262-0.1644 0.3502-0.07698 0.3695 0.1477 0.1296 1.516 0.01879 4.816-3.168 5.944a0.1986 0.1986 0 0 1-0.2268-0.08114l-0.5235-0.7314a0.3079 0.3079 0 0 1-0.0047-0.344z"/>
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="3" d="m20.67 23.34 30.66 0.1154"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0eb2050
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FE.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m44.4475,21.1054c-.4932-.2471-1.0938-.0469-1.3418.4473l-7.1055,14.2114-7.1055-14.2114c-.2471-.4941-.8477-.6943-1.3418-.4473s-.6943.8477-.4473,1.3418l7.8945,15.7886v11.7642c0,.5522.4473,1,1,1s1-.4478,1-1v-11.7642l7.8945-15.7886c.0713-.144.1055-.2964.1055-.4473,0-.3662-.2021-.7192-.5527-.8945h0Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d35bf01
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FF-1F1E6.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#d22f27"/>
+    <rect x="5" y="36" width="62" height="19" fill="#1e50a0"/>
+    <polygon fill="#5c9e31" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="5 55 26 42 67 42 67 30 26 30 5 17 5 55"/>
+    <polygon stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="20 36 5 46 5 26 20 36"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..766b35c
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FF-1F1F2.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38" fill="#5c9e31"/>
+    <rect x="61" y="36" width="6" height="19" fill="#f1b31c"/>
+    <rect x="51" y="36" width="5" height="19" fill="#d22f27"/>
+    <rect x="56" y="36" width="5" height="19"/>
+    <polyline fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="53 31 58.75 32 64 31"/>
+    <g>
+      <line x1="58" x2="58" y1="32" y2="34" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round"/>
+      <line x1="59" x2="59" y1="32" y2="34" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round"/>
+    </g>
+    <line x1="58.5" x2="58.5" y1="30.5" y2="32.5" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round"/>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..540cd5e
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FF-1F1FC.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="5" y="17" width="62" height="38"/>
+    <rect x="5" y="49" width="62" height="6" fill="#5c9e31"/>
+    <rect x="5" y="44" width="62" height="5" fill="#f1b31c"/>
+    <rect x="5" y="39" width="62" height="5" fill="#d22f27"/>
+    <rect x="5" y="17" width="62" height="6" fill="#5c9e31"/>
+    <rect x="5" y="23" width="62" height="5" fill="#f1b31c"/>
+    <rect x="5" y="28" width="62" height="5" fill="#d22f27"/>
+    <polygon fill="#fff" stroke="#000" stroke-linecap="round" stroke-linejoin="round" points="26 36 5 55 5 17 26 36"/>
+    <g>
+      <path fill="#d22f27" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.5399" d="M15.2661,35.6693,19,32.7964l-4.5363.1121-1.2981-4.4669L11.66,32.9777l-4.5369.112,3.6062,2.6918-.974,2.9344a2.2833,2.2833,0,0,1,1.0806.362l2.1222-1.6328,3.6063,2.6918Z"/>
+      <path fill="#fcea2b" d="M10.7012,30.9391A.8847.8847,0,0,0,9.277,31.64v8.7433a.8848.8848,0,0,0,.8848.8848h6.0475a.8847.8847,0,0,0,.8847-.8848V36.2923a.8847.8847,0,0,0-.3453-.7013Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="5" y="17" width="62" height="38" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4c01f33
--- /dev/null
+++ b/static/openmoji-svg-color/1F1FF.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="27.5" fill="#fff"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <path stroke="#000" stroke-linejoin="round" stroke-width="2" d="m44,49h-14.2764l15.1445-26.5039c.1768-.3096.1758-.6899-.0029-.998-.1797-.3081-.5088-.498-.8652-.498h-16c-.5527,0-1,.4478-1,1s.4473,1,1,1h14.2764l-15.1445,26.5039c-.1768.3096-.1758.6899.0029.998.1797.3081.5088.498.8652.498h16c.5527,0,1-.4478,1-1s-.4473-1-1-1Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..72b470e
--- /dev/null
+++ b/static/openmoji-svg-color/1F201.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.8049" y="11.6024" rx="1.6991" width="48.9841" height="48.9841" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <g>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2" d="M17.3676,26.2186h16.53a.43.43,0,0,1,.43.43V48.9454"/>
+      <line x1="34.3267" x2="17.3676" y1="46.2827" y2="46.2827" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2" d="M37.4746,26.2186h16.53a.43.43,0,0,1,.4295.43V48.9454"/>
+      <line x1="54.4338" x2="37.4746" y1="46.2827" y2="46.2827" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <rect x="11.8049" y="11.6024" rx="1.6991" width="48.9841" height="48.9841" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..219b54d
--- /dev/null
+++ b/static/openmoji-svg-color/1F202.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke="none" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60H12.9651 C12.4343,60,12,59.5657,12,59.0349V12.9651C12,12.4343,12.4343,12,12.9651,12h46.0698C59.5657,12,60,12.4343,60,12.9651v46.0698 C60,59.5657,59.5657,60,59.0349,60z"/>
+    <path fill="#000000" stroke="none" d="M49.1406,29.8502h-5.4819v-4.7826c0-0.2754-0.2232-0.4986-0.4986-0.4986h-1.7307 c-0.2753,0-0.4985,0.2232-0.4985,0.4986v4.7826h-9.1624v-4.7826c0-0.2754-0.2232-0.4986-0.4985-0.4986h-1.7308 c-0.2753,0-0.4985,0.2232-0.4985,0.4986v4.7826h-6.1812c-0.2753,0-0.4985,0.2232-0.4985,0.4985v1.7307 c0,0.2753,0.2232,0.4985,0.4985,0.4985h6.1812v7.5797c0,0.2753,0.2232,0.4985,0.4985,0.4985h1.7308 c0.2753,0,0.4985-0.2232,0.4985-0.4985V32.578h9.1624v4.9091c0,2.9573-1.1118,5.7651-3.0502,7.7035 c-1.2888,1.2892-2.7015,2.003-4.2061,2.1261c-0.264,0.0216-0.4726,0.2267-0.4726,0.4916v1.736 c0,0.2834,0.2374,0.5209,0.5203,0.5042c2.2291-0.1318,4.2745-1.1155,6.0875-2.9292c2.4459-2.4459,3.8489-5.9564,3.8489-9.6321 V32.578h5.4819c0.2753,0,0.4985-0.2232,0.4985-0.4985v-1.7307C49.6391,30.0734,49.4159,29.8502,49.1406,29.8502z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0aa758a
--- /dev/null
+++ b/static/openmoji-svg-color/1F21A.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.5915" y="11.6165" rx="1.6991" width="48.9841" height="48.9841" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30.5935,17.7283s-2.7695,7.5391-8.4622,10.3085"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50.518 23.498 27.355 23.498 27.355 42.038"/>
+    <line x1="22.1313" x2="50.5181" y1="42.4225" y2="42.4225" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="22.1313" x2="50.5181" y1="32.9602" y2="32.9602" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="33.5952" x2="33.5952" y1="23.073" y2="42.4225" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="39.825" x2="39.825" y1="23.073" y2="42.4225" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="45.9793" x2="45.9793" y1="23.073" y2="42.4225" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="26.0434" x2="23.7394" y1="46.9261" y2="50.7637" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="33.0352" x2="32.637" y1="47.6744" y2="52.1327" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="40.6398" x2="40.9535" y1="47.671" y2="52.1361" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="47.9054" x2="50.1757" y1="47.1244" y2="50.9819" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <rect x="11.5915" y="11.6165" rx="1.6991" width="48.9841" height="48.9841" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d818352
--- /dev/null
+++ b/static/openmoji-svg-color/1F22F.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.1676" y="11.0904" rx="1.6991" width="48.9841" height="48.9841" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <g>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="37.932 51.824 37.932 36.539 50.072 36.539 50.072 51.824"/>
+      <line x1="37.9318" x2="50.0719" y1="41.4334" y2="41.4334" fill="none" stroke="#000" stroke-miterlimit="5" stroke-width="2"/>
+      <line x1="23.8345" x2="32.7317" y1="30.254" y2="30.254" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <line x1="24.2786" x2="32.7539" y1="41.567" y2="38.8595" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50.072 26.257 50.072 30.254 37.932 30.254 37.932 19.615"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="28.476 19.615 28.476 51.124 21.247 51.124"/>
+      <line x1="37.9318" x2="50.0719" y1="46.7364" y2="46.7364" fill="none" stroke="#000" stroke-miterlimit="5" stroke-width="2"/>
+      <line x1="37.9318" x2="47.9878" y1="25.533" y2="22.5202" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <rect x="11.1676" y="11.0904" rx="1.6991" width="48.9841" height="48.9841" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..95754ea
--- /dev/null
+++ b/static/openmoji-svg-color/1F232.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+  </g>
+  <g id="line">
+    <line x1="25" x2="47" y1="37" y2="37" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="21.5 41.5 36 41.5 50.5 41.5"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36.5 43 36.5 50.5 31.5 50.5"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M29,44s-3,5-7,6"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M43,44s3,5,7,6"/>
+    <line x1="28" x2="28" y1="22" y2="32" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="21" x2="33.5" y1="24.5741" y2="24.5741" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.5,32.5s6-4,6-8"/>
+    <path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M28.8517,24.5s1.6483,5,4.6483,6"/>
+    <line x1="43.5" x2="43.5" y1="22" y2="32" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="50.5" x2="38" y1="24.5741" y2="24.5741" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M50,32.5s-6-4-6-8"/>
+    <path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42.6483,24.5S40.6454,30.75,37,32"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0cce4bf
--- /dev/null
+++ b/static/openmoji-svg-color/1F233.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#92d3f5" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="23 30 23 26 48 26 48 30"/>
+    <line x1="35.5" x2="35.5" y1="22.5" y2="26" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.5,26.5s2,8-9,10"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M38.34,26l.16,8.5h5.5858a3.4142,3.4142,0,0,0,2.4142-1h0"/>
+    <line x1="25" x2="46" y1="41" y2="41" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.5 41.5 35.5 49.5 22.5 49.5"/>
+    <line x1="49.5" x2="35.5" y1="49.5" y2="49.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3858fb5
--- /dev/null
+++ b/static/openmoji-svg-color/1F234.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#ea5a47" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20,31c7,0,15-11,15-11s9.5,10.5,15.5,11.5"/>
+    <line x1="28.5" x2="42.5" y1="30.5" y2="30.5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="25.5 50.5 25.5 37.5 45.5 37.5 45.5 50.5"/>
+    <line x1="26.5" x2="45.5" y1="48.5" y2="48.5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="color-foreground">
+    <path fill="none" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20,31c7,0,15-11,15-11s9.5,10.5,15.5,11.5"/>
+    <line x1="28.5" x2="42.5" y1="30.5" y2="30.5" fill="none" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="25.5 50.5 25.5 37.5 45.5 37.5 45.5 50.5"/>
+    <line x1="26.5" x2="45.5" y1="48.5" y2="48.5" fill="none" stroke="#ffffff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3ddfc58
--- /dev/null
+++ b/static/openmoji-svg-color/1F235.svg
@@ -0,0 +1,32 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#ea5a47" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+  </g>
+  <g id="line" fill="none" stroke="#000" stroke-width="2">
+    <path stroke-miterlimit="10" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    <line x1="20.95" x2="23.95" y1="21.5" y2="24.5" stroke-linecap="round" stroke-linejoin="round"/>
+    <line x1="19.95" x2="22.95" y1="29.5" y2="32.5" stroke-linecap="round" stroke-linejoin="round"/>
+    <line x1="27.05" x2="50.05" y1="24" y2="24" stroke-linecap="round" stroke-linejoin="round"/>
+    <line x1="34.05" x2="34.05" y1="21" y2="29" stroke-linecap="round" stroke-linejoin="round"/>
+    <line x1="44.05" x2="44.05" y1="21" y2="29" stroke-linecap="round" stroke-linejoin="round"/>
+    <line x1="26.05" x2="52.05" y1="30" y2="30" stroke-linecap="round" stroke-linejoin="round"/>
+    <polyline transform="translate(-.4469 .5)" stroke-linecap="round" stroke-linejoin="round" points="39.5 30.5 39.5 44.5 44.5 44.5 44.5 39.5"/>
+    <polyline transform="translate(-.4469 .5)" stroke-linecap="round" stroke-linejoin="round" points="34.5 39.5 34.5 44.5 34.5 46.5"/>
+    <line x1="39.05" x2="35.05" y1="45" y2="45" stroke-linecap="round" stroke-linejoin="round"/>
+    <path stroke-linecap="round" stroke-linejoin="round" d="m24.05 40s-1 7-4 9"/>
+    <polyline transform="translate(-.4469 .5)" stroke-linecap="round" stroke-linejoin="round" points="28.5 50.5 28.5 34.5 49.5 34.5 49.5 49.5 44.5 49.5"/>
+  </g>
+  <g id="color-foreground" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
+    <line x1="20.95" x2="23.95" y1="21.5" y2="24.5"/>
+    <line x1="19.95" x2="22.95" y1="29.5" y2="32.5"/>
+    <line x1="27.05" x2="50.05" y1="24" y2="24"/>
+    <line x1="34.05" x2="34.05" y1="21" y2="29"/>
+    <line x1="44.05" x2="44.05" y1="21" y2="29"/>
+    <line x1="26.05" x2="52.05" y1="30" y2="30"/>
+    <polyline transform="translate(-.4469 .5)" points="39.5 30.5 39.5 44.5 44.5 44.5 44.5 39.5"/>
+    <polyline transform="translate(-.4469 .5)" points="34.5 39.5 34.5 44.5 34.5 46.5"/>
+    <line x1="39.05" x2="35.05" y1="45" y2="45"/>
+    <path d="m24.05 40s-1 7-4 9"/>
+    <polyline transform="translate(-.4469 .5)" points="28.5 50.5 28.5 34.5 49.5 34.5 49.5 49.5 44.5 49.5"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1785354
--- /dev/null
+++ b/static/openmoji-svg-color/1F236.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.4718" y="11.0417" rx="1.6991" width="48.9841" height="48.9841" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <g>
+      <line x1="21.3208" x2="51.2956" y1="25.1228" y2="25.1228" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2" d="M34.4333,19.9967a46.0471,46.0471,0,0,1-5.197,10.8748,25.378,25.378,0,0,1-8.5626,8.4156"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2" d="M40.3044,51.304h5.89a.6.6,0,0,0,.661-.5073V32.0284a.6.6,0,0,0-.661-.5073H30.6074"/>
+      <line x1="29.8502" x2="46.8552" y1="37.9003" y2="37.9003" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <line x1="29.225" x2="29.225" y1="32.0825" y2="51.0883" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="5" stroke-width="2"/>
+      <line x1="29.225" x2="46.8552" y1="43.2285" y2="43.2285" fill="none" stroke="#000" stroke-miterlimit="5" stroke-width="2"/>
+      <rect x="11.4718" y="11.0417" rx="1.6991" width="48.9841" height="48.9841" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..017ca9c
--- /dev/null
+++ b/static/openmoji-svg-color/1F237.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" d="M13.7,12H58.4a1.6855,1.6855,0,0,1,1.7,1.7V58.4a1.6855,1.6855,0,0,1-1.7,1.7H13.7A1.6855,1.6855,0,0,1,12,58.4V13.7A1.6275,1.6275,0,0,1,13.7,12Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M13.7,12H58.4a1.6855,1.6855,0,0,1,1.7,1.7V58.4a1.6855,1.6855,0,0,1-1.7,1.7H13.7A1.6855,1.6855,0,0,1,12,58.4V13.7A1.6275,1.6275,0,0,1,13.7,12Z"/>
+    <line x1="25" x2="47" y1="39" y2="39" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="25" x2="47" y1="30" y2="30" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="25" x2="47" y1="21" y2="21" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M25,21V39c0,5-1,9-4,12"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M47,21V49a2.0059,2.0059,0,0,1-2,2H39"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1c09aaf
--- /dev/null
+++ b/static/openmoji-svg-color/1F238.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <g id="color-2">
+      <path fill="#d0cfce" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    <line x1="25.5" x2="46.5" y1="41.5" y2="41.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="46.5" x2="25.5" y1="33.5" y2="33.5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="47.5 43.5 47.5 26.5 24.5 26.5 24.5 43.5"/>
+    <line x1="36.5" x2="36.5" y1="21.5" y2="51.5" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f228849
--- /dev/null
+++ b/static/openmoji-svg-color/1F239.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.2344" y="11.9216" rx="1.6991" width="48.9841" height="48.9841" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <g>
+      <line x1="22.9795" x2="35.9717" y1="31.4292" y2="31.4292" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="22.9795" x2="37.0869" y1="25.4179" y2="25.4179" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="22.2226" x2="36.3299" y1="25.4179" y2="25.4179" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="23.3965" x2="35.5363" y1="35.5475" y2="35.5475" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="24.1105" x2="35.0249" y1="50.7068" y2="50.7068" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="21.7278" x2="37.1933" y1="40.1152" y2="40.1152" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="29.4756" x2="29.4756" y1="28.8853" y2="40.1152" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="42.2216" x2="42.2216" y1="25.6206" y2="43.0035" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="29.4756" x2="29.4756" y1="21.9511" y2="25.1559" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="37.0869" x2="37.0869" y1="25.4179" y2="28.8853" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="22.2226" x2="22.2226" y1="25.4179" y2="28.8853" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="24.11 52.46 24.11 44.388 35.168 44.388 35.168 52.46"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="49.416 21.951 49.416 51.87 43.774 51.87"/>
+      <rect x="11.2344" y="11.9216" rx="1.6991" width="48.9841" height="48.9841" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..af41ff8
--- /dev/null
+++ b/static/openmoji-svg-color/1F23A.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <g id="color-2">
+      <path fill="#d0cfce" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    </g>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M59.0349,60h-46.07A.9679.9679,0,0,1,12,59.0349v-46.07A.9679.9679,0,0,1,12.9651,12h46.07A.9679.9679,0,0,1,60,12.9651v46.07A.9679.9679,0,0,1,59.0349,60Z"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="23 32 23 27 48 27 48 32"/>
+    <line x1="27" x2="30.1038" y1="22" y2="27" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="34" x2="37.1436" y1="22" y2="27" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="44" x2="41.3464" y1="22" y2="27" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polygon fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="28 31 28 37 34.832 37 43 37 43 31 28 31"/>
+    <line x1="33" x2="35" y1="41" y2="37" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="25 50 25 41 46 41 46 50"/>
+    <line x1="26" x2="45" y1="47" y2="47" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..614ae64
--- /dev/null
+++ b/static/openmoji-svg-color/1F250.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="11.7919" y="11.9742" rx="1.6991" width="48.9841" height="48.9841" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <g>
+      <polygon fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34.293 24.315 48.428 24.315 48.428 35.141 34.047 35.141 34.047 24.315 34.293 24.315"/>
+      <line x1="34.0473" x2="48.4282" y1="29.7278" y2="29.7278" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="31.6927" x2="50.7839" y1="40.4638" y2="40.4638" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="31.6927" x2="50.7839" y1="45.787" y2="45.787" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="34.7145" x2="38.2479" y1="51.1101" y2="51.1101" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="21.2455" x2="28.7211" y1="36.3171" y2="33.1412" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="20.9261" x2="28.4017" y1="28.6462" y2="25.4703" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="42.521 52.493 46.054 52.493 46.054 40.696"/>
+      <line x1="25.4646" x2="25.4646" y1="34.5247" y2="52.4926" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <rect x="11.7919" y="11.9742" rx="1.6991" width="48.9841" height="48.9841" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..343585f
--- /dev/null
+++ b/static/openmoji-svg-color/1F251.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36.5" cy="36.5" r="27.5" fill="#d0cfce"/>
+  </g>
+  <g id="line">
+    <path d="M36.5,11A25.5,25.5,0,1,1,11,36.5,25.5288,25.5288,0,0,1,36.5,11m0-2A27.5,27.5,0,1,0,64,36.5,27.5,27.5,0,0,0,36.5,9Z"/>
+    <line x1="21" x2="52" y1="25" y2="25" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="37.5 52.5 45.5 52.5 45.5 26.5"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="25.5 47.5 25.5 33.5 37.5 33.5 37.5 43.5 26.5 43.5"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d7410ba
--- /dev/null
+++ b/static/openmoji-svg-color/1F260.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#ea5a47" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39,13.2 A23,23,0,0,1,53.4,21"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39,58.8 a23,23,0,0,0,19.8,-19.8 H39z M39,47 h17 M45,39 v18"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39,33 H58.8 a23,23,0,0,0,-2.7,-8 H39z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33,27 V13.2 A23,23,0,0,0,14.7,27"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33,58.8 V33 H13.2 A23,23,0,0,0,15,45"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M24,33 V55.5"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d0414e5
--- /dev/null
+++ b/static/openmoji-svg-color/1F261.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#ea5a47" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M 13.2 33 a23,23,0,0,1,45.6,0 H39 v-14.8 a18,18,0,0,1,13.1,9.8 H45 M 13.2 33 H33 v-14.8 a18,18,0,0,0,-13.1,9.8 H27 M 13.2 39 a23,23,0,0,0,45.6,0 H39 v14.8 a18,18,0,0,0,13.1,-9.8 H45 M 13.2 39 H33 v14.8 a18,18,0,0,1,-13.1,-9.8 H 27 M19.8,19.8 l3.2,3.2 M52.2,52.2 l-3.2,-3.2 M19.8,52.2 l3.2,-3.2 M52.2,19.8 l-3.2,3.2 M 18.1 39 a18,18,0,0,1,0,-6 M 53.9 39 a18,18,0,0,0,0,-6"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9aafb6d
--- /dev/null
+++ b/static/openmoji-svg-color/1F262.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#ea5a47" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23,36 h26 M24,31 h24 M36,31 v5"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.5,26 H50.5 A18,18,0,0,1,54,36 H59 A23,23,0,0,0,56.5,26"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.5,26 A18,18,0,0,0,18,36 H13 A23,23,0,0,1,15.5,26"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14,42 H58 A23,23,0,0,1,39,59"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14,42 A23,23,0,0,0,33,59"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22,47 H50 A23,23,0,0,1,39,53.8"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22,47 A23,23,0,0,0,33,53.8"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,42 v5"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.5,21 A23,23,0,0,1,53.5,21"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M26,21 A18,18,0,0,1,46,21"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,13 v8"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a162467
--- /dev/null
+++ b/static/openmoji-svg-color/1F263.svg
@@ -0,0 +1,24 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#ea5a47" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <rect x="33" y="33" width="6" height="6" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <rect x="33" y="53" width="6" height="6" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <rect x="33" y="13" width="6" height="6" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36,19 v14"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36,39 v14"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,24 h16"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,28 h16"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,44 h16"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,48 h16"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,14.5 V33 H18.2 a18,18,0,0,1,5.2,-10 v5.6 M28,57.5 V39 H18.2 a18,18,0,0,0,5.2,10 v-5.6 M44,14.5 V33 H53.8 a18,18,0,0,0,-5.2,-10 v5.6 M44,57.5 V39 H53.8 a18,18,0,0,1,-5.2,10 v-5.6"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,14.5 a23,23,0,0,0,0,43 M44,14.5 a23,23,0,0,1,0,43"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M24,33 v6"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M48,33 v6"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f2c0ec2
--- /dev/null
+++ b/static/openmoji-svg-color/1F264.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#ea5a47" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39,36 H58.8 a23,23,0,0,0,-1,-6 H39z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33,36 H13.2 a23,23,0,0,1,1,-6 H33z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16.5,24 H55.5 M22,18 H50 M31,13.5 V24 M41,13.5 V24"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14,42 H58 M28,36 V48 M44,36 V48"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33,48 H16.5 A23,23,0,0,0,33,58.8z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39,48 H55.5 A23,23,0,0,1,39,58.8z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6af05d3
--- /dev/null
+++ b/static/openmoji-svg-color/1F265.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#ea5a47" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <rect x="33" y="26" width="6" height="20" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,21 h5 v-8 h6 v8 h5"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,51 h5 v8 h6 v-8 h5"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44,36 h15"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,36 h-15"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,14.5 v43 a23,23,0,0,1,-14.5,-16.5 H23 v7.5 a18,18,0,0,1,-2.5,-3"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,14.5 a23,23,0,0,0,-14.5,16.5 H23 v-7.5 a18,18,0,0,0,-2.5,3"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44,14.5 v43 a23,23,0,0,0,14.5,-16.5 H49 v7.5 a18,18,0,0,0,2.5,-3"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44,14.5 a23,23,0,0,1,14.5,16.5 H49 v-7.5 a18,18,0,0,1,2.5,3"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..60c4424
--- /dev/null
+++ b/static/openmoji-svg-color/1F300.svg
@@ -0,0 +1,9 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color"/>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M35.9896,7 C50.6146,7,65,18.5833,65,35.9583C65,51.9583,52.2489,65,35.9896,65C22.1451,65,9.923,55.6042,9.923,41.1162 c0-10.4059,8.4357-18.8416,18.8416-18.8416c8.3247,0,15.0733,6.7485,15.0733,15.0733c0,6.6598-5.3988,12.0586-12.0586,12.0586 c-5.3278,0-9.6469-4.3191-9.6469-9.6469c0-4.2623,3.4552-7.7175,7.7175-7.7175c3.4098,0,6.174,2.7642,6.174,6.174 c0,2.7278-2.2114,4.9392-4.9392,4.9392c-2.1823,0-3.9578-1.7691-3.9514-3.9514c0.0053-1.8015,1.213-2.8736,2.8239-2.4426 c0.2681,0.0717,0.6559,0.2764,0.9406,0.633c0.3572,0.4473,0.4259,0.9031,0.4636,1.3122"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ae09d67
--- /dev/null
+++ b/static/openmoji-svg-color/1F301.svg
@@ -0,0 +1,39 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="3.9" y="4" width="64" height="64" fill="#fff"/>
+    <path transform="translate(0 0)" fill="#d0cfce" d="M44.9,12.6a5.1017,5.1017,0,0,1-5,5.1H18.7a6.6143,6.6143,0,0,1-.6-13.2h0V4h18a7.096,7.096,0,0,1,1.6,3.9,5.3742,5.3742,0,0,1,2.1-.5h.3a4.2528,4.2528,0,0,1,1.1.2A5.2511,5.2511,0,0,1,44.9,12.6Z"/>
+    <path transform="translate(0 0)" fill="#fff" d="M68,14.8V30.3h0l-.1.1a9.59,9.59,0,0,1-5.4,1.7H31.2a7.3335,7.3335,0,1,1,1.4-14.6,10.548,10.548,0,0,1,2.4.6A9.57,9.57,0,0,1,44.9,9a10.6351,10.6351,0,0,1,4.3,1.2,7.3416,7.3416,0,0,1,9.7-3.9,7.4385,7.4385,0,0,1,4.5,6.8h0c.3,0,.5.1.8.1a4.3311,4.3311,0,0,1,.5.1h.1a.3674.3674,0,0,1,.3.1,6.3729,6.3729,0,0,0,.7.2c.2.1.5.2.7.3a5.9683,5.9683,0,0,1,1.5.9Z"/>
+    <path transform="translate(0 0)" fill="#d0cfce" d="M40.7,25.8a8.5239,8.5239,0,0,1-.3,2.3,8.34,8.34,0,0,1-4.7,5.2c-.2.1-.4.1-.6.2a7.267,7.267,0,0,1-2.5.4L3.9,35.7V5.1a16.3523,16.3523,0,0,1,2.2-.2,8.1876,8.1876,0,0,1,7.5,5,10.4917,10.4917,0,0,1,14.3,3.9c.1.2.2.3.3.5a10.4853,10.4853,0,0,1,1.1,4.2,7.9741,7.9741,0,0,1,10.7,4,6.3562,6.3562,0,0,1,.6,1.8c.1.3.1.7.2,1A.7494.7494,0,0,0,40.7,25.8Z"/>
+    <path transform="translate(0 0)" fill="#d0cfce" d="M68,27.5V46a9.0337,9.0337,0,0,1-2.8.4h-31a6.2792,6.2792,0,0,1-1.9-.3A7.4012,7.4012,0,0,1,27,37a8.03,8.03,0,0,1,1.5-2.9h0l.3-.3a7.5172,7.5172,0,0,1,8.5-1.7,9.764,9.764,0,0,1,10.1-9.2,10.6351,10.6351,0,0,1,4.3,1.2A7.4947,7.4947,0,0,1,66.1,27h0A13.3216,13.3216,0,0,1,68,27.5Z"/>
+    <path transform="translate(0 0)" fill="#fff" d="M3.9,40.2a9.9816,9.9816,0,0,0,5.3,1.6H40a7.5687,7.5687,0,0,0,1.5-.1,6.4682,6.4682,0,0,0,1.3-.4h0a7.6435,7.6435,0,0,0,3.5-2.9,8.4858,8.4858,0,0,0,1.1-2.6,7.24,7.24,0,0,0-.6-4.6,2.1859,2.1859,0,0,0-.3-.5,7.3849,7.3849,0,0,0-9.5-3,9.5727,9.5727,0,0,0-9.6-9.1,10.1449,10.1449,0,0,0-5.1,1h0a6.6182,6.6182,0,0,0-6.5-4.3,7.6389,7.6389,0,0,0-3.3.8h0a7.45,7.45,0,0,0-4.1,6.6h0A8.7124,8.7124,0,0,0,4,24.3C3.9,24.2,3.9,40.2,3.9,40.2Z"/>
+    <path transform="translate(0 0)" fill="#fff" d="M64.1,32.5A5.7847,5.7847,0,0,1,68,34V52.9H45.5a5.1892,5.1892,0,0,1-2.7-.7h0l-.9-.6a5.8028,5.8028,0,0,1-2.1-4.4,3.75,3.75,0,0,1,.1-1.1,5.4058,5.4058,0,0,1,3-3.9,5.94,5.94,0,0,1,2.6-.7,3.4019,3.4019,0,0,1,1,.1,7.366,7.366,0,0,1,1.4.4,7.3065,7.3065,0,0,1,7.7-7,7.4871,7.4871,0,0,1,3.3,1A5.6624,5.6624,0,0,1,64.1,32.5Z"/>
+    <rect x="32.5" y="9.3" width="7.2" height="42.1" fill="#ea5a47"/>
+    <rect x="44.8" y="23.8" width="4" height="27.1" fill="#ea5a47"/>
+    <rect x="55" y="33" width="3.8" height="27.2" fill="#ea5a47"/>
+    <path transform="translate(0 0)" fill="#ea5a47" d="M68,39.2v7S54.9,35.5,50.9,31.5c-4.1-4.1-14.8-18.4-14.8-18.4l2.4-2.4s11,13.4,15,17.4C57.6,32.2,68,39.2,68,39.2Z"/>
+    <rect x="23.1" y="23.6" width="3.8" height="27.3" fill="#ea5a47"/>
+    <rect x="13.2" y="33.2" width="3.8" height="26.6" fill="#ea5a47"/>
+    <path transform="translate(0 0)" fill="#ea5a47" d="M3.9,39.9v6.9S17.1,35.2,21.1,31.2C25.2,27.1,35.9,13,35.9,13l-2.4-2.4S22.5,24,18.5,28C14.4,32.2,3.9,39.9,3.9,39.9Z"/>
+    <path transform="translate(0 0)" fill="#d0cfce" d="M21.3,57.8a6.6143,6.6143,0,0,1-.6-13.2h0a5.1215,5.1215,0,0,1,5.1-5.1,5.022,5.022,0,0,1,4.7,3.1,6.5748,6.5748,0,0,1,9,2.5,7.5019,7.5019,0,0,1,.9,3,5.123,5.123,0,1,1,4.3,9.3,5.3742,5.3742,0,0,1-2.1.5Z"/>
+    <path transform="translate(0 0)" fill="#d0cfce" d="M68,47.9V68H31l.1-6.5a6.9591,6.9591,0,0,1,1.1-3.7,1.38,1.38,0,0,1,.3-.4,7.4331,7.4331,0,0,1,3.8-2.7h.2c.1,0,.3-.1.4-.1a.6012.6012,0,0,0,.4-.1h.9a7.1732,7.1732,0,0,1,2.9.6,10.0387,10.0387,0,0,1,.4-2.4,4.1792,4.1792,0,0,1,.4-1,9.2017,9.2017,0,0,1,5.5-4.9,9.54,9.54,0,0,1,7.4.7,7.134,7.134,0,0,1,9.3-3.8A7.3349,7.3349,0,0,1,68,47.9Z"/>
+    <path transform="translate(0 0)" fill="#fff" d="M3.9,51.2V68h27A6.5238,6.5238,0,0,0,33,66.4a6.4522,6.4522,0,0,0-.2-8.7,1.7556,1.7556,0,0,0-.5-.4,6.2582,6.2582,0,0,0-6.8-.9,8.7923,8.7923,0,0,0-1-3.6,8.16,8.16,0,0,0-7.2-4.2,8.6862,8.6862,0,0,0-4.1,1.1,6.3213,6.3213,0,0,0-5.9-3.9,6.0618,6.0618,0,0,0-3.5,1.1"/>
+  </g>
+  <g id="line">
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M66.4,13.9a10.8892,10.8892,0,0,0-3.1-.8h0a7.3951,7.3951,0,0,0-14.2-2.9A8.6841,8.6841,0,0,0,44.4,9"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6.2,4.9a8.1876,8.1876,0,0,1,7.5,5,10.4574,10.4574,0,0,1,13.2,2.4"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.3,22.7a7.0982,7.0982,0,0,1,10-.4,6.8219,6.8219,0,0,1,2.3,5.2h0"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="33.4 38 33.4 9.3 38.7 9.3 38.7 39.4"/>
+    <line x1="45.8" x2="45.8" y1="24.7" y2="43.2" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M60.2,38.6c-3.3-2.7-6.9-5.8-8.8-7.7-2.8-2.8-8.9-10.1-12.5-14.4"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M38.7,10.9S49.5,24.1,53.5,28.1c4.1,4.1,13.3,11.5,13.3,11.5"/>
+    <line x1="24.1" x2="24.1" y1="36" y2="27" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="56" x2="56" y1="41.4" y2="35.2" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="14.2" x2="14.2" y1="44.7" y2="37.1" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.7,40.5c3.1-2.6,8.2-7,10.9-9.7,2.8-2.8,9-10.1,12.6-14.4"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33.3,11S22.5,24.1,18.5,28.2c-4.1,4-13.2,11.7-13.2,11.7"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.3,45.3a4.1956,4.1956,0,0,1,2.4-.7h0a5.1215,5.1215,0,0,1,5.1-5.1,5.022,5.022,0,0,1,4.7,3.1,6.5748,6.5748,0,0,1,9,2.5,7.5019,7.5019,0,0,1,.9,3"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33.1,66.4a6.4522,6.4522,0,0,0-.2-8.7,1.7556,1.7556,0,0,0-.5-.4,6.2582,6.2582,0,0,0-6.8-.9,8.7923,8.7923,0,0,0-1-3.6,8.16,8.16,0,0,0-7.2-4.2,8.6862,8.6862,0,0,0-4.1,1.1,6.3213,6.3213,0,0,0-5.9-3.9,5.867,5.867,0,0,0-2.3.4"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36.3,54.7h.2c.1,0,.3-.1.4-.1a.6012.6012,0,0,0,.4-.1h.9a7.1732,7.1732,0,0,1,2.9.6,10.0387,10.0387,0,0,1,.4-2.4,4.1792,4.1792,0,0,1,.4-1,9.2017,9.2017,0,0,1,5.5-4.9,9.54,9.54,0,0,1,7.4.7,7.134,7.134,0,0,1,9.3-3.8,6.3419,6.3419,0,0,1,2.3,1.6"/>
+    <path transform="translate(0 0)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21.6,19.9a7.36,7.36,0,0,0-6.5-4.4,6.9629,6.9629,0,0,0-2.5.5h0A7.1086,7.1086,0,0,0,8,22.6H8a4.5292,4.5292,0,0,0-1.6.3,4.15,4.15,0,0,0-1.3.7"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..25c3c20
--- /dev/null
+++ b/static/openmoji-svg-color/1F302.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#8967aa" d="m54.75 64.05-9.824-39.03c-12.55 2.717-15 5.801-19.45 11.19z"/>
+    <path fill="#b399c8" d="m29.18 31.43 25.57 32.62-21.28-36.38z"/>
+    <path fill="#b399c8" d="m38.82 25.89 15.93 38.16-9.824-39.03c-1.715 1.145-3.645 1.719-6.111 0.8618z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m25.48 36.21c2.03-0.4991 3.683-3.204 3.7-4.783 1.717-0.2918 3.768-1.743 4.293-3.76 1.858 0.7027 4.348-0.05031 5.344-1.785 1.475 1.057 4.452 0.9916 6.111-0.8618l9.824 39.03z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m33.47 27.67-10.61-18.15c-2.058-3.519-7.198-0.5248-5.144 2.988"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..efcec7f
--- /dev/null
+++ b/static/openmoji-svg-color/1F303.svg
@@ -0,0 +1,50 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="4" y="3.9853" width="64" height="64" fill="#8967aa"/>
+    <polyline fill="#9b9b9a" points="9.923 45.944 9.923 28.944 19.923 28.944 19.923 45.944"/>
+    <rect x="33.9231" y="32.9444" width="13" height="35.041" fill="#9b9b9a"/>
+    <polyline fill="#d0cfce" points="50.923 67.985 50.923 36.944 66.923 36.944 66.923 67.985"/>
+    <polyline fill="#d0cfce" points="4.923 67.985 4.923 45.944 38.923 45.944 38.923 67.985"/>
+    <rect x="8.9231" y="48.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="14.9231" y="48.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="26.9231" y="48.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="32.9231" y="48.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="54.9231" y="39.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="60.9231" y="49.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="60.9231" y="59.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="54.9231" y="59.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="32.9231" y="58.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="20.9231" y="58.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="8.9231" y="58.9478" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <circle cx="22" cy="20.8424" r="2" fill="#fcea2b"/>
+    <circle cx="34" cy="25.8424" r="2" fill="#fcea2b"/>
+    <circle cx="33" cy="14.8424" r="2" fill="#fcea2b"/>
+    <circle cx="14" cy="10.8424" r="2" fill="#fcea2b"/>
+    <path fill="#fcea2b" d="M56,25.8424c-.4838.5267-9.016-2.3975-9-9,.0107-4.4,3.813-8.5541,9-9a22.1374,22.1374,0,0,0-2.0783,2.0869A10.4512,10.4512,0,0,0,51,16.8424c.0634,2.8883,1.7575,5.2225,3.1609,6.7968C55.262,24.8744,56.1843,25.6419,56,25.8424Z"/>
+  </g>
+  <g id="line">
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50.923 66.944 50.923 36.944 66.923 36.944 66.923 66.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="4.923 66.944 4.923 45.944 38.923 45.944 38.923 66.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34.923 42.944 34.923 32.944 46.923 32.944 46.923 66.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="10.923 42.944 10.923 28.944 18.923 28.944 18.923 42.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="56.923 45.944 54.923 45.944 54.923 40.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="62.923 55.944 60.923 55.944 60.923 50.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="28.923 54.944 26.923 54.944 26.923 49.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34.923 54.944 32.923 54.944 32.923 49.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34.923 64.944 32.923 64.944 32.923 59.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="16.923 54.944 14.923 54.944 14.923 49.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="10.923 54.944 8.923 54.944 8.923 49.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="10.923 64.944 8.923 64.944 8.923 59.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="22.923 64.944 20.923 64.944 20.923 59.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="56.923 65.944 54.923 65.944 54.923 60.944"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="62.923 65.944 60.923 65.944 60.923 60.944"/>
+    <line x1="14.9231" x2="14.9231" y1="31.9444" y2="42.9444" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="38.9231" x2="38.9231" y1="35.9444" y2="42.9444" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="42.9231" x2="42.9231" y1="35.9444" y2="66.9444" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14,12.8424a2,2,0,0,1,0-4"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22,22.8424a2,2,0,0,1,0-4"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M33,16.8424a2,2,0,1,1,0-4"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M34,27.8424a2,2,0,0,1,0-4"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M56,25.8424c-.4838.5267-9.016-2.3975-9-9,.0107-4.4,3.813-8.5541,9-9a22.1374,22.1374,0,0,0-2.0783,2.0869A10.4512,10.4512,0,0,0,51,16.8424c.0634,2.8883,1.7575,5.2225,3.1609,6.7968C55.262,24.8744,56.1843,25.6419,56,25.8424Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5e47277
--- /dev/null
+++ b/static/openmoji-svg-color/1F304.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="4" y="4" width="64" height="64" fill="#e27022"/>
+    <polyline fill="#f4aa41" points="68 4 60 4 44 35 48 38 65 18 68 14.769"/>
+    <polygon fill="#f4aa41" points="4 17.562 6.019 19.475 24.55 38.066 28.3 34.758 9 4 4 4 4 17.562"/>
+    <polyline fill="#f4aa41" points="30.879 4 33.348 32.375 38.331 32.787 42.08 6.807 42.566 4"/>
+    <path fill="#fcea2b" d="M50.9612,49.0783c-.2669,3.1308-5.2035,14.6638-16.0395,13.8829A15,15,0,0,1,21.0388,46.9217c.627-8.7,8.6625-14.3418,16.04-13.8829,6.9914.4348,11.089,6.2058,11.6543,7.0295a14.6318,14.6318,0,0,1,2.1067,5.5473A16.4018,16.4018,0,0,1,50.9612,49.0783Z"/>
+    <polygon fill="#d0cfce" points="4 42.636 15.889 33.41 54.869 68 4 68 4 42.636"/>
+    <polyline fill="#9b9b9a" points="41.492 54.869 68 27.944 68 68 54.869 68"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M25.75,37.0488a15.0248,15.0248,0,0,1,14.7118-3.3742,15.3622,15.3622,0,0,1,7.5867,5.3881,11.5175,11.5175,0,0,1,1.6933,2.88"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="5 42.416 16.34 32.855 54.746 67"/>
+    <line x1="42.9832" x2="66.7554" y1="53.4452" y2="28.2196" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8b1b00c
--- /dev/null
+++ b/static/openmoji-svg-color/1F305.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="4.0003" y="47.2922" width="64" height="20.7868" fill="#61b2e4"/>
+    <rect x="4.0003" y="4.079" width="64" height="43.2132" fill="#e27022"/>
+    <polyline fill="#f4aa41" points="68 4.079 60 4.079 44 35.079 48 38.079 65 18.079 68 14.848"/>
+    <polygon fill="#f4aa41" points="4 17.641 6.019 19.554 24.55 38.145 28.3 34.837 9 4.079 4 4.079 4 17.641"/>
+    <polyline fill="#f4aa41" points="30.879 4.079 33.348 32.454 38.331 32.866 42.08 6.886 42.566 4.079"/>
+    <polyline fill="#f4aa41" points="68 34.719 46.068 41.718 46.775 46.668 68 44.947"/>
+    <polyline fill="#f4aa41" points="4 34.899 25.933 41.898 25.226 46.848 4 45.127"/>
+    <path fill="#fcea2b" d="M21.48,47.2923a15.6793,15.6793,0,1,1,29.04.0006"/>
+    <polygon fill="#fff" points="67.964 24.049 68 47.292 49.932 47.292 55.019 37.008 58.641 33.433 59.643 27.783 60.927 24.904 67.964 24.049"/>
+    <polygon fill="#fff" points="4.037 24.049 4 47.292 21.48 47.292 18.327 36.079 14.848 32.091 14.967 28.846 11.073 24.904 4.037 24.049"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M8.48,32.188a7.7528,7.7528,0,0,1,9.8478,4.82"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M5,24.0262a7.7528,7.7528,0,0,1,9.8478,4.82"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M54.4754,40.5834a7.7527,7.7527,0,0,1,8.3317-7.127"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M58.6412,30.7561a7.7529,7.7529,0,0,1,8.3317-7.1271"/>
+    <line x1="5.1239" x2="66.8767" y1="47.2929" y2="47.2929" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M20.49,43.9627a15.6793,15.6793,0,1,1,30.7746.2534"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..335a101
--- /dev/null
+++ b/static/openmoji-svg-color/1F306.svg
@@ -0,0 +1,40 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="4" y="3.8981" width="64" height="64.1019" fill="#e27022"/>
+    <polyline fill="#9b9b9a" points="9.923 46 9.923 29 19.923 29 19.923 46"/>
+    <rect x="33.9231" y="33" width="13" height="35" fill="#9b9b9a"/>
+    <polyline fill="#d0cfce" points="50.923 68 50.923 37 66.923 37 66.923 68"/>
+    <polyline fill="#d0cfce" points="4.923 68 4.923 46 38.923 46 38.923 68"/>
+    <rect x="8.9231" y="49.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="14.9231" y="49.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="26.9231" y="49.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="32.9231" y="49.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="54.9231" y="40.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="60.9231" y="50.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="60.9231" y="60.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="54.9231" y="60.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="32.9231" y="59.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="20.9231" y="59.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="8.9231" y="59.0035" width="2.9913" height="5.9965" fill="#fcea2b"/>
+  </g>
+  <g id="line">
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="50.924 66.629 50.924 36.629 66.924 36.629 66.924 66.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="4.924 66.629 4.924 45.629 38.924 45.629 38.924 66.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34.924 42.629 34.924 32.629 46.924 32.629 46.924 66.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="10.924 42.629 10.924 28.629 18.924 28.629 18.924 42.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="56.924 45.629 54.924 45.629 54.924 40.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="62.924 55.629 60.924 55.629 60.924 50.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="28.924 54.629 26.924 54.629 26.924 49.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34.924 54.629 32.924 54.629 32.924 49.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34.924 64.629 32.924 64.629 32.924 59.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="16.924 54.629 14.924 54.629 14.924 49.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="10.924 54.629 8.924 54.629 8.924 49.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="10.924 64.629 8.924 64.629 8.924 59.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="22.924 64.629 20.924 64.629 20.924 59.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="56.924 65.629 54.924 65.629 54.924 60.629"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="62.924 65.629 60.924 65.629 60.924 60.629"/>
+    <line x1="14.9236" x2="14.9236" y1="31.629" y2="42.629" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="38.9236" x2="38.9236" y1="35.629" y2="42.629" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="42.9236" x2="42.9236" y1="35.629" y2="66.629" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1c1d85e
--- /dev/null
+++ b/static/openmoji-svg-color/1F307.svg
@@ -0,0 +1,47 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <rect x="4" y="4" width="64.09" height="64" fill="#e27022"/>
+    <polyline fill="#f4aa41" points="4 31.112 25.09 36.627 24.647 41.607 4 41.035"/>
+    <polyline fill="#f4aa41" points="68.09 31.112 47 36.627 47.443 41.607 68.09 41.035"/>
+    <polyline fill="#f4aa41" points="68.09 11.879 51.09 31.879 47.09 28.879 59.927 4.008 68.09 4"/>
+    <polyline fill="#f4aa41" points="4 4 4.001 13.364 6.109 15.355 24.64 33.945 28.39 30.638 12.1 4"/>
+    <polyline fill="#f4aa41" points="32.502 4 34.438 26.255 39.421 26.666 42.692 4"/>
+    <circle cx="37.09" cy="35.8794" r="15" fill="#fcea2b"/>
+    <polyline fill="#9b9b9a" points="10.013 45.981 10.013 28.981 20.013 28.981 20.013 45.981"/>
+    <rect x="34.0131" y="32.9814" width="13" height="35.0186" fill="#9b9b9a"/>
+    <polyline fill="#d0cfce" points="51.013 68 51.013 36.981 67.013 36.981 67.013 68"/>
+    <polyline fill="#d0cfce" points="5.013 68 5.013 45.981 39.013 45.981 39.013 68"/>
+    <rect x="9.0131" y="48.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="15.0131" y="48.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="27.0131" y="48.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="33.0131" y="48.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="55.0131" y="39.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="61.0131" y="49.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="61.0131" y="59.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="55.0131" y="59.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="33.0131" y="58.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="21.0131" y="58.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+    <rect x="9.0131" y="58.9848" width="2.9913" height="5.9965" fill="#fcea2b"/>
+  </g>
+  <g id="line">
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="51.013 66.981 51.013 36.981 67.013 36.981 67.013 66.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="5.013 66.981 5.013 45.981 39.013 45.981 39.013 66.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.013 42.981 35.013 32.981 47.013 32.981 47.013 66.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="11.013 42.981 11.013 28.981 19.013 28.981 19.013 42.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="57.013 45.981 55.013 45.981 55.013 40.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="63.013 55.981 61.013 55.981 61.013 50.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="29.013 54.981 27.013 54.981 27.013 49.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.013 54.981 33.013 54.981 33.013 49.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.013 64.981 33.013 64.981 33.013 59.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="17.013 54.981 15.013 54.981 15.013 49.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="11.013 54.981 9.013 54.981 9.013 49.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="11.013 64.981 9.013 64.981 9.013 59.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="23.013 64.981 21.013 64.981 21.013 59.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="57.013 65.981 55.013 65.981 55.013 60.981"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="63.013 65.981 61.013 65.981 61.013 60.981"/>
+    <line x1="15.0131" x2="15.0131" y1="31.9814" y2="42.9814" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="39.0131" x2="39.0131" y1="35.9814" y2="42.9814" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="43.0131" x2="43.0131" y1="35.9814" y2="66.9814" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M23.8748,42.982a15.002,15.002,0,1,1,28.0916-9.0372"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5bb09ee
--- /dev/null
+++ b/static/openmoji-svg-color/1F308.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#ea5a47" d="m64.05 7.95v5.121c-27.56 0-51.03 23.42-51.03 50.98h-5.067c0-30.99 25.11-56.1 56.1-56.1z"/>
+    <path fill="#f4aa41" d="m64.05 13.07v5.12c-24.4 0-45.86 21.46-45.86 45.86h-5.178c0-27.56 23.48-50.98 51.04-50.98z"/>
+    <path fill="#fcea2b" d="m64.05 18.19v5.121c-21.51 0-40.74 19.25-40.74 40.74h-5.121c0-24.4 21.46-45.86 45.86-45.86z"/>
+    <path fill="#b1cc33" d="m64.05 23.31v5.121c-18.88 0-35.61 16.83-35.61 35.62l-5.131-8.8e-5c0-21.48 19.23-40.74 40.74-40.74z"/>
+    <path fill="#92d3f5" d="m64.05 28.43v5.12c-16.34 0-30.5 14.22-30.5 30.5h-5.11c0-18.78 16.73-35.62 35.61-35.62z"/>
+    <path fill="#b399c8" d="m64.05 33.55v5.121c-14.02 0-25.38 11.36-25.38 25.38h-5.121c0-16.28 14.16-30.5 30.5-30.5z"/>
+  </g>
+  <g id="line" stroke-miterlimit="10">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m64.05 7.95v5.121c-27.56 0-51.04 23.42-51.04 50.98h-5.063c0-30.99 25.11-56.1 56.1-56.1z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m64.05 13.07v5.12c-24.4 0-45.86 21.46-45.86 45.86h-5.174c0-27.56 23.47-50.98 51.03-50.98z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m64.05 18.19v5.121c-21.51 0-40.74 19.25-40.74 40.74h-5.121c0-24.4 21.46-45.86 45.86-45.86z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m64.05 23.31v5.121c-18.88 0-35.61 16.83-35.61 35.62h-5.131c0-21.48 19.23-40.74 40.74-40.74z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m64.05 28.43v5.12c-16.34 0-30.5 14.22-30.5 30.5h-5.11c0-18.78 16.73-35.62 35.61-35.62z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m64.05 33.55v5.121c-14.02 0-25.38 11.36-25.38 25.38h-5.121c0-16.28 14.16-30.5 30.5-30.5z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ea0913a
--- /dev/null
+++ b/static/openmoji-svg-color/1F309.svg
@@ -0,0 +1,53 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <g>
+      <g>
+        <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M41.7734,19.4732a7.2185,7.2185,0,0,1-5.695,9.864"/>
+        <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M41.7734,19.4732a6.0541,6.0541,0,0,1-5.695,9.864"/>
+      </g>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="2" points="22 22.381 23.854 23.706 23.166 21.533 25 20.18 22.721 20.073 22 18 21.279 20.162 19 20.18 20.834 21.533 20.146 23.706 22 22.381"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="0.75" points="27 32.46 27.618 32.902 27.389 32.178 28 31.727 27.24 31.721 27 31 26.76 31.721 26 31.727 26.611 32.088 26.382 32.902 27 32.46"/>
+      <polygon stroke="#000" stroke-linejoin="round" points="51.5 26.337 52.427 27 52.083 25.913 53 25.237 51.86 25.138 51.5 24.147 51.14 25.228 50 25.237 50.917 25.913 50.573 27 51.5 26.337"/>
+    </g>
+  </g>
+  <g id="color">
+    <rect x="12" y="12" rx="1" width="48" height="48" fill="#1e50a0"/>
+    <g>
+      <g>
+        <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M41.7734,19.4732a7.2185,7.2185,0,0,1-5.695,9.864"/>
+        <path fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M41.7734,19.4732a6.0541,6.0541,0,0,1-5.695,9.864"/>
+      </g>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="2" points="22 22.381 23.854 23.706 23.166 21.533 25 20.18 22.721 20.073 22 18 21.279 20.162 19 20.18 20.834 21.533 20.146 23.706 22 22.381"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="0.75" points="27 32.46 27.618 32.902 27.389 32.178 28 31.727 27.24 31.721 27 31 26.76 31.721 26 31.727 26.611 32.088 26.382 32.902 27 32.46"/>
+      <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" points="51.5 26.337 52.427 27 52.083 25.913 53 25.237 51.86 25.138 51.5 24.147 51.14 25.228 50 25.237 50.917 25.913 50.573 27 51.5 26.337"/>
+    </g>
+  </g>
+  <g id="line">
+    <g>
+      <line x1="12.9231" x2="59.0769" y1="48.0385" y2="48.0385" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="24" x2="12" y1="36.9615" y2="48.0385" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="24" x2="24" y1="36.9615" y2="60.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+      <line x1="48" x2="48" y1="60.0385" y2="36.9615" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+      <g>
+        <line x1="24" x2="16.6154" y1="41.2219" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+        <line x1="24" x2="21.2308" y1="45.4823" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+      </g>
+      <line x1="48" x2="36" y1="36.9615" y2="48.0385" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <g>
+        <line x1="48" x2="40.6154" y1="41.2219" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+        <line x1="48" x2="45.2308" y1="45.4823" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+      </g>
+      <line x1="24" x2="36" y1="36.9615" y2="48.0385" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <g>
+        <line x1="24" x2="31.3846" y1="41.2219" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+        <line x1="24" x2="26.7692" y1="45.4823" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+      </g>
+      <line x1="48" x2="60" y1="36.9615" y2="48.0385" fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+      <g>
+        <line x1="48" x2="55.3846" y1="41.2219" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+        <line x1="48" x2="50.7692" y1="45.4823" y2="48.0385" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+      </g>
+      <rect x="12" y="12" rx="1" width="48" height="48" fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..b91c030
--- /dev/null
+++ b/static/openmoji-svg-color/1F30A.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#92D3F5" d="M4,28.1891C4,14.817,14.2855,3.9774,27.8365,3.9774l0,0C15,19.3437,26.25,43.7216,56.4,41.5631 c4.2563-0.3047,8.9466-1.7777,12.5933-3.7244v30.0865c0,0.5583-0.4525,1.0108-1.0108,1.0109L4,68.9578V28.1891"/>
+    <path fill="#61B2E4" d="M21.7843,10.0119c-3.8217,7.178-5.9507,21.1275,6.5553,33.3435c0,0,10.2391,12.649,40.6537,4.8847V37.3494 c0,0-11.1064,7.5922-27.5251,2.3384c-15.3849-4.923-19.4254-16.5267-18.9093-20.7668c0.1825-1.4994,0.7878-6.0417,0.7878-6.0417 s0.8388-3.0147,0.5454-3.801C23.5525,8.1679,22.058,9.4979,21.7843,10.0119z"/>
+    <path fill="#92D3F5" d="M44.857,9.7223c1.6744,1.9066,1.5785,4.7217-0.2101,6.2925s-4.5959,1.2984-6.2703-0.6082 c0,0-2.0702-2.2858-3.0178-8.8759c0,0-0.2509-1.3199,0.9788-0.9606C42.7502,7.3608,44.857,9.7223,44.857,9.7223"/>
+    <path fill="#61B2E4" d="M35.4101,6.0551c4.3534-0.5992,9.1662,3.3883,9.1662,3.3883c2.1331,2.429,1.859,5.0003,0.0704,6.571 C44.6466,16.0144,43.6489,10.5723,35.4101,6.0551"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M4,27.8333 M4,67.9583 M68,47.8958v20.0625H4v-40.125C4,13.1478,13.579,4,27.8364,3.9969"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M68,37.5064C64.3533,39.4229,60.6563,40.7,56.4,41C26.25,43.125,15,19.125,27.8364,3.9969"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M68,47.8958c-4.8333,2.6875-11.25,3.3715-19.0158,2.9878C13.9911,47.6254,11.3813,14.3841,27.8364,3.9969"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9" d="M44.857,9.7223c1.6744,1.9066,1.5785,4.7217-0.2101,6.2925s-4.5959,1.2984-6.2703-0.6082c0,0-2.0702-2.2858-3.0178-8.8759 c0,0-0.2509-1.3199,0.9788-0.9606C42.7502,7.3608,44.857,9.7223,44.857,9.7223"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M63.875,63.2775c-3.4238,0-3.4238-2.055-6.8475-2.055c-3.4219,0-3.4219,2.055-6.8438,2.055c-3.4249,0-3.4249-2.055-6.8498-2.055 c-3.4272,0-3.4272,2.055-6.8545,2.055s-3.4272-2.055-6.8545-2.055"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..9220a3a
--- /dev/null
+++ b/static/openmoji-svg-color/1F30B.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#D0CFCE" stroke="#D0CFCE" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M28.8,9.1c-0.4-0.7,1.6-4.2,4.6-4.4c3-0.3,5.2,1.5,4.4,3.6s-2.1,2.2-2.8,2.3l3.2,1.7c-0.8,2.1-7.8,2.7-6.5,5.6l-4,0.4 c0.1-1.5,0-3.7-1.5-4.9c-1.1-0.9-2.8-1.1-4.2-1.6c-2-0.7-2-2.7-1.4-4C21.3,6.4,22.4,5,24,5c1,0,2,0,3,1L28.8,9.1z"/>
+    <polygon fill="#9B9B9A" points="63,57 56.4,49.1 53,40 45,34 40,34 36,22 40,34 36,22 32,24 24.2,22.1 19,34 17,46 9,57"/>
+    <path fill="#EA5A47" d="M33.7,22.3c1.4,0.4,0.8,2.1,1.5,4.4c0.4,1.4,0.3,1.8,0.3,2c-0.5,1.3-1.2,1.2-1.7,2.4 c-0.4,1.1,0.7,1.6,0.4,3s-1.7,2.7-2.7,2.4c-0.8-0.2-1.1-1.3-1.3-1.8c-0.5-1.8,0.2-3.5,0.4-4.1c0.8-1.8,1.7-2.2,1.5-3.3 c-0.1-1-1-1.6-1.3-1.8c-0.8-0.6-2.1-1-3.1-0.6c-1.9,0.8-2.4,4.6-2,7.4c0.4,2.2,2.8,7,2.2,8.7c-0.2,0.7-2-3.1-3.2-1.5 c-1.1,1.4,0.4,5.3-1.8,6.6c-1.3,0.7-1.7-3.9-1.8-3.9c-0.3,0-1,1.5-0.3-2.1c0.4-2.4,1.7-1.4,2.1-4c0.2-1.5,0.1-4-0.1-6 c-0.3-3-1.4-2.7-1.1-5.1c0.1-0.8,0.8-1.5,2-2.1c0.5-0.2,0.2-1.9,2.4-1.8c3.6,0.2,4.1,1.4,5.2,1.3C32.7,22.3,33,22.1,33.7,22.3z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="63,56 56.4,49.1 53,40"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="24,22 19,34 17,46 9,56"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="40,34 36,22 34.4,22.8"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="40,34 45,34 53,40 52,46 53,51 51,53 48,56"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M33.7,22.3c1.4,0.4,0.8,2.1,1.5,4.4c0.4,1.4,0.3,1.8,0.3,2c-0.5,1.3-1.2,1.2-1.7,2.4c-0.4,1.1,0.7,1.6,0.4,3s-1.7,2.7-2.7,2.4 c-0.8-0.2-1.1-1.3-1.3-1.8c-0.5-1.8,0.2-3.5,0.4-4.1c0.8-1.8,1.7-2.2,1.5-3.3c-0.1-1-1-1.6-1.3-1.8c-0.8-0.6-2.1-1-3.1-0.6 c-1.9,0.8-2.4,4.6-2,7.4c0.4,2.2,2.8,7,2.2,8.7c-0.2,0.7-2-3.1-3.2-1.5c-1.1,1.4,0.4,5.3-1.8,6.6c-1.3,0.7-1.7-3.9-1.8-3.9 c-0.3,0-1,1.5-0.3-2.1c0.4-2.4,1.7-1.4,2.1-4c0.2-1.5,0.1-4-0.1-6c-0.3-3-1.4-2.7-1.1-5.1c0.1-0.8,0.8-1.5,2-2.1 c0.5-0.2,0.2-1.9,2.4-1.8c3.6,0.2,4.1,1.4,5.2,1.3C32.7,22.3,33,22.1,33.7,22.3z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M24.2,16.3c-0.4-1.6-3.3-2.4-6.5-1.7"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M35,18.9c2.7-1.9,6.7-0.9,8.9,2.3"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M22.8,19.9c-1.5-1.6-8.5-4.1-9.8,4.2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M27,6c-1-1-2-1-3-1c-1.6,0-2.7,1.4-3.4,2.7C20,9,20,11,22,11.7c1.3,0.5,3.1,0.7,4.2,1.6c1.5,1.2,1.5,3.4,1.5,4.9"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M34.9,10.5c0.7-0.1,2-0.2,2.8-2.3s-1.4-3.9-4.4-3.6s-5,3.8-4.6,4.4"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31.6,17.9c-1.3-2.9,5.7-3.5,6.5-5.6"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0ab4ecf
--- /dev/null
+++ b/static/openmoji-svg-color/1F30C.svg
@@ -0,0 +1,42 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <g>
+      <polygon stroke="#000" stroke-linejoin="round" points="53.75 17.19 54.677 17.853 54.333 16.767 55.25 16.09 54.11 15.991 53.75 15 53.39 16.081 52.25 16.09 53.167 16.767 52.823 17.853 53.75 17.19"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="0.75" points="55 27.271 55.618 27.713 55.389 26.989 56 26.538 55.24 26.532 55 25.811 54.76 26.532 54 26.538 54.611 26.899 54.382 27.713 55 27.271"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="2" points="47 24.838 48.236 25.811 47.777 24.363 49 23.46 47.481 23.449 47 22.007 46.519 23.449 45 23.46 46.223 24.363 45.764 25.811 47 24.838"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="1.5" points="43.103 44.882 44.403 45.811 43.92 44.288 45.206 43.339 43.608 43.327 43.103 41.811 42.598 43.237 41 43.339 42.285 44.288 41.803 45.811 43.103 44.882"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="2" points="52.25 34.214 53.486 35.098 53.027 33.649 54.25 32.747 52.731 32.645 52.25 31.294 51.769 32.735 50.25 32.747 51.473 33.649 51.014 35.098 52.25 34.214"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="2" points="42 36.192 43.854 37.517 43.166 35.344 45 33.991 42.721 33.884 42 31.811 41.279 33.974 39 33.991 40.834 35.344 40.146 37.517 42 36.192"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="2" points="35.75 49.506 37.45 50.811 36.819 48.819 38.5 47.578 36.411 47.563 35.75 45.58 35.089 47.563 33 47.578 34.681 48.819 34.05 50.811 35.75 49.506"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="0.75" points="35 41.369 35.618 41.811 35.389 41.087 36 40.636 35.24 40.63 35 39.909 34.76 40.63 34 40.636 34.611 41.087 34.382 41.721 35 41.369"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="0.75" points="48 38.271 48.618 38.713 48.389 37.989 49 37.538 48.24 37.442 48 36.811 47.76 37.532 47 37.538 47.611 37.989 47.382 38.713 48 38.271"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="0.75" points="29 52.369 29.618 52.811 29.389 52.087 30 51.636 29.24 51.63 29 50.909 28.76 51.63 28 51.636 28.611 52.087 28.382 52.721 29 52.369"/>
+      <polygon stroke="#000" stroke-linejoin="round" points="16.5 57.001 17.427 57.664 17.083 56.578 18 55.811 16.86 55.892 16.5 54.811 16.14 55.892 15 55.901 15.917 56.578 15.573 57.664 16.5 57.001"/>
+      <polygon stroke="#000" stroke-linejoin="round" points="27.5 48.001 28.427 48.664 28.083 47.578 29 46.901 27.86 46.803 27.5 45.811 27.14 46.892 26 46.901 26.917 47.578 26.573 48.664 27.5 48.001"/>
+      <polygon stroke="#000" stroke-linejoin="round" stroke-width="1.5" points="22.103 53.882 23.403 54.811 22.92 53.288 24.206 52.339 22.608 52.327 22.103 50.811 21.598 52.327 20 52.339 21.285 53.198 20.803 54.811 22.103 53.882"/>
+    </g>
+  </g>
+  <g id="color">
+    <g>
+      <rect x="12" y="12" rx="1" width="48" height="48" fill="#1e50a0"/>
+      <g>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" points="53.75 17.19 54.677 17.853 54.333 16.767 55.25 16.09 54.11 15.991 53.75 15 53.39 16.081 52.25 16.09 53.167 16.767 52.823 17.853 53.75 17.19"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="0.75" points="55 27.271 55.618 27.713 55.389 26.989 56 26.538 55.24 26.532 55 25.811 54.76 26.532 54 26.538 54.611 26.899 54.382 27.713 55 27.271"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="2" points="47 24.838 48.236 25.811 47.777 24.363 49 23.46 47.481 23.449 47 22.007 46.519 23.449 45 23.46 46.223 24.363 45.764 25.811 47 24.838"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="1.5" points="43.103 44.882 44.403 45.811 43.92 44.288 45.206 43.339 43.608 43.327 43.103 41.811 42.598 43.237 41 43.339 42.285 44.288 41.803 45.811 43.103 44.882"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="2" points="52.25 34.214 53.486 35.098 53.027 33.649 54.25 32.747 52.731 32.645 52.25 31.294 51.769 32.735 50.25 32.747 51.473 33.649 51.014 35.098 52.25 34.214"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="2" points="42 36.192 43.854 37.517 43.166 35.344 45 33.991 42.721 33.884 42 31.811 41.279 33.974 39 33.991 40.834 35.344 40.146 37.517 42 36.192"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="2" points="35.75 49.506 37.45 50.811 36.819 48.819 38.5 47.578 36.411 47.563 35.75 45.58 35.089 47.563 33 47.578 34.681 48.819 34.05 50.811 35.75 49.506"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="0.75" points="35 41.369 35.618 41.811 35.389 41.087 36 40.636 35.24 40.63 35 39.909 34.76 40.63 34 40.636 34.611 41.087 34.382 41.721 35 41.369"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="0.75" points="48 38.271 48.618 38.713 48.389 37.989 49 37.538 48.24 37.442 48 36.811 47.76 37.532 47 37.538 47.611 37.989 47.382 38.713 48 38.271"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="0.75" points="29 52.369 29.618 52.811 29.389 52.087 30 51.636 29.24 51.63 29 50.909 28.76 51.63 28 51.636 28.611 52.087 28.382 52.721 29 52.369"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" points="16.5 57.001 17.427 57.664 17.083 56.578 18 55.811 16.86 55.892 16.5 54.811 16.14 55.892 15 55.901 15.917 56.578 15.573 57.664 16.5 57.001"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" points="27.5 48.001 28.427 48.664 28.083 47.578 29 46.901 27.86 46.803 27.5 45.811 27.14 46.892 26 46.901 26.917 47.578 26.573 48.664 27.5 48.001"/>
+        <polygon fill="#f1b31c" stroke="#f1b31c" stroke-linejoin="round" stroke-width="1.5" points="22.103 53.882 23.403 54.811 22.92 53.288 24.206 52.339 22.608 52.327 22.103 50.811 21.598 52.327 20 52.339 21.285 53.198 20.803 54.811 22.103 53.882"/>
+      </g>
+    </g>
+  </g>
+  <g id="line">
+    <rect x="12" y="12" rx="1" width="48" height="48" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d94e98a
--- /dev/null
+++ b/static/openmoji-svg-color/1F30D.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.4394,11.4301C48.9012,12.3361,47.7952,13.5726,47,14c-1.2452,0.6692-1.904,0.2672-3,1c-1.2689,0.8484-1.2095,1.9379-2,2 c-0.8018,0.063-0.6879-1.993-1-3c-0.4521-1.4585-0.2307-1.5267-1-2c-1.0834-0.6665-3.2121-1.0502-5,0 c-0.7094,0.4167-0.7506,0.682-3,4c-1.7096,2.5218-2.188,3.1093-2,4c0.1989,0.9419,0.0427,1.7474,1,2 c1.1873,0.3132,1.3661-0.2722,2-1c1.3282-1.525,2.3581-3.7828,3-4c0.5713-0.1933,2.0656,1.3495,2,3c-0.0463,1.1654-0.852,1.922-2,3 c-0.7417,0.6965-2.875,1.5-6,2c-1.719,0.275-1.4083,0.8524-2.0625,1.5938c-0.8427,0.955-0.4615,2.1691-1.2812,3.3125 c-1.0252,1.43-3.4727,1.7917-3.6564,2.7188C22.8432,33.4154,24.9604,33.9845,26,34c0.8505,0.0127,1.0644-0.7721,3-2 c0.7408-0.47,1.75-1.2812,2.6875-1.25c0.5041,0.0168,1.8289,0.2852,2.3438,0.7188c0.5938,0.5-0.1562,1.8438-0.4062,3.1562 s-2.8976,1.8646-3.8542,2.0208c-1.5737,0.257-4.1439-0.5228-5.6042,0.9375c-1,1-1.1155,1.766-1.1667,3.4167 c-0.0129,0.4172,0.937,3.0323,2,4c1.1442,1.0416,2.2939-0.8356,4,0c1.7456,0.8549,2.493,2.7288,3,4 c0.5078,1.2731,0.1756,1.1679,1,5c0.4146,1.9271,0.3191,1.1194,1,4c0.5632,2.3826,0.5889,2.7678,1,3 c1.1732,0.6628,3.8997-0.8162,5-3c0.6895-1.3683,0.2111-1.9625,1-5c0.3928-1.5123,0.5892-2.2685,1-3 c1.7332-3.0861,4.8828-3.1256,5-5c0.0802-1.2824-1.3573-1.8515-1-3c0.3421-1.0997,1.8099-1.0603,2-2 c0.2579-1.2752-2.2492-2.316-2-3c0.2822-0.7746,4.0696-1.0098,6,1c0.6397,0.666,0.4982,0.9775,2,4c1.3839,2.7851,1.7637,3.0431,2,3 c0.4287-0.0782,0.3223-1.1355,1-3c0.3243-0.8922,1.0927-3.0062,2-3c0.6247,0.0043,0.7386,1.0097,2,2 c0.7103,0.5576,1.7908,0.8806,2.3474,1.0378C63.7747,40.0932,64,38.0729,64,36c0-10.6315-5.9252-19.8791-14.6535-24.6206"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.4394,11.4301C48.9012,12.3361,47.7952,13.5726,47,14c-1.2452,0.6692-1.904,0.2672-3,1c-1.2689,0.8484-1.2095,1.9379-2,2 c-0.8018,0.063-0.6879-1.993-1-3c-0.4521-1.4585-0.2307-1.5267-1-2c-1.0834-0.6665-3.2121-1.0502-5,0 c-0.7094,0.4167-0.7506,0.682-3,4c-1.7096,2.5218-2.188,3.1093-2,4c0.1989,0.9419,0.0427,1.7474,1,2 c1.1873,0.3132,1.3661-0.2722,2-1c1.3282-1.525,2.3581-3.7828,3-4c0.5713-0.1933,2.0656,1.3495,2,3c-0.0463,1.1654-0.852,1.922-2,3 c-0.7417,0.6965-2.875,1.5-6,2c-1.719,0.275-1.4083,0.8524-2.0625,1.5938c-0.8427,0.955-0.4615,2.1691-1.2812,3.3125 c-1.0252,1.43-3.4727,1.7917-3.6564,2.7188C22.8432,33.4154,24.9604,33.9845,26,34c0.8505,0.0127,1.0644-0.7721,3-2 c0.7408-0.47,1.75-1.2812,2.6875-1.25c0.5041,0.0168,1.8289,0.2852,2.3438,0.7188c0.5938,0.5-0.1562,1.8438-0.4062,3.1562 s-2.8976,1.8646-3.8542,2.0208c-1.5737,0.257-4.1439-0.5228-5.6042,0.9375c-1,1-1.1155,1.766-1.1667,3.4167 c-0.0129,0.4172,0.937,3.0323,2,4c1.1442,1.0416,2.2939-0.8356,4,0c1.7456,0.8549,2.493,2.7288,3,4 c0.5078,1.2731,0.1756,1.1679,1,5c0.4146,1.9271,0.3191,1.1194,1,4c0.5632,2.3826,0.5889,2.7678,1,3 c1.1732,0.6628,3.8997-0.8162,5-3c0.6895-1.3683,0.2111-1.9625,1-5c0.3928-1.5123,0.5892-2.2685,1-3 c1.7332-3.0861,4.8828-3.1256,5-5c0.0802-1.2824-1.3573-1.8515-1-3c0.3421-1.0997,1.8099-1.0603,2-2 c0.2579-1.2752-2.2492-2.316-2-3c0.2822-0.7746,4.0696-1.0098,6,1c0.6397,0.666,0.4982,0.9775,2,4c1.3839,2.7851,1.7637,3.0431,2,3 c0.4287-0.0782,0.3223-1.1355,1-3c0.3243-0.8922,1.0927-3.0062,2-3c0.6247,0.0043,0.7386,1.0097,2,2 c0.7103,0.5576,1.7908,0.8806,2.3474,1.0378C63.7747,40.0932,64,38.0729,64,36c0-10.6315-5.9252-19.8791-14.6535-24.6206 z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..05008e9
--- /dev/null
+++ b/static/openmoji-svg-color/1F30E.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41.6878,29.1965c-0.0568,0.7946-2.2706,3.5222-2.8378,3.9161c-1.1826,0.8214-1.6443,0.4449-2.6746,1.2557 c-0.653,0.5139-1.469,1.0634-2.4689,1.2557c-0.5534,0.1064-0.3086-0.4165-1.5537,0.3831c-0.6936,0.4454-0.0778,0.9247,0,1.3621 c0.1046,0.588,0.1828,0.2336,1.3621,1.3621c0.6157,0.5893,0.6707,1.1144,1.3621,1.3621c0.4322,0.1549,0.7463,0.07,1.3621,0 c1.2911-0.1467,0.717,1.1259,1.3621,1.3621C39.0851,41.9988,39.6331,41.7716,41,42c0.552,0.0922,1.3122-0.1799,2,1 c0.2963,0.5083,0,2,0.05,2.5421c0.0844,0.9159-0.5065,1.7288-1.3621,2.7243c-0.6921,0.8052-0.8206,0.6811-1.3621,1.3621 c-0.7236,0.9099-0.5299,1.1763-1.3621,2.7243c-0.8424,1.5667-1.3055,1.7862-1.3621,2.7243c-0.0237,0.3923-0.0011,1.32,0,1.3621 c0.0238,0.9465,0.0765,1.0716,0,1.3621c-0.1781,0.677-1.5528,1.2699-2.0716,1.1919c-1.0211-0.1535-1.0026-3.6818-1.05-4.2283 c-0.0958-1.1035,0.3564-1.7204,0.3973-2.4121c0.1412-2.393,0.5408-3.1351,0-4.0864c-0.3451-0.607-0.5273-0.3396-1.3621-1.3621 c-0.4715-0.5774-1.1856-1.4733-1.3621-2.7243c-0.1113-0.788,0.1212-0.7928,0-1.3621c-0.2251-1.0562-1.1013-1.3971-2.7243-2.7243 c-1.0013-0.8188-1.8894-1.5449-2.7243-2.7243c-0.4339-0.6128-1.0478-1.48-1.3621-2.7243c-0.4138-1.6378,0.2025-1.9051,0-4.0864 c-0.0457-0.4913-0.2445-2.2829-1.3621-4.0864c-0.4745-0.7657-0.8087-1.2882-1.3621-1.3621c-1.055-0.141-1.6211,1.519-2.7243,1.3621 c-0.6593-0.0938-1.1689-0.788-1.3621-1.3621c-0.0517-0.1534-0.2402-0.7406,0-1.3621c0.1331-0.3445,0.5428-0.6837,1.3621-1.3621 c0.836-0.6924,1.2563-1.045,1.3621-1.3621c0.1992-0.5974-0.1599-0.8105,0-1.3621c0.2735-0.944,1.7229-1.6939,2.7243-1.3621 c0.5752,0.1906,0.4511,0.5555,1.3621,1.3621c0.4423,0.3916,1.3981,1.1259,2.7243,1.3621c0.6697,0.1193,1.0045,0.1788,1.3621,0 c0.8809-0.4408,0.4597-1.6084,1.3621-2.7243c0.8301-1.0264,2.1787-1.2654,2.7243-1.3621c1.3486-0.2391,1.5329,0.2732,2.7243,0 c1.2802-0.2937,1.2433-0.9257,2.7243-1.3621c0.6485-0.1911,1.791-0.528,2.7243,0c0.8401,0.4752,0.7287,1.2093,1.3621,1.3621 c0.884,0.2134,1.3172-1.1646,2.7243-1.3621c1.0743-0.1508,2.3522,0.4375,2.7243,1.3621c0.1847,0.4589,0.0982,0.8817,0,1.3621 c-0.2966,1.4511-1.0836,1.5389-1.3621,2.7243c-0.3028,1.288,0.3458,1.6004,0,2.7243c-0.227,0.7378-0.6811,0.5108-1.4047,1.1067 c-0.3311,0.2727-0.4115,0.7094-1.3196,1.6175c-0.454,0.454-0.9255,0.8914-1.3621,1.3621 C42.0546,28.9072,41.8959,28.9885,41.6878,29.1965"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41.6878,29.1965c-0.0568,0.7946-2.2706,3.5222-2.8378,3.9161c-1.1826,0.8214-1.6443,0.4449-2.6746,1.2557 c-0.653,0.5139-1.469,1.0634-2.4689,1.2557c-0.5534,0.1064-0.3086-0.4165-1.5537,0.3831c-0.6936,0.4454-0.0778,0.9247,0,1.3621 c0.1046,0.588,0.1828,0.2336,1.3621,1.3621c0.6157,0.5893,0.6707,1.1144,1.3621,1.3621c0.4322,0.1549,0.7463,0.07,1.3621,0 c1.2911-0.1467,0.717,1.1259,1.3621,1.3621C39.0851,41.9988,39.6331,41.7716,41,42c0.552,0.0922,1.3122-0.1799,2,1 c0.2963,0.5083,0,2,0.05,2.5421c0.0844,0.9159-0.5065,1.7288-1.3621,2.7243c-0.6921,0.8052-0.8206,0.6811-1.3621,1.3621 c-0.7236,0.9099-0.5299,1.1763-1.3621,2.7243c-0.8424,1.5667-1.3055,1.7862-1.3621,2.7243c-0.0237,0.3923-0.0011,1.32,0,1.3621 c0.0238,0.9465,0.0765,1.0716,0,1.3621c-0.1781,0.677-1.5528,1.2699-2.0716,1.1919c-1.0211-0.1535-1.0026-3.6818-1.05-4.2283 c-0.0958-1.1035,0.3564-1.7204,0.3973-2.4121c0.1412-2.393,0.5408-3.1351,0-4.0864c-0.3451-0.607-0.5273-0.3396-1.3621-1.3621 c-0.4715-0.5774-1.1856-1.4733-1.3621-2.7243c-0.1113-0.788,0.1212-0.7928,0-1.3621c-0.2251-1.0562-1.1013-1.3971-2.7243-2.7243 c-1.0013-0.8188-1.8894-1.5449-2.7243-2.7243c-0.4339-0.6128-1.0478-1.48-1.3621-2.7243c-0.4138-1.6378,0.2025-1.9051,0-4.0864 c-0.0457-0.4913-0.2445-2.2829-1.3621-4.0864c-0.4745-0.7657-0.8087-1.2882-1.3621-1.3621c-1.055-0.141-1.6211,1.519-2.7243,1.3621 c-0.6593-0.0938-1.1689-0.788-1.3621-1.3621c-0.0517-0.1534-0.2402-0.7406,0-1.3621c0.1331-0.3445,0.5428-0.6837,1.3621-1.3621 c0.836-0.6924,1.2563-1.045,1.3621-1.3621c0.1992-0.5974-0.1599-0.8105,0-1.3621c0.2735-0.944,1.7229-1.6939,2.7243-1.3621 c0.5752,0.1906,0.4511,0.5555,1.3621,1.3621c0.4423,0.3916,1.3981,1.1259,2.7243,1.3621c0.6697,0.1193,1.0045,0.1788,1.3621,0 c0.8809-0.4408,0.4597-1.6084,1.3621-2.7243c0.8301-1.0264,2.1787-1.2654,2.7243-1.3621c1.3486-0.2391,1.5329,0.2732,2.7243,0 c1.2802-0.2937,1.2433-0.9257,2.7243-1.3621c0.6485-0.1911,1.791-0.528,2.7243,0c0.8401,0.4752,0.7287,1.2093,1.3621,1.3621 c0.884,0.2134,1.3172-1.1646,2.7243-1.3621c1.0743-0.1508,2.3522,0.4375,2.7243,1.3621c0.1847,0.4589,0.0982,0.8817,0,1.3621 c-0.2966,1.4511-1.0836,1.5389-1.3621,2.7243c-0.3028,1.288,0.3458,1.6004,0,2.7243c-0.227,0.7378-0.6811,0.5108-1.4047,1.1067 c-0.3311,0.2727-0.4115,0.7094-1.3196,1.6175c-0.454,0.454-0.9255,0.8914-1.3621,1.3621 C42.0546,28.9072,41.8959,28.9885,41.6878,29.1965"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8cfa8fd
--- /dev/null
+++ b/static/openmoji-svg-color/1F30F.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="#B1CC33" stroke="none" d="M9,34c0.5363,0.13,2.3029,0.3956,3,1c0.8804,0.7633-0.0786,1.4353,1,3c0.8754,1.2699,1.4379,3.0859,2,3 c0.7427-0.1134,0.5561-2.6591,2-4c0.4647-0.4316,1.2271-2.1396,2-2c1.4918,0.2695,1.2206,3.3712,3,4 c1.0358,0.366,2.3338,0.7411,3,0c0.8521-0.9479,0.3369-1.7146,1-3c0.8275-1.6039,2.0751-1.2738,4-3 c2.0099-1.8025-0.7353-2.7141,1-4c2.0988-1.5552,4.5219-0.4686,6-2c1.3787-1.4284-0.4493-2.7987,1-4 c0.6379-0.5287,3.0773-0.4945,6-1c1.2827-0.2218,3.239-0.5602,5-1c1.4183-0.3542,2.0643-1.2649,2-2 c-0.0632-0.7224-0.6832-0.9777-1-1c-2.0169-0.1422-2.2701,0.1908-4,0c-1.9902-0.2195-1.9509-0.6928-4-1 c-0.9448-0.1416-1.0863-0.061-5,0c-2.2653,0.0353-3.4099,0.0519-4,0c-2.562-0.2253-4.642-0.8844-5-1 c-2.0319-0.6559-2.0007-0.9771-3-1c-1.5103-0.0345-2.1089,0.6871-4,1c-1.2519,0.2071-2.313,0.1098-3,0l-1.004-0.5618 l-2.8295,3.0328l-2.2612,3.2599l-1.5459,3.005l-1.199,3.265l-0.8482,3.8116l-0.2314,2.0592L9,34z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M32,47c-1.5469,0.1652-2.6099,0.7611-3,1c-0.7033,0.4307-1.5549,0.9523-2,2c-0.4653,1.0953-0.2139,2.1245,0,3 c0.2472,1.012,0.4286,1.7547,1,2c0.7282,0.3127,1.2331,0.4499,3,0c0.7713-0.1964,1.9404-0.4941,3,0c0.9949,0.464,0.8162,0.1239,2,1 c0.4182,0.3095,1.5387,1.1387,3,1c1.2722-0.1208,2.4038-0.9373,3-2c0.7448-1.3275,0.5882-2.9215,0-4 c-0.8341-1.5294-2.0909-1.2053-3-3c-0.4124-0.8142-0.3632-1.2944-1-2c-0.6519-0.7223-1.6523-1.2702-2-1 c-0.4014,0.312,0.4546,1.413,0,2C35.5139,47.6277,34.2306,46.7618,32,47z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M27,41c-1.0128,0.5427-1.9557,1.547-2,2c-0.0252,0.2579,0.3162,0.5088,1,1c1.0589,0.7607,1.0884,1.8078,1.5,1.6667 c0.5548-0.1901,1.3464-1.7906,2.0426-2.8333c0.814-1.2191,3.0778-1.1972,3.2908-2.0833C33.0298,39.9323,30.613,38.0735,30,38 C29.1395,37.8969,29.0017,39.9274,27,41z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M9,34c0.5363,0.13,2.3029,0.3956,3,1c0.8804,0.7633-0.0786,1.4353,1,3c0.8754,1.2699,1.4379,3.0859,2,3 c0.7427-0.1134,0.5561-2.6591,2-4c0.4647-0.4316,1.2271-2.1396,2-2c1.4918,0.2695,1.2206,3.3712,3,4 c1.0358,0.366,2.3338,0.7411,3,0c0.8521-0.9479,0.3369-1.7146,1-3c0.8275-1.6039,2.0751-1.2738,4-3 c2.0099-1.8025-0.7353-2.7141,1-4c2.0988-1.5552,4.5219-0.4686,6-2c1.3787-1.4284-0.4493-2.7987,1-4 c0.6379-0.5287,3.0773-0.4945,6-1c1.2827-0.2218,2.239,0.4398,4,0c1.4183-0.3542,4.0643-2.2649,4-3 c-0.0632-0.7224-1.6832-0.9777-2-1c-2.0169-0.1422-2.2701,0.1908-4,0c-1.9902-0.2195-1.9509-0.6928-4-1 c-0.9448-0.1416-1.0863-0.061-5,0c-2.2653,0.0353-3.4099,0.0519-4,0c-2.562-0.2253-4.642-0.8844-5-1 c-2.0319-0.6559-2.0007-0.9771-3-1c-1.5103-0.0345-2.1089,0.6871-4,1c-1.2519,0.2071-2.313,0.1098-3,0"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M32,47c-1.5469,0.1652-2.6099,0.7611-3,1c-0.7033,0.4307-1.5549,0.9523-2,2c-0.4653,1.0953-0.2139,2.1245,0,3 c0.2472,1.012,0.4286,1.7547,1,2c0.7282,0.3127,1.2331,0.4499,3,0c0.7713-0.1964,1.9404-0.4941,3,0c0.9949,0.464,0.8162,0.1239,2,1 c0.4182,0.3095,1.5387,1.1387,3,1c1.2722-0.1208,2.4038-0.9373,3-2c0.7448-1.3275,0.5882-2.9215,0-4 c-0.8341-1.5294-2.0909-1.2053-3-3c-0.4124-0.8142-0.3632-1.2944-1-2c-0.6519-0.7223-1.6523-1.2702-2-1 c-0.4014,0.312,0.4546,1.413,0,2C35.5139,47.6277,34.2306,46.7618,32,47z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M27,41c-1.0128,0.5427-1.9557,1.547-2,2c-0.0252,0.2579,0.3162,0.5088,1,1c1.0589,0.7607,1.0884,1.8078,1.5,1.6667 c0.5548-0.1901,1.3464-1.7906,2.0426-2.8333c0.814-1.2191,3.0778-1.1972,3.2908-2.0833C33.0298,39.9323,30.613,38.0735,30,38 C29.1395,37.8969,29.0017,39.9274,27,41z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M9,34c0.5363,0.13,2.3029,0.3956,3,1c0.8804,0.7633-0.0786,1.4353,1,3c0.8754,1.2699,1.4379,3.0859,2,3 c0.7427-0.1134,0.5561-2.6591,2-4c0.4647-0.4316,1.2271-2.1396,2-2c1.4918,0.2695,1.2206,3.3712,3,4 c1.0358,0.366,2.3338,0.7411,3,0c0.8521-0.9479,0.3369-1.7146,1-3c0.8275-1.6039,2.0751-1.2738,4-3 c2.0099-1.8025-0.7353-2.7141,1-4c2.0988-1.5552,4.5219-0.4686,6-2c1.3787-1.4284-0.4493-2.7987,1-4 c0.6379-0.5287,3.0773-0.4945,6-1c1.2827-0.2218,2.239,0.4398,4,0c1.4183-0.3542,4.0643-2.2649,4-3 c-0.0632-0.7224-1.6832-0.9777-2-1c-2.0169-0.1422-2.2701,0.1908-4,0c-1.9902-0.2195-1.9509-0.6928-4-1 c-0.9448-0.1416-1.0863-0.061-5,0c-2.2653,0.0353-3.4099,0.0519-4,0c-2.562-0.2253-4.642-0.8844-5-1 c-2.0319-0.6559-2.0007-0.9771-3-1c-1.5103-0.0345-2.1089,0.6871-4,1c-1.2519,0.2071-2.313,0.1098-3,0"/>
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1824173
--- /dev/null
+++ b/static/openmoji-svg-color/1F310.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#92D3F5" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36,8v56c-8.5604,0-15.5-12.536-15.5-28S27.4396,8,36,8c8.5604,0,15.5,12.536,15.5,28S44.5604,64,36,64"/>
+    <line x1="64" x2="8" y1="36" y2="36" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="60" x2="12" y1="22" y2="22" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="60" x2="12" y1="50" y2="50" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e94d17d
--- /dev/null
+++ b/static/openmoji-svg-color/1F311.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <circle cx="36" cy="36" r="28" fill="#000000" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#3f3f3f" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3e63de8
--- /dev/null
+++ b/static/openmoji-svg-color/1F312.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <path fill="#000000" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m 36 8 a 28 28 0 0 1 4.69 .4 28 28 0 0 0 -4.69 -.4 z m -1.32 .09 a 28 28 0 0 0 -26.68 27.91 28 28 0 0 0 20.49 26.96 28 28 0 0 0 26.51 -27.96 28.01 28.01 0 0 0 -20.32 -26.91 z m 6.12 .33 a 28 28 0 0 1 4.48 1.17 28 28 0 0 0 -4.48 -1.17 z m 4.65 1.23 a 28 28 0 0 1 4.18 1.9 28 28 0 0 0 -4.18 -1.9 z m 4.35 2 a 28 28 0 0 1 3.81 2.6 28 28 0 0 0 -3.81 -2.6 z m 3.92 2.69 a 28 28 0 0 1 3.36 3.24 28 28 0 0 0 -3.36 -3.24 z m 3.4 3.29 a 28 28 0 0 1 2.77 3.79 28 28 0 0 0 -2.77 -3.79 z m 2.81 3.85 a 28 28 0 0 1 2.07 4.16 28 28 0 0 0 -2.07 -4.16 z m 2.13 4.32 a 28 28 0 0 1 1.32 4.43 28 28 0 0 0 -1.32 -4.43 z m 1.35 4.58 a 28 28 0 0 1 .55 4.6 28 28 0 0 0 -.55 -4.6 z m .56 4.73 a 28 28 0 0 1 -.24 4.62 28 28 0 0 0 .26 -3.73 28 28 0 0 0 -.02 -.89 z m -.33 5.11 a 28 28 0 0 1 -.85 3.75 28 28 0 0 0 .85 -3.75 z m -1.27 5.01 a 28 28 0 0 1 -1.19 2.89 28 28 0 0 0 1.19 -2.89 z m -1.79 4.1 a 28 28 0 0 1 -2.06 3.26 28 28 0 0 0 2.06 -3.26 z m -2.32 3.65 a 28 28 0 0 1 -2.89 3.2 28 28 0 0 0 2.89 -3.2 z m -3.81 4.01 a 28 28 0 0 1 -2.51 1.97 28 28 0 0 0 2.51 -1.97 z m -3.64 2.72 a 28 28 0 0 1 -3.03 1.64 28 28 0 0 0 3.03 -1.64 z m -3.84 2.04 a 28 28 0 0 1 -4.1 1.38 28 28 0 0 0 4.1 -1.38 z m -18.4 1.25 a 28 28 0 0 0 4.24 .8 28 28 0 0 1 -4.24 -.8 z m 13.29 .33 a 28 28 0 0 1 -3.28 .51 28 28 0 0 0 3.28 -.51 z m -7.88 .55 a 28 28 0 0 0 2.01 .13 28 28 0 0 0 1.2 -.08 28 28 0 0 1 -3.21 -.05 z"/>
+  </g>
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#3f3f3f" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#fcea2b" d="M55,35A28.001,28.001,0,0,1,28.4535,62.9626,27.9995,27.9995,0,1,0,36,8q-.7312,0-1.4535.0374A28.0059,28.0059,0,0,1,55,35Z"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M55,35A28.001,28.001,0,0,1,28.4535,62.9626,27.9995,27.9995,0,1,0,36,8q-.7312,0-1.4535.0374A28.0059,28.0059,0,0,1,55,35Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ba5a0e6
--- /dev/null
+++ b/static/openmoji-svg-color/1F313.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <path fill="#000000" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8,36A28,28,0,0,0,36,64V8A28,28,0,0,0,8,36Z"/>
+  </g>
+  <g id="color">
+    <path fill="#fcea2b" d="M49.4515,44.8757a1.5009,1.5009,0,0,0,0-3,1.5009,1.5009,0,0,0,0,3Z"/>
+    <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M64,36A28,28,0,0,0,36,8V64A28,28,0,0,0,64,36Z"/>
+    <path fill="#3f3f3f" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8,36A28,28,0,0,0,36,64V8A28,28,0,0,0,8,36Z"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M64,36A28,28,0,0,0,36,8V64A28,28,0,0,0,64,36Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0abe704
--- /dev/null
+++ b/static/openmoji-svg-color/1F314.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <path fill="#000000" d="M17,37A28.001,28.001,0,0,1,43.5465,9.0374,27.9995,27.9995,0,1,0,36,64q.7312,0,1.4535-.0374A28.0059,28.0059,0,0,1,17,37Z"/>
+  </g>
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fcea2b" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#3f3f3f" d="M17,37A28.001,28.001,0,0,1,43.5465,9.0374,27.9995,27.9995,0,1,0,36,64q.7312,0,1.4535-.0374A28.0059,28.0059,0,0,1,17,37Z"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17,37A28.001,28.001,0,0,1,43.5465,9.0374,27.9995,27.9995,0,1,0,36,64q.7312,0,1.4535-.0374A28.0059,28.0059,0,0,1,17,37Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c7ea383
--- /dev/null
+++ b/static/openmoji-svg-color/1F315.svg
@@ -0,0 +1,8 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0a923cf
--- /dev/null
+++ b/static/openmoji-svg-color/1F316.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <path fill="#000000" d="M55,35A28.001,28.001,0,0,1,28.4535,62.9626,27.9995,27.9995,0,1,0,36,8q-.7312,0-1.4535.0374A28.0059,28.0059,0,0,1,55,35Z"/>
+  </g>
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fcea2b" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#3f3f3f" d="M55,35A28.001,28.001,0,0,1,28.4535,62.9626,27.9995,27.9995,0,1,0,36,8q-.7312,0-1.4535.0374A28.0059,28.0059,0,0,1,55,35Z"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M55,35A28.001,28.001,0,0,1,28.4535,62.9626,27.9995,27.9995,0,1,0,36,8q-.7312,0-1.4535.0374A28.0059,28.0059,0,0,1,55,35Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..090e6c3
--- /dev/null
+++ b/static/openmoji-svg-color/1F317.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <path fill="#000000" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M64,36A28,28,0,0,0,36,8V64A28,28,0,0,0,64,36Z"/>
+  </g>
+  <g id="color">
+    <path fill="#fcea2b" d="M21.5485,30.1243a1.5009,1.5009,0,0,0,0-3,1.5009,1.5009,0,0,0,0,3Z"/>
+    <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" d="M8,36A28,28,0,0,0,36,64V8A28,28,0,0,0,8,36Z"/>
+    <path fill="#3f3f3f" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M64,36A28,28,0,0,0,36,8V64A28,28,0,0,0,64,36Z"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8,36A28,28,0,0,0,36,64V8A28,28,0,0,0,8,36Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..16b49ed
--- /dev/null
+++ b/static/openmoji-svg-color/1F318.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="line-supplement">
+    <path fill="#000000" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m 36 8 a 28 28 0 0 0 -.38 .03 28 28 0 0 1 3.77 .19 28 28 0 0 0 -3.39 -.21 z m -1.73 .11 a 28 28 0 0 0 -2.55 .25 28 28 0 0 1 2.55 -.25 z m 5.26 .12 a 28 28 0 0 1 3.99 .8 28 28 0 0 0 -3.99 -.8 z m -9.33 .44 a 28 28 0 0 0 -2.33 .59 28 28 0 0 1 2.33 -.59 z m 13.34 .37 a 28 28 0 0 0 -26.54 27.96 28.01 28.01 0 0 0 20.32 26.91 28 28 0 0 0 26.68 -27.91 28 28 0 0 0 -20.46 -26.96 z m -17.17 .72 a 28 28 0 0 0 -2.19 .92 28 28 0 0 1 2.19 -.92 z m -3.62 1.62 a 28 28 0 0 0 -2.07 1.25 28 28 0 0 1 2.07 -1.25 z m -3.33 2.09 a 28 28 0 0 0 -2.01 1.66 28 28 0 0 1 2.01 -1.66 z m -3.01 2.54 a 28 28 0 0 0 -2.51 2.8 28 28 0 0 1 2.51 -2.8 z m -2.61 2.91 a 28 28 0 0 0 -2.16 3.28 28 28 0 0 1 2.16 -3.28 z m -2.73 4.43 a 28 28 0 0 0 -1.11 2.4 28 28 0 0 1 1.11 -2.4 z m -1.6 3.83 a 28 28 0 0 0 -.68 2.33 28 28 0 0 1 .68 -2.33 z m -.99 3.89 a 28 28 0 0 0 -.32 2.33 28 28 0 0 1 .32 -2.33 z m -.43 3.94 a 28 28 0 0 0 -.06 .97 28 28 0 0 0 .09 1.39 28 28 0 0 1 -.03 -2.36 z m .13 3.95 a 28 28 0 0 0 .4 2.44 28 28 0 0 1 -.4 -2.44 z m .68 3.86 a 28 28 0 0 0 .88 2.76 28 28 0 0 1 -.88 -2.76 z m 1.21 3.74 a 28 28 0 0 0 1.72 3.51 28 28 0 0 1 -1.72 -3.51 z m 2.27 4.32 a 28 28 0 0 0 1.69 2.43 28 28 0 0 1 -1.69 -2.43 z m 2.63 3.51 a 28 28 0 0 0 1.7 1.81 28 28 0 0 1 -1.7 -1.81 z m 2.9 2.86 a 28 28 0 0 0 1.85 1.46 28 28 0 0 1 -1.85 -1.46 z m 3.21 2.37 a 28 28 0 0 0 2.01 1.15 28 28 0 0 1 -2.01 -1.15 z m 3.47 1.87 a 28 28 0 0 0 2.24 .87 28 28 0 0 1 -2.24 -.87 z m 3.68 1.36 a 28 28 0 0 0 2.6 .59 28 28 0 0 1 -2.6 -.59 z m 3.84 .83 a 28 28 0 0 0 3.91 .29 28 28 0 0 1 -3.91 -.29 z"/>
+  </g>
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#3f3f3f" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#fcea2b" d="M17,37A28.001,28.001,0,0,1,43.5465,9.0374,27.9995,27.9995,0,1,0,36,64q.7312,0,1.4535-.0374A28.0059,28.0059,0,0,1,17,37Z"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17,37A28.001,28.001,0,0,1,43.5465,9.0374,27.9995,27.9995,0,1,0,36,64q.7312,0,1.4535-.0374A28.0059,28.0059,0,0,1,17,37Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..51596eb
--- /dev/null
+++ b/static/openmoji-svg-color/1F319.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" stroke="none" d="M7.3634,42.4095c4.5525,6.1703,11.874,10.1726,20.1303,10.1726c13.8071,0,25-11.1929,25-25 c0-8.5226-4.2646-16.0492-10.7763-20.5621c13.0383,2.8385,22.7812,14.4426,22.7812,28.3317c0,16.0163-12.9837,29-29,29 C21.9109,64.3517,10.5097,55.0229,7.3634,42.4095z"/>
+    <path fill="#F1B31C" stroke="none" d="M45.8373,9.2108c8.25,4.25,16.1946,11.8724,16.1946,24.6742c0,15.4494-12.5242,27.9735-27.9735,27.9735 c-9.2431,0-19.7524-4.8353-24.294-15.5436c0,0,4.3805,18.6568,25.7189,18.665c19.327,0.0074,28.0419-20.6218,28.0419-20.6218 C70.033,12.3815,45.8373,9.2108,45.8373,9.2108z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M7.3634,42.4095c4.5525,6.1703,11.874,10.1726,20.1303,10.1726c13.8071,0,25-11.1929,25-25 c0-8.5226-4.2646-16.0492-10.7763-20.5621c13.0383,2.8385,22.7812,14.4426,22.7812,28.3317c0,16.0163-12.9837,29-29,29 C21.9109,64.3517,10.5097,55.0229,7.3634,42.4095z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0a7ea42
--- /dev/null
+++ b/static/openmoji-svg-color/1F31A.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#3f3f3f" stroke="#3f3f3f" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path stroke="#000" stroke-miterlimit="10" stroke-width="0.204" opacity="0.4" d="M29,62c20.0033,0,16.6634-52,16.6634-52s24.9582,7,16.6388,35S13.4011,62,29,62Z"/>
+    <circle cx="26.5" cy="27.5" r="5" fill="#fff" stroke="none" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="45.5" cy="27.5" r="5" fill="#fff" stroke="none"/>
+  </g>
+  <g id="line">
+    <rect x="34" y="37" width="4" height="2" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.25"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,64A28,28,0,0,1,36,8"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,8a28,28,0,0,1,0,56"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,39.5c1.1046,0,2.5-.8954,2.5-2H34A2,2,0,0,0,36,39.5Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m26.92 45.92s3.705 3.389 9.652 3.771c6.942 0.3136 10.42-3.695 10.42-3.695"/>
+    <circle cx="26.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="45.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="45.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="47.75" cy="27.75" r="1.75" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="26.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="28.75" cy="27.75" r="1.75" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..68914ee
--- /dev/null
+++ b/static/openmoji-svg-color/1F31B.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" d="M27.9578,51.4548c0,0-5.0913-2.0786-1.8269-4.9398c-0.9642-0.7385-1.334-1.4501-0.1731-2.7025 c2.6458-2.8542-0.5-3.4375-0.5-3.4375S17.5203,39.8125,21.8953,35c2.595-2.8546,4.0848-6.1183,4.9173-8.5959 c0.8125-2.4181,0.6538-5.0501-0.4059-7.3704c-2.2514-4.9298-5.4489-9.1764-9.4854-12.8921 c-0.6151-0.5663-0.3024-1.597,0.5234-1.728C19.1465,4.1435,20.8913,4,22.6711,4c18.0768,0,32.7308,14.3269,32.7308,32 S40.7478,68,22.6711,68c-1.78,0-3.5251-0.1436-5.227-0.4136c-0.9135-0.145-1.1599-1.3244-0.3778-1.8182 C24.9155,60.8128,27.5252,55.8475,27.9578,51.4548"/>
+    <path fill="#F1B31C" d="M17.9615,4.3223C19.731,4.019,21.2157,4,23.0717,4c17.6731,0,32,14.3269,32,32s-14.3269,32-32,32 c-1.719,0-3.4063-0.1355-5.0518-0.3965c0,0-0.6874-0.3097-0.7793-1.1742c0,0,3.0381,0.3419,4.6022,0.3419 c16.9944,0,30.7711-13.7767,30.7711-30.7711S38.8372,5.2289,21.8428,5.2289c-1.6727,0-3.3142,0.1335-4.9145,0.3903"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="27.25" r="3"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M35.6964,46c-1.7512,1.9458-4.0751,2.277-5.7064,2.2156c-1.3131-0.0494-2.6027-0.445-3.646-1.244 c-0.9642-0.7385-1.8491-1.9067-0.6881-3.1591c2.7753-3.0819-0.5-3.4375-0.5-3.4375S17.2184,39.8125,21.5934,35 c2.5981-2.8579,4.0883-6.126,4.9203-8.6047c0.8098-2.4127,0.6517-5.0381-0.405-7.3533c-2.1099-4.6228-5.0514-8.645-8.7365-12.192 c-0.9229-0.8884-0.4162-2.431,0.8548-2.5905C19.5833,4.0893,20.9654,4,22.3692,4C40.4459,4,55.1,18.3269,55.1,36 S40.4459,68,22.3691,68c-1.2874,0-2.5566-0.0751-3.8043-0.2188c-1.3842-0.1595-1.8611-1.9482-0.7056-2.7269 c7-4.717,9.3849-9.4177,9.7967-13.5995 M25.829,46.515c-3.2644,2.8612,1.8269,4.9398,1.8269,4.9398"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31.2188,19.875c0,0,4.7812-3,9.5625,1.9062"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ccbf896
--- /dev/null
+++ b/static/openmoji-svg-color/1F31C.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" stroke="none" d="M44.0422,51.4548c0.4326,4.3927,3.0423,9.3581,10.8915,14.3134c0.7821,0.4938,0.5357,1.6732-0.3778,1.8182 C52.854,67.8564,51.109,68,49.3289,68c-18.0768,0-32.7308-14.3269-32.7308-32c0-17.6731,14.6541-32,32.7308-32 c1.7798,0,3.5246,0.1435,5.2263,0.4135c0.8258,0.131,1.1385,1.1617,0.5234,1.728c-4.0365,3.7157-7.234,7.9623-9.4854,12.8921 c-1.0597,2.3204-1.2184,4.9524-0.4059,7.3704c0.8325,2.4776,2.3223,5.7414,4.9173,8.5959c4.375,4.8125-3.5625,5.375-3.5625,5.375 s-3.1458,0.5833-0.5,3.4375c1.161,1.2524,0.7912,1.964-0.1731,2.7025C49.1335,49.3761,44.0422,51.4548,44.0422,51.4548"/>
+    <path fill="#F1B31C" stroke="none" d="M54.0385,4.3223C52.269,4.019,50.7843,4,48.9283,4c-17.6731,0-32,14.3269-32,32s14.3269,32,32,32 c1.719,0,3.4063-0.1355,5.0518-0.3965c0,0,0.6874-0.3097,0.7793-1.1742c0,0-3.0381,0.3419-4.6022,0.3419 c-16.9944,0-30.7711-13.7767-30.7711-30.7711S33.1628,5.2289,50.1572,5.2289c1.6727,0,3.3142,0.1335,4.9145,0.3903"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="36" cy="27.25" r="3" fill="#000000" stroke="none"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44.3441,51.4548c0.4118,4.1818,2.7967,8.8825,9.7967,13.5995c1.1555,0.7786,0.6786,2.5674-0.7056,2.7269 C52.1874,67.9249,50.9182,68,49.6308,68C31.5541,68,16.9,53.6731,16.9,36c0-17.6731,14.6541-32,32.7308-32 c1.4038,0,2.7859,0.0893,4.1422,0.2595c1.271,0.1595,1.7777,1.7021,0.8548,2.5905c-3.6851,3.5471-6.6266,7.5692-8.7365,12.192 c-1.0567,2.3153-1.2149,4.9406-0.405,7.3533c0.832,2.4787,2.3222,5.7467,4.9203,8.6047c4.375,4.8125-3.5625,5.375-3.5625,5.375 s-3.1458,0.5833-0.5,3.4375c1.161,1.2524,0.2761,2.4207-0.6881,3.1591c-1.0432,0.7989-2.3329,1.1945-3.646,1.244 C40.3787,48.277,38.0549,47.9458,36.3036,46 M44.3441,51.4548c0,0,5.0913-2.0786,1.8269-4.9398"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40.7812,19.875c0,0-4.7812-3-9.5625,1.9062"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2c55a6d
--- /dev/null
+++ b/static/openmoji-svg-color/1F31D.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="#f1b31c" stroke-miterlimit="10" stroke-width="0.204" opacity="0.4" d="M29,62c20.0033,0,16.6634-52,16.6634-52s24.9582,7,16.6388,35S13.4011,62,29,62Z"/>
+    <circle cx="26.5" cy="27.5" r="5" fill="#fff" stroke="none"/>
+    <circle cx="45.5" cy="27.5" r="5" fill="#fff" stroke="none"/>
+  </g>
+  <g id="line">
+    <rect x="34" y="37" width="4" height="2" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.25"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,64A28,28,0,0,1,36,8"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,8a28,28,0,0,1,0,56"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,39.5c1.1046,0,2.5-.8954,2.5-2H34A2,2,0,0,0,36,39.5Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m26.92 45.92s3.705 3.389 9.652 3.771c6.942 0.3136 10.42-3.695 10.42-3.695"/>
+    <circle cx="26.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="45.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="45.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="43.45" cy="27.75" r="1.75" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="26.5" cy="27.5" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round"/>
+    <circle cx="24.25" cy="27.75" r="1.75" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2a23424
--- /dev/null
+++ b/static/openmoji-svg-color/1F31E.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <polygon fill="#FCEA2B" stroke="none" points="36,10 31.4483,4.3216 28.6708,11.0465 22.7014,6.8864 21.9435,14.1231 15.0427,11.817 16.3488,18.9749 9.0779,18.6961 12.3422,25.1984 5.2887,26.9833 10.2616,32.295 4,36 10.2616,39.7051 5.2889,45.0172 12.3426,46.8026 9.0787,53.3052 16.3497,53.0261 15.044,60.1842 21.9445,57.8775 22.7026,65.1141 28.6713,60.9536 31.4484,67.6784 36,62 40.5517,67.6784 43.3292,60.9535 49.2986,65.1135 50.0565,57.8769 56.9573,60.183 55.6512,53.0251 62.9221,53.3039 59.6578,46.8016 66.7113,45.0167 61.7384,39.705 68,36 61.7384,32.2949 66.7111,26.9828 59.6573,25.1974 62.9213,18.6948 55.6503,18.9739 56.956,11.8158 50.0555,14.1225 49.2974,6.8859 43.3287,11.0464 40.5516,4.3216"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="36,10 31.4483,4.3216 28.6708,11.0465 22.7014,6.8864 21.9435,14.1231 15.0427,11.817 16.3488,18.9749 9.0779,18.6961 12.3422,25.1984 5.2887,26.9833 10.2616,32.295 4,36 10.2616,39.7051 5.2889,45.0172 12.3426,46.8026 9.0787,53.3052 16.3497,53.0261 15.044,60.1842 21.9445,57.8775 22.7026,65.1141 28.6713,60.9536 31.4484,67.6784 36,62 40.5517,67.6784 43.3292,60.9535 49.2986,65.1135 50.0565,57.8769 56.9573,60.183 55.6512,53.0251 62.9221,53.3039 59.6578,46.8016 66.7113,45.0167 61.7384,39.705 68,36 61.7384,32.2949 66.7111,26.9828 59.6573,25.1974 62.9213,18.6948 55.6503,18.9739 56.956,11.8158 50.0555,14.1225 49.2974,6.8859 43.3287,11.0464 40.5516,4.3216"/>
+    <circle cx="27.8456" cy="33.789" r="3" fill="#000000" stroke="none"/>
+    <circle cx="44.1544" cy="33.789" r="3" fill="#000000" stroke="none"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43.6763,46.3816c-2.1347,1.5846-4.8139,2.5518-7.6766,2.5518c-2.9019,0-5.5262-0.9282-7.6759-2.5523"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31.7748,23.0042c0,0-4.7748-2.6003-9.5496,1.6523"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40.2252,23.0042c0,0,4.7748-2.6003,9.5496,1.6523"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c77078d
--- /dev/null
+++ b/static/openmoji-svg-color/1F31F.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <polygon fill="#FCEA2B" stroke="none" points="35.9704,6.0368 27.7688,22.6704 9.4169,25.3441 22.702,38.2843 19.5737,56.5642 35.9859,47.928 52.4045,56.552 49.2626,38.2744 62.5382,25.3244 44.1842,22.6643"/>
+    <polygon fill="#FCEA2B" stroke="none" points="14.1635,41.4594 4.8592,42.0365 6.4763,46.7329"/>
+    <polygon fill="#FCEA2B" stroke="none" points="57.8365,40.9794 67.1408,41.5565 65.5237,46.2529"/>
+    <polygon fill="#FCEA2B" stroke="none" points="22.0721,15.5917 18.648,6.9211 14.6811,9.9103"/>
+    <polygon fill="#FCEA2B" stroke="none" points="50.4002,16.0862 57.9849,10.6662 54.1248,7.5403"/>
+    <polygon fill="#FCEA2B" stroke="none" points="35.9197,56.9779 33.4362,65.9632 38.4032,65.9632"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="35.9248,6.0368 27.7233,22.6704 9.3713,25.3441 22.6564,38.2843 19.5282,56.5642 35.9403,47.928 52.3589,56.552 49.2171,38.2744 62.4926,25.3244 44.1387,22.6643"/>
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="35.932,56.9779 33.4484,65.9632 38.4155,65.9632"/>
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="57.8156,41.0785 65.5937,46.2171 67.1286,41.4932"/>
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="14.1758,41.4594 4.8714,42.0365 6.4885,46.7329"/>
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="50.4125,16.0862 57.9972,10.6662 54.1371,7.5403"/>
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="22.0843,15.5917 18.6602,6.9211 14.6934,9.9103"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ca18b9f
--- /dev/null
+++ b/static/openmoji-svg-color/1F320.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <polygon fill="#FCEA2B" stroke="none" points="16.9962,45.4792 19.7912,54.0814 28.8361,54.0814 21.5186,59.3978 24.3136,68 16.9962,62.6836 9.6787,68 12.4737,59.3978 5.1562,54.0814 14.2011,54.0814"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="16.9962,45.4792 19.7912,54.0814 28.8361,54.0814 21.5186,59.3978 24.3136,68 16.9962,62.6836 9.6787,68 12.4737,59.3978 5.1562,54.0814 14.2011,54.0814"/>
+    <line x1="51.3836" x2="22.0786" y1="13.7727" y2="43.0776" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="32.125" x2="66.8438" y1="38.7188" y2="4" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="34.2307" x2="57.9976" y1="47.757" y2="23.9901" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="26.796" x2="48.421" y1="49.4835" y2="27.8585" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b85227f
--- /dev/null
+++ b/static/openmoji-svg-color/1F321.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fff" d="m35.9709,3.4517h0c-3.0012,0-4.6841,2.4329-4.6841,5.4341v23.106h9.1182l.25-23.106c.0001-3.0012-1.6829-5.4341-4.6841-5.4341Z"/>
+    <path fill="#ea5a47" d="m40.5656,47.4983c3.526,1.8284,6.4344,5.5058,6.4344,9.7445,0,6.0613-4.9249,10.9749-11,10.9749s-11-4.9136-11-10.9749c0-4.2539,3.1375-8.1981,6.6841-10.0196l.0891-18.521s7.572,1.437,8.7737-1.1432l.0187,19.9394Z"/>
+    <path fill="#d22f27" d="m37.0415,29.403c1.6925-.1501,1.2824-.3294,3.4859-1.2412l.0236,18.8285c.0007.5571.182,1.1036.5349,1.5383,2.1678,2.6707,5.2519,5.2117,5.2519,9.0919,0,5.9935-4.9899,10.0365-10.4309,10.0365,0,0,10.1031-7.6096,1.692-16.5858-.3555-.3793-.551-1.2297-.551-1.7749l-.0064-19.8933Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m38.3874,35.9133c-.7217.1599-1.9748.2657-3.3999.2657-2.2364,0-4.0494-.2606-4.0494-.582"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m38.3874,43.6108c-.7217.1599-1.9748.2657-3.3999.2657-2.2364,0-4.0494-.2606-4.0494-.582"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m38.3874,28.2158c-.7217.1599-1.9748.2657-3.3999.2657-2.2364,0-4.0494-.2606-4.0494-.582"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m38.3874,20.5183c-.7217.1599-1.9748.2657-3.3999.2657-2.2364,0-4.0494-.2606-4.0494-.582"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m29.6634,49.4624c1.2934-.9629,1.2755-2.2365,1.2755-2.2365V8.6385c0-2.807,2.2755-5.0825,5.0825-5.0825s5.0825,2.2755,5.0825,5.0825v38.5874s.0052,1.2859,1.2986,2.2488c2.3101,1.8633,3.7879,4.7172,3.7879,7.9162,0,5.614-4.5511,10.1651-10.1651,10.1651s-10.1651-4.5511-10.1651-10.1651c0-1.5355.3405-2.9915.95-4.2966"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m38.3874,12.8208c-.7217.1599-1.9748.2657-3.3999.2657-2.2364,0-4.0494-.2606-4.0494-.582"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5d7af05
--- /dev/null
+++ b/static/openmoji-svg-color/1F324.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fcea2b" d="m50.0652,42.7786l.0966-.3192c.9466-3.1267.787-7.2348-.3992-10.2787h0l4.7839-7.9243-9.3366.4142.17-10.1731-8.5672,5.3173-4.4187-9.1046-5.2924,9.1045-7.7357-5.2431-.6612,10.0984-8.6786-.6333,3.8228,9.0305-7.496,3.9345,7.4959,5.7766-4.1548,7.5762,9.6637-.2225-.8114,10.5292,8.5551-4.6302,22.9639-13.2524Z"/>
+    <path fill="#fff" d="m34.791,46.6066c-.0241.2749-.2468.4973-.5226.5268-3.3432.3581-5.9145,3.65-5.9145,7.6568,0,4.2461,2.9447,7.6882,6.5771,7.6882h25.0744c3.9908,0,7.2259-3.6376,7.2259-8.1248,0-4.3002-2.9712-7.8202-6.7312-8.106-.2877-.0219-.521-.2232-.5758-.505-.84-4.3132-4.7148-7.5546-9.2958-7.5546-2.9773,0-5.6294,1.3479-7.3517,3.4921-.1683.2095-.4507.3055-.6992.2013-.6627-.2779-1.3626-.4124-2.1458-.4124-2.9594.0002-5.3886,2.2587-5.6408,5.1376Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m24.4645,53.5202c-6.1162-2.9451-10.3373-9.202-10.3373-16.4446,0-10.0744,8.1669-18.2414,18.2414-18.2414,9.0895,0,16.6262,6.648,18.013,15.347"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="24.5472 56.9821 18.5628 61.0249 19.3576 50.132 8.4649 50.9267 14.5909 41.8884 4.7686 37.1215 14.591 32.3545 8.4653 23.3157 19.3582 24.1105 18.5635 13.2178 27.6018 19.3438 32.3686 9.5215 37.1357 19.3439 46.1745 13.2182 45.3797 24.111 56.2724 23.3164 50.1464 32.3547"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m34.791,46.6066c-.0241.2749-.2468.4973-.5226.5268-3.3432.3581-5.9145,3.65-5.9145,7.6568,0,4.2461,2.9447,7.6882,6.5771,7.6882h25.0744c3.9908,0,7.2259-3.6376,7.2259-8.1248,0-4.3002-2.9712-7.8202-6.7312-8.106-.2877-.0219-.521-.2232-.5758-.505-.84-4.3132-4.7148-7.5546-9.2958-7.5546-2.9773,0-5.6294,1.3479-7.3517,3.4921-.1683.2095-.4507.3055-.6992.2013-.6627-.2779-1.3626-.4124-2.1458-.4124-2.9594.0002-5.3886,2.2587-5.6408,5.1376Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..78d04b8
--- /dev/null
+++ b/static/openmoji-svg-color/1F325.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fcea2b" d="m18.4581,38.6795c-5.4169-2.5921-8.9028-9.1973-7.2499-12.8243,1.6957-3.721,6.3132-8.2657,12.5546-6.0993s6.4721,8.2507,6.4721,8.2507l-.5935,2.6219,4.6867-3.895c.6492-.6562.5418-2.3959-.5453-2.0062l-4.9426-1.5867,1.5132-7.2451-6.5478,3.4556-3.0298-6.7554-3.2654,6.6472-6.424-3.6849,1.2657,7.2946-7.3608.7964,5.3058,5.1605-5.4825,4.9712,7.325,1.0555-.3472,5.3113c.0598,1.2459,1.2922,1.5423,2.1236,1.0765l4.5423-2.5447Z"/>
+    <path fill="#fcea2b" d="m30.2348,28.0066c-.4926-4.9479-4.6676-8.8118-9.7451-8.8118-5.409,0-9.7937,4.3848-9.7937,9.7937,0,3.8896,2.2674,7.2497,5.5527,8.8303l2.2094.8606,3.4979-.3638,1.8196-4.6131,4.6969-2.9142,1.4821-.4156.2802-2.3663Z"/>
+    <path fill="#fff" d="m22.3417,37.7133c-.0332.38-.3412.6874-.7224.7283-4.6214.495-8.176,5.0455-8.176,10.5845,0,5.8696,4.0705,10.6278,9.0919,10.6278h34.6617c5.5166,0,9.9888-5.0285,9.9888-11.2313,0-5.9444-4.1072-10.8103-9.3049-11.2054-.3977-.0302-.7201-.3086-.796-.698-1.1611-5.9624-6.5175-10.443-12.8501-10.443-4.1156,0-7.7819,1.8632-10.1626,4.8274-.2326.2897-.6231.4224-.9665.2783-.9161-.3842-1.8837-.5702-2.9663-.5702-4.091,0-7.4489,3.1221-7.7976,7.1017Z"/>
+  </g>
+  <g id="line">
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7258" points="13.5326 40.4503 10.6262 42.0816 12.1393 34.8365 4.8144 33.781 10.2968 28.8098 4.9911 23.6493 12.3518 22.8528 11.0862 15.5581 17.5102 19.243 20.7757 12.5959 23.8054 19.3513 30.3533 15.8956 28.8401 23.1407 36.1651 24.1962 33.5091 26.3602"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7258" d="m16.2487,37.8189c-3.2852-1.5807-5.5527-4.9407-5.5527-8.8303,0-5.409,4.3848-9.7937,9.7937-9.7937,5.0775,0,9.2525,3.8639,9.7451,8.8118"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8166" d="m22.3417,37.7133c-.0332.38-.3412.6874-.7224.7283-4.6214.495-8.176,5.0455-8.176,10.5845,0,5.8696,4.0705,10.6278,9.0919,10.6278h34.6617c5.5166,0,9.9888-5.0285,9.9888-11.2313,0-5.9444-4.1072-10.8103-9.3049-11.2054-.3977-.0302-.7201-.3086-.796-.698-1.1611-5.9624-6.5175-10.443-12.8501-10.443-4.1156,0-7.7819,1.8632-10.1626,4.8274-.2326.2897-.6231.4224-.9665.2783-.9161-.3842-1.8837-.5702-2.9663-.5702-4.091,0-7.4489,3.1221-7.7976,7.1017Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b8b3e69
--- /dev/null
+++ b/static/openmoji-svg-color/1F326.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fcea2b" d="m18.1614,32.7701l-3.2872,1.7201c-.867.4537-2.0118.0607-2.2652-.8845-.0153-.0572-.0232-.1085-.0222-.1515l.1368-5.8167-8.0643-1.162,6.0358-5.473-5.8412-5.6814,8.1036-.8768-1.3933-8.0309,7.0724,4.0568,3.595-7.3181,3.3356,7.4372,7.2087-3.8045-1.6659,7.9764,5.994,1.6251c.9561.2592,1.2279,1.4855.4708,2.1244l-4.1241,3.4802,5.8187,5.7815-8.1229.6762,1.1943,8.063-6.9703-4.2205-4.6578,7.5588-2.5514-7.0798Z"/>
+    <path fill="#d0cfce" d="m25.6193,30.5602c-.031.3535-.3174.6396-.6721.6775-4.2996.4606-7.6067,4.6942-7.6067,9.8474,0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492,0-5.5305-3.8212-10.0575-8.6569-10.4251-.37-.0281-.67-.2871-.7406-.6494-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159-3.829,0-7.2399,1.7335-9.4549,4.4912-.2164.2695-.5797.3929-.8992.2589-.8523-.3575-1.7525-.5304-2.7597-.5304-3.806.0001-6.9302,2.9047-7.2546,6.6073Z"/>
+    <path fill="#92d3f5" d="m28.6934,59.2233c-.7516,1.1632-2.1343,1.6031-3.0902.9854s-1.1216-2.0613-.37-3.2245c0,0,.8943-1.4257,4.0066-3.0386,0,0,.6168-.3534.5724.3205-.1914,3.5001-1.1188,4.9572-1.1188,4.9572"/>
+    <path fill="#61b2e4" d="m29.1527,54.0877c.5441,1.6504-.7227,4.9495-.7227,4.9495-.9587,1.3692-2.1337,1.5027-3.1418.7967-.0001,0,2.7195-.9711,3.8645-5.7462"/>
+    <path fill="#92d3f5" d="m58.798,59.2233c-.7516,1.1632-2.1343,1.6031-3.0902.9854s-1.1216-2.0613-.37-3.2245c0,0,.8943-1.4257,4.0066-3.0386,0,0,.6168-.3534.5724.3205-.1914,3.5001-1.1188,4.9572-1.1188,4.9572"/>
+    <path fill="#61b2e4" d="m59.2573,54.0877c.5441,1.6504-.7227,4.9495-.7227,4.9495-.9587,1.3692-2.1337,1.5027-3.1418.7967-.0001,0,2.7195-.9711,3.8645-5.7462"/>
+    <path fill="#92d3f5" d="m43.7457,59.2233c-.7516,1.1632-2.1343,1.6031-3.0902.9854s-1.1216-2.0613-.37-3.2245c0,0,.8943-1.4257,4.0066-3.0386,0,0,.6168-.3534.5724.3205-.1914,3.5001-1.1188,4.9572-1.1188,4.9572"/>
+    <path fill="#61b2e4" d="m44.205,54.0877c.5441,1.6504-.7227,4.9495-.7227,4.9495-.9587,1.3692-2.1337,1.5027-3.1418.7967-.0001,0,2.7195-.9711,3.8645-5.7462"/>
+    <path fill="#92d3f5" d="m35.7196,66.7944c-.7516,1.1632-2.1343,1.603-3.0902.9854-.9559-.6177-1.1216-2.0613-.37-3.2245,0,0,.8943-1.4257,4.0066-3.0385,0,0,.6168-.3534.5724.3205-.1915,3.5001-1.1188,4.9571-1.1188,4.9571"/>
+    <path fill="#61b2e4" d="m36.1789,61.6589c.5441,1.6504-.7227,4.9495-.7227,4.9495-.9587,1.3692-2.1337,1.5027-3.1418.7967-.0001,0,2.7194-.9711,3.8645-5.7462"/>
+    <path fill="#92d3f5" d="m50.7719,66.7944c-.7516,1.1632-2.1343,1.603-3.0902.9854-.9559-.6177-1.1216-2.0613-.37-3.2245,0,0,.8943-1.4257,4.0066-3.0385,0,0,.6168-.3534.5724.3205-.1915,3.5001-1.1188,4.9571-1.1188,4.9571"/>
+    <path fill="#61b2e4" d="m51.2312,61.6589c.5441,1.6504-.7227,4.9495-.7227,4.9495-.9587,1.3692-2.1337,1.5027-3.1418.7967-.0001,0,2.7195-.9711,3.8645-5.7462"/>
+  </g>
+  <g id="line">
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9" points="14.5238 33.667 11.324 35.463 12.9899 27.4866 4.9255 26.3246 10.9614 20.8516 5.1201 15.1703 13.2238 14.2934 11.8304 6.2625 18.9028 10.3193 22.4979 3.0012 25.8335 10.4384 33.0422 6.634 31.3763 14.6103 39.4406 15.7723 36.5166 18.1549"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9" d="m32.9118,19.9675c-.5423-5.4473-5.1387-9.7012-10.7287-9.7012-5.9549,0-10.7822,4.8274-10.7822,10.7822,0,4.2822,2.4963,7.9814,6.1131,9.7216"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m25.6193,30.5602c-.031.3535-.3174.6396-.6721.6775-4.2996.4606-7.6067,4.6942-7.6067,9.8474,0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492,0-5.5305-3.8212-10.0575-8.6569-10.4251-.37-.0281-.67-.2871-.7406-.6494-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159-3.829,0-7.2399,1.7335-9.4549,4.4912-.2164.2695-.5797.3929-.8992.2589-.8523-.3575-1.7525-.5304-2.7597-.5304-3.806.0001-6.9302,2.9047-7.2546,6.6073Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="m28.6934,59.2233c-.7516,1.1632-2.1343,1.6031-3.0902.9854s-1.1216-2.0613-.37-3.2245c0,0,.8761-1.5078,4.0066-3.0386,0,0,.6168-.3534.5724.3205-.1914,3.5001-1.1188,4.9572-1.1188,4.9572"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="m58.798,59.2233c-.7516,1.1632-2.1343,1.6031-3.0902.9854s-1.1216-2.0613-.37-3.2245c0,0,.8761-1.5078,4.0066-3.0386,0,0,.6168-.3534.5724.3205-.1914,3.5001-1.1188,4.9572-1.1188,4.9572"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="m43.7457,59.2233c-.7516,1.1632-2.1343,1.6031-3.0902.9854s-1.1216-2.0613-.37-3.2245c0,0,.8761-1.5078,4.0066-3.0386,0,0,.6168-.3534.5724.3205-.1914,3.5001-1.1188,4.9572-1.1188,4.9572"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="m35.7196,66.7944c-.7516,1.1632-2.1343,1.603-3.0902.9854-.9559-.6177-1.1216-2.0613-.37-3.2245,0,0,.8761-1.5078,4.0066-3.0385,0,0,.6168-.3534.5724.3205-.1915,3.5001-1.1188,4.9571-1.1188,4.9571"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8" d="m50.7719,66.7944c-.7516,1.1632-2.1343,1.603-3.0902.9854-.9559-.6177-1.1216-2.0613-.37-3.2245,0,0,.8761-1.5078,4.0066-3.0385,0,0,.6168-.3534.5724.3205-.1915,3.5001-1.1188,4.9571-1.1188,4.9571"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cde9b3f
--- /dev/null
+++ b/static/openmoji-svg-color/1F327.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#92D3F5" stroke="none" d="M22.3528,51.6738c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8943-1.4257,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C23.2802,50.2167,22.3528,51.6738,22.3528,51.6738"/>
+    <path fill="#61B2E4" stroke="none" d="M22.8121,46.5382c0.5441,1.6504-0.7227,4.9495-0.7227,4.9495 c-0.9587,1.3692-2.1337,1.5027-3.1418,0.7967C18.9475,52.2845,21.6671,51.3133,22.8121,46.5382"/>
+    <path fill="#92D3F5" stroke="none" d="M52.4574,51.6738c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8943-1.4257,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C53.3848,50.2167,52.4574,51.6738,52.4574,51.6738"/>
+    <path fill="#61B2E4" stroke="none" d="M52.9167,46.5382c0.5441,1.6504-0.7227,4.9495-0.7227,4.9495 c-0.9587,1.3692-2.1337,1.5027-3.1418,0.7967C49.0521,52.2845,51.7717,51.3133,52.9167,46.5382"/>
+    <path fill="#92D3F5" stroke="none" d="M37.4051,51.6738c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8943-1.4257,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C38.3325,50.2167,37.4051,51.6738,37.4051,51.6738"/>
+    <path fill="#61B2E4" stroke="none" d="M37.8644,46.5382c0.5441,1.6504-0.7227,4.9495-0.7227,4.9495 c-0.9587,1.3692-2.1337,1.5027-3.1418,0.7967C33.9998,52.2845,36.7194,51.3133,37.8644,46.5382"/>
+    <path fill="#92D3F5" stroke="none" d="M29.3789,59.2449c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8943-1.4257,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C30.3063,57.7879,29.3789,59.2449,29.3789,59.2449"/>
+    <path fill="#61B2E4" stroke="none" d="M29.8382,54.1094c0.5441,1.6504-0.7227,4.9495-0.7227,4.9495 c-0.9587,1.3692-2.1337,1.5027-3.1418,0.7967C25.9737,59.8556,28.6932,58.8845,29.8382,54.1094"/>
+    <path fill="#92D3F5" stroke="none" d="M44.4312,59.2449c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854s-1.1216-2.0613-0.37-3.2245 c0,0,0.8943-1.4257,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C45.3586,57.7879,44.4312,59.2449,44.4312,59.2449"/>
+    <path fill="#61B2E4" stroke="none" d="M44.8906,54.1094c0.5441,1.6504-0.7227,4.9495-0.7227,4.9495 c-0.9587,1.3692-2.1337,1.5027-3.1418,0.7967C41.026,59.8556,43.7455,58.8845,44.8906,54.1094"/>
+    <path fill="#d0cfce" stroke="none" d="M19.2787,22.3171c-0.031,0.3535-0.3174,0.6396-0.6721,0.6775C14.307,23.4552,11,27.6889,11,32.8421 c0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492c0-5.5305-3.8212-10.0575-8.6569-10.4251 c-0.37-0.0281-0.67-0.2871-0.7406-0.6494c-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159c-3.829,0-7.2399,1.7335-9.4549,4.4912 c-0.2164,0.2695-0.5797,0.3929-0.8992,0.2589c-0.8523-0.3575-1.7525-0.5304-2.7597-0.5304 C22.7272,15.7099,19.6031,18.6146,19.2787,22.3171z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M22.3528,51.6738c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8761-1.5078,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C23.2802,50.2167,22.3528,51.6738,22.3528,51.6738"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M52.4574,51.6738c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8761-1.5078,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C53.3848,50.2167,52.4574,51.6738,52.4574,51.6738"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M37.4051,51.6738c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8761-1.5078,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C38.3325,50.2167,37.4051,51.6738,37.4051,51.6738"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M29.3789,59.2449c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854c-0.9559-0.6177-1.1216-2.0613-0.37-3.2245 c0,0,0.8761-1.5078,4.0066-3.0386c0,0,0.6168-0.3534,0.5724,0.3205C30.3063,57.7879,29.3789,59.2449,29.3789,59.2449"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M44.4312,59.2449c-0.7516,1.1632-2.1343,1.603-3.0902,0.9854s-1.1216-2.0613-0.37-3.2245c0,0,0.8761-1.5078,4.0066-3.0386 c0,0,0.6168-0.3534,0.5724,0.3205C45.3586,57.7879,44.4312,59.2449,44.4312,59.2449"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M19.2787,22.3171c-0.031,0.3535-0.3174,0.6396-0.6721,0.6775C14.307,23.4552,11,27.6889,11,32.8421 c0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492c0-5.5305-3.8212-10.0575-8.6569-10.4251 c-0.37-0.0281-0.67-0.2871-0.7406-0.6494c-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159c-3.829,0-7.2399,1.7335-9.4549,4.4912 c-0.2164,0.2695-0.5797,0.3929-0.8992,0.2589c-0.8523-0.3575-1.7525-0.5304-2.7597-0.5304 C22.7272,15.7099,19.6031,18.6146,19.2787,22.3171z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4ec7faa
--- /dev/null
+++ b/static/openmoji-svg-color/1F328.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke="none" d="M19.2787,22.4402c-0.031,0.3535-0.3174,0.6396-0.6721,0.6775C14.307,23.5783,11,27.8119,11,32.9652 c0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492c0-5.5305-3.8212-10.0575-8.6569-10.4251 c-0.37-0.0281-0.67-0.2871-0.7406-0.6494c-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159c-3.829,0-7.2399,1.7335-9.4549,4.4912 c-0.2164,0.2695-0.5797,0.3929-0.8992,0.2589c-0.8523-0.3575-1.7525-0.5304-2.7597-0.5304 C22.7272,15.833,19.6031,18.7376,19.2787,22.4402z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M19.2787,22.4402c-0.031,0.3535-0.3174,0.6396-0.6721,0.6775C14.307,23.5783,11,27.8119,11,32.9652 c0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492c0-5.5305-3.8212-10.0575-8.6569-10.4251 c-0.37-0.0281-0.67-0.2871-0.7406-0.6494c-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159c-3.829,0-7.2399,1.7335-9.4549,4.4912 c-0.2164,0.2695-0.5797,0.3929-0.8992,0.2589c-0.8523-0.3575-1.7525-0.5304-2.7597-0.5304 C22.7272,15.833,19.6031,18.7376,19.2787,22.4402z"/>
+    <line x1="28.7676" x2="28.7676" y1="52.5185" y2="60.3867" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="25.4082" x2="32.1269" y1="58.42" y2="54.4852" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="32.1269" x2="25.4082" y1="58.42" y2="54.4852" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="56.2911" x2="56.2911" y1="46.0402" y2="53.262" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="53.2077" x2="59.3744" y1="51.4569" y2="47.8454" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="59.3744" x2="53.2077" y1="51.4569" y2="47.8454" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="16.9577" x2="16.9577" y1="47.0402" y2="54.262" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="13.8744" x2="20.0411" y1="52.4569" y2="48.8454" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="20.0411" x2="13.8744" y1="52.4569" y2="48.8454" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="42.7093" x2="42.7093" y1="48.0757" y2="60.083" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="37.5827" x2="47.8358" y1="57.0817" y2="51.077" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <line x1="47.8358" x2="37.5827" y1="57.0817" y2="51.077" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6117d5c
--- /dev/null
+++ b/static/openmoji-svg-color/1F329.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" stroke="none" d="M31.0827,42.8817l-3.7893,6.7541c-0.2732,0.2863-0.0517,0.7346,0.3629,0.7346h8.4435l-5.845,9.2144 c-0.3172,0.5,0.3444,1.0389,0.7699,0.6271l13.669-13.2268c0.2916-0.2821,0.0737-0.7475-0.35-0.7475h-8.1735l1.5388-3.3558 L31.0827,42.8817z"/>
+    <path fill="#d0cfce" stroke="none" d="M19.2787,22.469c-0.031,0.3535-0.3174,0.6396-0.6721,0.6775C14.307,23.6072,11,27.8408,11,32.994 c0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492c0-5.5305-3.8212-10.0575-8.6569-10.4251 c-0.37-0.0281-0.67-0.2871-0.7406-0.6494c-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159c-3.829,0-7.2399,1.7335-9.4549,4.4912 c-0.2164,0.2695-0.5797,0.3929-0.8992,0.2589c-0.8523-0.3575-1.7525-0.5304-2.7597-0.5304 C22.7272,15.8618,19.6031,18.7665,19.2787,22.469z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M19.2787,22.469c-0.031,0.3535-0.3174,0.6396-0.6721,0.6775C14.307,23.6072,11,27.8408,11,32.994 c0,5.4608,3.7871,9.8877,8.4588,9.8877h32.248c5.1325,0,9.2932-4.6783,9.2932-10.4492c0-5.5305-3.8212-10.0575-8.6569-10.4251 c-0.37-0.0281-0.67-0.2871-0.7406-0.6494c-1.0803-5.5472-6.0636-9.7159-11.9553-9.7159c-3.829,0-7.2399,1.7335-9.4549,4.4912 c-0.2164,0.2695-0.5797,0.3929-0.8992,0.2589c-0.8523-0.3575-1.7525-0.5304-2.7597-0.5304 C22.7272,15.8618,19.6031,18.7665,19.2787,22.469z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M31.0827,42.8817l-3.7893,6.7541c-0.2732,0.2863-0.0517,0.7346,0.3629,0.7346h8.4435l-5.845,9.2144 c-0.3172,0.5,0.3444,1.0389,0.7699,0.6271l13.669-13.2268c0.2916-0.2821,0.0737-0.7475-0.35-0.7475h-8.1735l1.5388-3.3558 L31.0827,42.8817z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3124f4d
--- /dev/null
+++ b/static/openmoji-svg-color/1F32A.svg
@@ -0,0 +1,33 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M36,15.5432c-17.6731,0-32-1.5881-32-3.5471"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4" d="M4,12.0067c0-1.959,14.3269-3.5471,32-3.5471s32,1.5881,32,3.5471v-0.0106"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M66,17.0232c0,1.8366-13.4315,3.3254-30,3.3254S6,18.8598,6,17.0232"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M64,22.3986c0,1.7141-12.536,3.1037-28,3.1037S8,24.1127,8,22.3986"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M62,27.5023c0,1.5917-11.6406,2.882-26,2.882s-26-1.2903-26-2.882"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M58,33.3643c0,1.3468-9.8497,2.4386-22,2.4386s-22-1.0918-22-2.4386"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M54,38.803c0,1.1019-8.0589,1.9952-18,1.9952s-18-0.8933-18-1.9952"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50,43.7982c0,0.8571-6.268,1.5519-14,1.5519s-14-0.6948-14-1.5519"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M46,48.8601c0,0.6122-4.4772,1.1085-10,1.1085s-10-0.4963-10-1.1085"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44,53.4685c0,0.4897-3.5817,0.8868-8,0.8868s-8-0.397-8-0.8868"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40,58.3553c0,0.2449-1.7909,0.4434-4,0.4434s-4-0.1985-4-0.4434"/>
+    <path fill="none" stroke="#d0cfce" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M38,62.7987c0,0.1224-0.8954,0.2217-2,0.2217s-2-0.0993-2-0.2217"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36,15.5432c-17.6731,0-32-1.5881-32-3.5471"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M4,12.0067c0-1.959,14.3269-3.5471,32-3.5471s32,1.5881,32,3.5471v-0.0106"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M66,18.0632c0,1.8366-13.4315,3.3254-30,3.3254S6,19.8998,6,18.0632"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M64,23.3886c0,1.7141-12.536,3.1037-28,3.1037S8,25.1027,8,23.3886"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M62,28.4923c0,1.5917-11.6406,2.882-26,2.882s-26-1.2903-26-2.882"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M58,34.3743c0,1.3468-9.8497,2.4386-22,2.4386s-22-1.0918-22-2.4386"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M54,39.813c0,1.1019-8.0589,1.9952-18,1.9952s-18-0.8933-18-1.9952"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50,44.8082c0,0.8571-6.268,1.5519-14,1.5519s-14-0.6948-14-1.5519"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M46,49.8601c0,0.6122-4.4772,1.1085-10,1.1085s-10-0.4963-10-1.1085"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44,54.4685c0,0.4897-3.5817,0.8868-8,0.8868s-8-0.397-8-0.8868"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40,59.3553c0,0.2449-1.7909,0.4434-4,0.4434s-4-0.1985-4-0.4434"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M38,63.7987c0,0.1224-0.8954,0.2217-2,0.2217s-2-0.0993-2-0.2217"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..10481bd
--- /dev/null
+++ b/static/openmoji-svg-color/1F32B.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" d="m33.4404,3.9997c2.559,0,4.1336,2.4682,4.2596,3.9003.659-.307,1.3734-.4771,2.1-.5h.3c.3739.018.7437.0852,1.1.2,2.194.6783,3.6927,2.7036,3.7,5-.0004,2.7777-2.2229,5.0446-5,5.1h-21.2c-3.653-.0079-6.6079-2.9756-6.6-6.6285.0074-3.4095,2.7306-6.7548,6.1254-7.0715"/>
+    <path fill="#d0cfce" d="m10.5,9.9c1.917-.0342,3.7629.7259,5.1,2.1.6753.597,1.1909,1.3532,1.5,2.2,2.2706-1.2242,4.9401-1.4767,7.4-.7.1,0,.2.1.3.1.5183.1919,1.02.426,1.5.7.2803.1438.5479.3111.8.5,1.0109.7582,1.8608,1.71,2.5,2.8l.3.6c.0541-.0012.0988.0417.1.0958,0,.0014,0,.0028,0,.0042.1759.3147.3104.6508.4,1,.2301.7808.3645,1.5867.4,2.4.8989-.4463,1.8978-.653,2.9-.6.6376.0171,1.2728.084,1.9.2,1.3358.3014,2.5325,1.0405,3.4,2.1.1954.1742.3639.3764.5.6.1235.114.2252.2495.3.4.7082,1.1049,1.0896,2.3876,1.1,3.7l.1,6.5H4V14.1c.2948-.8371.7349-1.6157,1.3-2.3,1.3107-1.4569,3.2588-2.1687,5.2-1.9Z"/>
+    <path fill="#fff" d="m68,14.8v15.5h0l-.1.1c-1.5879,1.0972-3.4699,1.6896-5.4,1.7h-31.3c-4.0325-.3785-6.9946-3.9543-6.616-7.9868.3785-4.0325,3.9543-6.9946,7.9868-6.616.0098.0009.0195.0019.0293.0028.8208.1052,1.6263.3066,2.4.6.2539-5.2313,4.6658-9.2868,9.9-9.1,1.5021.0913,2.9677.5003,4.3,1.2,1.5646-3.7406,5.8653-5.5047,9.6059-3.9401.0315.0132.0628.0265.0941.0401,2.7194,1.1694,4.4867,3.8399,4.5,6.8h0c.3,0,2.9.7,3.1.8.5415.2247,1.0469.528,1.5.9Z"/>
+    <path fill="#d0cfce" d="m68,26.5v18.5h-.1c-.521.1571-1.0574.2577-1.6.3h0c-.4,0-.7.1-1.1.1h-31c-.645-.0018-1.2858-.103-1.9-.3-3.0082-.8097-5.1994-3.3993-5.5-6.5v-.7c.0097-1.3752.3897-2.7224,1.1-3.9l.6-.9h0l.3-.3c.9716-1.0335,2.2221-1.7629,3.6-2.1.3-.1.6-.1.9-.2.3,0,.6-.1.9-.1,1.0745-.0187,2.1378.2214,3.1.7.0985-2.6794,1.3353-5.1895,3.4-6.9,3.0566-2.6757,7.4741-3.1175,11-1.1,1.609-3.8137,6.0049-5.601,9.8186-3.992,2.7721,1.1695,4.5761,3.8834,4.5814,6.892h0c.642.132,1.2762.2989,1.9.5-.1-.1,0-.1,0,0Z"/>
+    <path fill="#fff" d="m47.5,44.4c.0117.3363-.022.6727-.1,1,.0155.1728-.0192.3464-.1.5-.1.4-.2.8-.3,1.1-.1919.5183-.426,1.02-.7,1.5-.8456,1.2992-2.0663,2.3106-3.5,2.9h0c-.3.1-.5.2-.8.3-.1174.0794-.259.1149-.4.1-.4954.083-.9979.1165-1.5.1H9.3c-1.8822-.0229-3.7195-.5776-5.3-1.6v-16c.0757-.1599.2253-.2721.4-.3.2-.1.5-.3.7-.4h0c1.0368-.4964,2.1548-.8013,3.3-.9h0c-.0061-2.8025,1.585-5.3636,4.1-6.6h0c1.0219-.5221,2.1524-.7961,3.3-.8,2.8704-.1296,5.4965,1.6076,6.5,4.3h0c1.5968-.7327,3.3448-1.0755,5.1-1,2.1015.0057,4.1416.7092,5.8,2,2.1926,1.6969,3.5715,4.2369,3.8,7v.1c.7503-.3628,1.5673-.5671,2.4-.6h.7c2.6412.0011,5.0811,1.4117,6.4,3.7.0772.1793.1781.3475.3.5.4891.9585.7298,2.0244.7,3.1Z"/>
+    <path fill="#fff" d="m68,33v18.9h-22.5c-.947.0175-1.8808-.2246-2.7-.7h0c-.2-.1-.3-.2-.5-.3-.1-.1-.3-.2-.4-.3-1.3121-1.0872-2.08-2.6961-2.1-4.4-.0163-.3035.0175-.6075.1-.9v-.2h0c.3161-1.7061,1.432-3.1568,3-3.9.8017-.4293,1.6912-.6688,2.6-.7.3364-.0164.6735.0173,1,.1.4787.0868.9477.2208,1.4.4.1632-4.032,3.5641-7.1682,7.5961-7.0049.0346.0014.0693.0031.1039.0049,1.1628.072,2.2928.4145,3.3,1,1.2199-2.8671,4.5008-4.2416,7.4-3.1.6102.2946,1.1812.6642,1.7,1.1Z"/>
+    <path fill="#d0cfce" d="m21.3,56.8c-3.653-.0079-6.6079-2.9756-6.6-6.6285.0073-3.4095,2.6052-6.2548,6-6.5715h0c.0118-2.8118,2.2882-5.0882,5.1-5.1,2.0531-.0246,3.9143,1.203,4.7,3.1,3.1529-1.8012,7.1691-.7055,8.9703,2.4474.01.0175.0199.035.0297.0526.5077.9255.8144,1.9478.9,3,2.5654-1.1933,5.6124-.0809,6.8057,2.4845,1.1933,2.5654.0809,5.6124-2.4845,6.8057-.007.0033-.0141.0065-.0211.0098-.659.307-1.3734.4771-2.1.5l-21.3-.1Z"/>
+    <path fill="#d0cfce" d="m66.7,45.2c.5651.6843,1.0052,1.4629,1.3,2.3v20.5H31l.1-6.5c.0104-1.3124.3918-2.5951,1.1-3.7.0748-.1505.1765-.286.3-.4.1361-.2236.3046-.4258.5-.6.8675-1.0595,2.0642-1.7986,3.4-2.1.6272-.116,1.2624-.1829,1.9-.2,1.0022-.053,2.0011.1537,2.9.6.0355-.8133.1699-1.6192.4-2.4.0896-.3492.2241-.6853.4-1-.0012-.0541.0417-.0988.0958-.1.0014,0,.0028,0,.0042,0l.3-.6c.6392-1.09,1.4891-2.0418,2.5-2.8.2521-.1889.5197-.3562.8-.5.48-.274.9817-.5081,1.5-.7.1,0,.2-.1.3-.1,2.4599-.7767,5.1294-.5242,7.4.7.3091-.8468.8247-1.603,1.5-2.2,1.3371-1.3741,3.183-2.1342,5.1-2.1,2,0,3.9.4,5.2,1.9Z"/>
+    <path fill="#fff" d="m34.7,62.2c.005,1.5498-.5651,3.0464-1.6,4.2-.5836.6709-1.2983,1.2154-2.1,1.6H4v-21.2c.3559-.2782.7639-.4822,1.2-.6.1824-.1109.3875-.1792.6-.2h0c.1889-.0815.3948-.1158.6-.1.1685-.0235.3354-.0569.5-.1h.7c2.5779-.0247,4.9126,1.5185,5.9,3.9.4-.2.9-.4,1.4-.6.1,0,.2-.1.3-.1.7808-.2301,1.5867-.3645,2.4-.4,2.9812.0015,5.7313,1.6057,7.2,4.2.6323,1.0962.9763,2.3348,1,3.6,1.9419-.8739,4.1913-.7239,6,.4.3.2.5.4.8.6.2.1.3.3.5.4,1.0385,1.2303,1.6057,2.7899,1.6,4.4Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m5.3,11.8c1.3-1.5,3.2-1.9,5.2-1.9,1.917-.0342,3.7629.7259,5.1,2.1.6753.597,1.1909,1.3532,1.5,2.2,2.2706-1.2242,4.9401-1.4767,7.4-.7.1,0,.2.1.3.1.5183.1919,1.02.426,1.5.7.2803.1438.5479.3111.8.5"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m24.5,24c.3678-4.0162,3.9218-6.9738,7.938-6.6059.0207.0019.0414.0039.062.0059.8208.1052,1.6263.3066,2.4.6.2539-5.2313,4.6658-9.2868,9.9-9.1,1.5021.0913,2.9677.5003,4.3,1.2,1.5646-3.7406,5.8653-5.5047,9.6059-3.9401.0315.0132.0628.0265.0941.0401,2.7194,1.1694,4.4867,3.8399,4.5,6.8h0c.3,0,3.4.9,3.5,1"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m38.2,30.3c0-2.5,1.3-4.4,4.2-6.3,1.5192-.9008,3.2359-1.4158,5-1.5,1.5798-.0054,3.1327.4087,4.5,1.2,1.5313-3.6048,5.6825-5.3009,9.3-3.8,2.596,1.1385,4.3075,3.6668,4.4,6.5h0"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m42.4,38.4c-1.4715-1.5992-3.8853-1.8956-5.7-.7-1.4-6.8-5.6-7.6-6.6-8.1-.5249-.3029-1.1012-.5063-1.7-.6h0c-.7494-.2043-1.5232-.3053-2.3-.3-1.3069.0146-2.5981.2864-3.8.8h0c-.2534.0947-.4898.2298-.7.4-1.1385-2.596-3.6668-4.3075-6.5-4.4-.857.0114-1.7045.1809-2.5.5h0c-2.7505,1.0373-4.5788,3.6605-4.6,6.6h0c-.5471.0025-1.0892.1042-1.6.3-.4717.1538-.912.3908-1.3.7"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m47.9,41.1c.1632-4.032,3.5641-7.1682,7.5961-7.0049.0346.0014.0693.0031.1039.0049,1.1628.072,2.2928.4145,3.3,1,1.2199-2.8671,4.5008-4.2416,7.4-3.1"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m18.3,44.3c.7103-.4718,1.5475-.716,2.4-.7h0c.0118-2.8118,2.2882-5.0882,5.1-5.1,2.0531-.0246,3.9143,1.203,4.7,3.1,3.1529-1.8012,7.1691-.7055,8.9703,2.4474.01.0175.0199.035.0297.0526.5077.9255.8144,1.9478.9,3"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m33.1,66.4c2.1933-2.5153,2.1066-6.2881-.2-8.7-.1407-.1629-.3102-.2984-.5-.4-1.8858-1.6261-4.5561-1.9795-6.8-.9-.0716-1.2578-.4126-2.4855-1-3.6-1.45-2.6127-4.212-4.2239-7.2-4.2-1.4366.0219-2.8453.3999-4.1,1.1-.9874-2.3815-3.3221-3.9248-5.9-3.9-.7857-.0221-1.5679.1139-2.3.4"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m36.4,54.7c.6272-.116,1.2624-.1829,1.9-.2,1.0022-.053,2.0011.1537,2.9.6.0355-.8133.1699-1.6192.4-2.4.0896-.3492.2241-.6853.4-1-.0012-.0541.0417-.0988.0958-.1.0014,0,.0028,0,.0042,0l.3-.6c.6392-1.09,1.4891-2.0418,2.5-2.8.2521-.1889.5197-.3562.8-.5.48-.274.9817-.5081,1.5-.7.1,0,.2-.1.3-.1,2.4599-.7767,5.1294-.5242,7.4.7.3091-.8468.8247-1.603,1.5-2.2,1.3371-1.3741,3.183-2.1342,5.1-2.1,2,0,3.9.4,5.2,1.9"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8eef681
--- /dev/null
+++ b/static/openmoji-svg-color/1F32C.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" d="m14.5968,29.9075c-.0396.4525-.4062.8186-.8602.8673-5.5036.5895-9.7366,6.0085-9.7366,12.6046,0,6.9899,4.8475,13.3716,10.8272,13.3716h41.2775c1.3997-.037,2.5589-.1579,3.7218-.551,3.1992-1.5711,8.1735-6.7931,8.1735-13.5393,0-7.079-4.8912-12.8736-11.0809-13.3441-.4735-.036-.8576-.3674-.9479-.8313-1.3827-7.1005-7.7614-12.4363-15.3028-12.4363-4.9012,0-9.2671,2.2189-12.1023,5.7487-.277.3449-.742.503-1.151.3315-1.091-.4575-2.2432-.6789-3.5324-.6789-4.8718,0-8.8707,3.7179-9.2859,8.4572Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m59.4442,55.4591c4.944-1.6229,8.5558-6.7575,8.5558-12.8408,0-7.079-4.8912-12.8736-11.0809-13.3441-.4735-.036-.8576-.3674-.9479-.8313-1.3827-7.1005-7.7614-12.4363-15.3028-12.4363-4.9012,0-9.2671,2.2189-12.1023,5.7487-.277.3449-.742.503-1.151.3315-1.091-.4575-2.2432-.6789-3.5324-.6789-4.8718,0-8.8707,3.718-9.2859,8.4573-.0396.4525-.4062.8186-.8602.8673-5.5036.5895-9.7366,6.0085-9.7366,12.6046,0,6.9899,4.8475,12.6562,10.8272,12.6562h36.2187"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m31.686,32.062c-1.2083.9992-2.7458,1.5119-4.312,1.438-1.5664.0745-3.1043-.4379-4.313-1.437"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m48.939,32.062c-1.2083.9992-2.7458,1.5119-4.312,1.438-1.5664.0745-3.1043-.4379-4.313-1.437"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m39.6114,45.3333c1.6569,0,3-1.1379,3-2.5417,0-1.0528-.7555-1.9561-1.8323-2.3419-.3589-.1286-.7535-.1997-1.1677-.1997"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m39.1843,50.4062c.9401,0,2.0159-.5708,2.3309-1.472.5041-1.4419-.3552-3.0541-1.9192-3.6009"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m62.3636,45.5589c2.1545-3.308,2.0114-7.9339-1.9915-9.7984-1.7893-.8334-3.8681-.6097-4.9454,1.0444-.5386.827-.3048,1.9341.5222,2.4727"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m46.0899,46.5506c4.7602,2.7667,12.0053,5.3518,16.2737-.9917"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9066" d="m55.7258,59.2062c-.2065,1.8432-1.8674,3.2117-3.7107,3.0052-1.5499-.1736-2.7348-1.376-2.9498-2.8502"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.9066" d="m46.3213,46.5506s10.2039,5.4508,9.4045,12.6556"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6010038
--- /dev/null
+++ b/static/openmoji-svg-color/1F32D.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#f4aa41" stroke="none" d="M48.6367,13.4648c-1.9512-1.9531-5.1172-1.9531-7.0703,0L13.4648,41.5645 c-1.9531,1.9531-1.9531,5.1191-0.0019,7.0712l9.9004,9.8995c1.9531,1.9531,5.1191,1.9531,7.0703,0l28.1035-28.0997 c1.9512-1.9531,1.9512-5.1191,0-7.0712L48.6367,13.4648z"/>
+    <path fill="#ea5a47" stroke="none" d="M20.5352,58.5352c-1.9532,1.9531-5.1192,1.9531-7.0723,0c-1.9512-1.9522-1.9512-5.1182,0-7.0704 l38.0019-38c1.9532-1.9531,5.1192-1.9531,7.0723,0c1.9512,1.9522,1.9512,5.1182,0,7.0704L20.5352,58.5352z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M27,45.001c0,1.6562-1.3437,3.001-3.001,3.001c-1.6572,0-2.999,1.3437-3,3"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M39.002,33c0,1.6563-1.3438,3-3.002,3c-1.6562,0-2.999,1.3438-3,3"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M33,39c0,1.6563-1.3418,3.001-3,3c-1.6572,0-3,1.3447-3,3.001"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M45.002,26.998c0,1.6573-1.3418,3.002-3,3.001c-1.6582,0-3,1.3448-3,3.001"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51.002,20.998c0,1.6563-1.3418,3-3,3c-1.6563,0-3,1.3448-3,3"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M20.5352,58.5352c-1.9532,1.9531-5.1192,1.9531-7.0723,0c-1.9512-1.9522-1.9512-5.1182,0-7.0704l38.0019-38 c1.9532-1.9531,5.1192-1.9531,7.0723,0c1.9512,1.9522,1.9512,5.1182,0,7.0704L20.5352,58.5352z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50.0508,14.8789l-1.4141-1.4141c-1.9512-1.9531-5.1172-1.9531-7.0703,0L13.4648,41.5645 c-1.9531,1.9531-1.9531,5.1191-0.0019,7.0712l1.416,1.4151"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M21.9492,57.1211l1.4141,1.4141c1.9531,1.9531,5.1191,1.9531,7.0703,0l28.1035-28.0997c1.9512-1.9531,1.9512-5.1191,0-7.0712 l-1.4141-1.4151"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2de74a3
--- /dev/null
+++ b/static/openmoji-svg-color/1F32E.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <ellipse cx="28.7075" cy="23.3108" rx="5.9988" ry="5.999" transform="matrix(0.9659 -0.2588 0.2588 0.9659 -5.0542 8.2223)" fill="#ea5a47" stroke="none"/>
+    <ellipse cx="15.4904" cy="30.1549" rx="5.9997" ry="5.9999" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -16.7863 19.7875)" fill="#ea5a47" stroke="none"/>
+    <ellipse cx="56.5105" cy="30.1528" rx="5.9971" ry="6.002" transform="matrix(0.7072 -0.707 0.707 0.7072 -4.7714 48.7851)" fill="#ea5a47" stroke="none"/>
+    <path fill="#ea5a47" stroke="none" d="M49.0889,24.8599c-0.8594,3.2011-4.1446,5.0952-7.3467,4.2387c-3.2012-0.8545-5.0986-4.143-4.2432-7.3452 c0.8526-3.1968,4.1475-5.0957,7.3448-4.2353C48.042,18.3706,49.9463,21.6606,49.0889,24.8599z"/>
+    <path fill="#b1cc33" stroke="none" d="M57.4414,48.6279l4.958-0.75l-0.3271-0.9658c1.6015-0.4297,2.5527-2.0742,2.1211-3.6738 c-0.2461-0.919-0.8985-1.6113-1.709-1.9639c1.3652-1.5654,1.6758-3.873,0.5801-5.7724c-1.1817-2.043-3.5821-2.9239-5.7481-2.2823 c0.2852-1.0107,0.043-2.1357-0.7539-2.9297c-0.6719-0.6738-1.584-0.9472-2.46-0.8466c0.3985-2.0391-0.4863-4.1924-2.3847-5.2891 c-2.0449-1.1787-4.5645-0.7422-6.1192,0.8965c-0.2578-1.0166-1.0312-1.8711-2.1172-2.1602 c-0.9189-0.247-1.8457-0.0273-2.5546,0.4971c-0.6739-1.9648-2.5176-3.3867-4.711-3.3867c-2.3584,0-4.3222,1.6386-4.8496,3.8349 c-0.7324-0.75-1.8301-1.1035-2.915-0.8125c-0.919,0.2461-1.6114,0.8985-1.9639,1.708c-1.5654-1.3642-3.873-1.6738-5.7715-0.5771 c-2.0429,1.1797-2.9248,3.5801-2.2822,5.7461c-1.0107-0.2832-2.1367-0.041-2.9316,0.7539 c-0.6729,0.6719-0.9463,1.584-0.8457,2.4609c-2.0381-0.3984-4.1915,0.4864-5.2881,2.3858 c-1.1787,2.0429-0.7422,4.5635,0.8964,6.1181c-1.0166,0.2588-1.8701,1.0313-2.1621,2.1172 c-0.4287,1.6006,0.5215,3.2451,2.1211,3.6748l-0.0283,1.0049l3.1192,0.6514"/>
+    <path fill="#fcea2b" stroke="none" d="M15.1484,53.001c-1.1045,0-2-0.8955-2-2c0-12.7022,10.2979-23,23-23c12.7022,0,23,10.2978,23,23 c0,1.1045-0.8964,2-2,2H15.1484z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M15.1484,53.001c-1.1045,0-2-0.8955-2-2c0-12.7022,10.2979-23,23-23c12.7012,0,23,10.2978,23,23c0,1.1045-0.8964,2-2,2H15.1484z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M62.0723,46.9121c1.6015-0.4297,2.5527-2.0742,2.1211-3.6738c-0.2461-0.919-0.8985-1.6113-1.709-1.9639 c1.3652-1.5654,1.6758-3.873,0.5801-5.7724c-1.1817-2.043-3.5821-2.9239-5.7481-2.2823c0.2852-1.0107,0.043-2.1357-0.7539-2.9297 c-0.6719-0.6738-1.584-0.9472-2.4609-0.8466c0.3984-2.0391-0.4864-4.1924-2.3848-5.2891 c-2.0449-1.1787-4.5645-0.7422-6.1182,0.8965c-0.2578-1.0166-1.0312-1.8711-2.1172-2.1602 c-0.9189-0.247-1.8457-0.0273-2.5546,0.4971c-0.6739-1.9648-2.5176-3.3867-4.711-3.3867c-2.3584,0-4.3232,1.6386-4.8496,3.8349 c-0.7334-0.75-1.8291-1.1035-2.915-0.8125c-0.919,0.2461-1.6114,0.8985-1.9629,1.708c-1.5664-1.3642-3.8731-1.6738-5.7725-0.5771 c-2.0439,1.1797-2.9248,3.5801-2.2822,5.7461c-1.0098-0.2832-2.1367-0.041-2.9316,0.7539 c-0.6729,0.6719-0.9454,1.584-0.8457,2.4609c-2.0391-0.3984-4.1915,0.4864-5.2881,2.3858 c-1.1787,2.0429-0.7422,4.5635,0.8974,6.1181c-1.0176,0.2588-1.8711,1.0313-2.1631,2.1172 c-0.4287,1.6006,0.5215,3.2451,2.1211,3.6748"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M14.9971,25.1943c-1.1104,0.1026-2.1905,0.5738-3.042,1.4253c-0.8106,0.8106-1.2754,1.8272-1.4063,2.8804"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M30.6943,18.7378c-0.997-0.4414-2.1435-0.561-3.2812-0.2568c-1.1338,0.3037-2.0645,0.977-2.707,1.854"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41.3047,18.7378c0.9971-0.4414,2.1435-0.561,3.2812-0.2568c1.1338,0.3037,2.0645,0.977,2.7071,1.854"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M57.002,25.1943c1.1093,0.1026,2.1894,0.5738,3.041,1.4253c0.8105,0.8106,1.2754,1.8272,1.4062,2.8804"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6d39d4a
--- /dev/null
+++ b/static/openmoji-svg-color/1F32F.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" stroke="none" d="M23,23.5244v-7.6181l0.8633-0.002c0.5-0.5049,1.1777-0.832,1.9326-0.8838 C25.3066,14.4863,25,13.7813,25,13c0-1.6562,1.3438-3,3-3c0-1.6562,1.3438-3,3-3c0.8691,0,1.6465,0.376,2.1934,0.9668 C33.6162,6.8213,34.708,6,36,6s2.3838,0.8213,2.8066,1.9668C39.3535,7.376,40.1309,7,41,7c1.6563,0,3,1.3438,3,3 c1.6563,0,3,1.3438,3,3c0,0.7813-0.3066,1.4863-0.7959,2.0205c0.7559,0.0518,1.4355,0.3799,1.9355,0.8858H49v8L36,34.5244 L23,23.5244z"/>
+    <path fill="#ea5a47" stroke="none" d="M39,15c-0.3232,0-0.6377,0.0366-0.9443,0.0952C37.1484,13.8311,35.6748,13,34,13 c-2.1582,0-3.998,1.3672-4.6973,3.2827c-0.0136,0.0381-0.6435-1.0088-0.6572-0.9702c-0.1699,0.5029-0.4141,1.3784-0.458,1.9375 c-0.25,3.1563,3.0508,15.751,5.8125,15.751c0.3232,0,0.6377-0.0362,0.9443-0.0947C35.8516,34.1709,37.3252,35.001,39,35.001 c2.7617,0,4.4063-12.1773,4.4063-14.9385c0-1.3428,0.375-3.1875-0.7344-4.7812c-0.0117-0.0171-0.0918,1.2285-0.1065,1.2138 C41.6592,15.5723,40.3965,15,39,15z"/>
+    <path fill="#fcea2b" stroke="none" d="M43,61c-10.666-11.5977-10.666-30.4023,0-42h2c1.6563,0,3,1.3438,3,3v39c0,2.7617-2.2383,5-5,5H29 c-2.7617,0-5-2.2383-5-5V22c0-1.6562,1.3438-3,3-3h2c3.4346,3.7344,5.7637,8.2168,6.9863,12.9648"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M48.1396,15.9063c-0.5-0.5059-1.1796-0.834-1.9355-0.8858C46.6934,14.4863,47,13.7813,47,13c0-1.6562-1.3437-3-3-3 c0-1.6562-1.3437-3-3-3c-0.8691,0-1.6465,0.376-2.1934,0.9668C38.3838,6.8213,37.292,6,36,6s-2.3838,0.8213-2.8066,1.9668 C32.6465,7.376,31.8691,7,31,7c-1.6562,0-3,1.3438-3,3c-1.6562,0-3,1.3438-3,3c0,0.7813,0.3066,1.4863,0.7959,2.0205 c-0.7549,0.0518-1.4326,0.3789-1.9326,0.8838"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M35.9805,48.0537C34.7578,52.7949,32.4297,57.2695,29,61"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43,61c-10.666-11.5977-10.666-30.4023,0-42h2c1.6563,0,3,1.3438,3,3v39c0,2.7617-2.2383,5-5,5H29c-2.7617,0-5-2.2383-5-5V22 c0-1.6562,1.3438-3,3-3h2c3.4346,3.7344,5.7637,8.2168,6.9863,12.9648"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41.9873,15.9941C41.1543,15.3706,40.1211,15,39,15c-0.3232,0-0.6377,0.0366-0.9443,0.0952C37.1484,13.8311,35.6748,13,34,13 c-1.9131,0-3.5605,1.0811-4.3975,2.6611"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4e42b6a
--- /dev/null
+++ b/static/openmoji-svg-color/1F330.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#a57939" d="m28,28.6136l18-1s5,25-1,25l-9,5-7.79-4.7685c-4.21-12.2315-.21-24.2315-.21-24.2315Z"/>
+    <path fill="#f1b31c" d="m17,23.6136s1.3997-3.1233,4.9774-5.8066c6.7747-4.6017,14.6946-4.3,14.6946-4.3l-13.672,12.1066-6-2Z"/>
+    <path fill="#6a462f" d="m27,27.6136l-11.2506-4s-12.7494,19,11.2506,28v-24Z"/>
+    <path fill="#6a462f" d="m47,27.6136l9.8246-3.1745s10.931,12.1435-9.8246,27.1745l1-13-1-11Z"/>
+    <path fill="#f1b31c" d="m16.9266,23.4983l.0839.1938c17.4971,10.4924,39.9895-.0785,39.9895-.0785-4.4394-6.2995-11.6499-10.0647-19.3564-10.1076"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m16.9266,23.4983l.0839.1938c17.4971,10.4924,39.9895-.0785,39.9895-.0785-4.4394-6.2995-11.6499-10.0647-19.3564-10.1076"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m16,23.6136c17.4971,10.4924,41,0,41,0"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m46.4732,27.5435s4.6059,13.5332-1.1843,25.3016"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m46.4732,27.5435s4.6059,13.5332-1.1843,25.3016"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m21.9774,17.807c-6.1574,3.983-10.2448,10.3897-9.8666,17.7417.3892,7.5649,6.78,14.6806,13.5472,16.3619,4.101,1.0189,8.7043,4.8382,10.0172,5.9834.2172.1908.537.2077.7731.0409,2.7272-1.8628,5.5839-3.5287,8.5483-4.9849,8.5745-4.2024,13.5034-9.836,14.977-17.4009,2.291-11.7612-10.0847-22.0421-23.3016-22.0421-3.9287.0022-7.8109.8495-11.3832,2.4845"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m27.0255,27.5435c-.5483,8.4517-.151,16.9381,1.1845,25.3016"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e98d441
--- /dev/null
+++ b/static/openmoji-svg-color/1F331.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#B1CC33" stroke="none" d="M51.935,35.8718c4.1996,0.9278,6.7648,5.4824,6.7648,5.4824s-4.2448,3.05-8.4449,2.1226 s-6.7648-5.4824-6.7648-5.4824S47.7371,34.9462,51.935,35.8718z"/>
+    <path fill="#5C9E31" stroke="none" d="M22.3618,19.992c4.067,1.3991,6.0978,6.2158,6.0978,6.2158s-4.5639,2.5478-8.6315,1.149 s-6.0978-6.2158-6.0978-6.2158S18.2963,18.5952,22.3618,19.992z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="36,63.1661 36,51.1661 31,29.1661"/>
+    <line x1="36" x2="41" y1="51.1661" y2="41.1661" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22.3618,19.992 c4.067,1.3991,6.0978,6.2158,6.0978,6.2158s-4.5639,2.5478-8.6315,1.149s-6.0978-6.2158-6.0978-6.2158 S18.2963,18.5952,22.3618,19.992z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M51.935,35.8718 c4.1996,0.9278,6.7648,5.4824,6.7648,5.4824s-4.2448,3.05-8.4449,2.1226s-6.7648-5.4824-6.7648-5.4824 S47.7371,34.9462,51.935,35.8718z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ec4ef8f
--- /dev/null
+++ b/static/openmoji-svg-color/1F332.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#5C9E31" stroke="none" d="M56.0354,54.0052l-8.1237-15.2094l3.3463,0.5399c0.5439,0.0891,1.0571-0.2796,1.1462-0.8235 c0.0381-0.2326-0.0073-0.4712-0.1283-0.6735l-7.3722-12.434l3.0778,0.2186c0.5498,0.0384,1.0267-0.3762,1.0651-0.9261 c0.0158-0.2267-0.0462-0.4521-0.1759-0.6388L36.825,6.7243c-0.192-0.2698-0.5032-0.4295-0.8343-0.4281 c-0.3321,0.0049-0.64,0.1748-0.8213,0.4531l-3.7175,5.7005l-7.8213,12.0069c-0.3011,0.4617-0.1709,1.08,0.2908,1.3811 c0.2089,0.1362,0.4612,0.1893,0.7072,0.1488l2.3014-0.3732l-7.5518,12.2114c-0.2901,0.4687-0.1453,1.0838,0.3234,1.3738 c0.2013,0.1246,0.4405,0.1736,0.6746,0.1381l3.7265-0.5629L15.968,54.0052c-0.2597,0.4861-0.0762,1.0908,0.4099,1.3505 c0.1647,0.088,0.3508,0.128,0.5372,0.1155l12.447-0.8363l1.0359-0.0699l10.961-0.1247l13.7184,1.0309h0.0749 c0.5512-0.0001,0.9979-0.447,0.9978-0.9981c0-0.1639-0.0404-0.3253-0.1176-0.4699L56.0354,54.0052z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="41.4476,53.4897 55.1936,54.5227 46.1036,37.5027 51.4476,38.3647 43.0886,24.2657 48.0726,24.6147 36.0036,7.2457 24.4476,24.9897 28.9176,24.2657 20.1976,38.3647 25.9026,37.5027 16.8127,54.5227 30.3226,53.6147"/>
+    <line x1="36.0036" x2="36.0036" y1="55.9637" y2="65.2727" fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8db876e
--- /dev/null
+++ b/static/openmoji-svg-color/1F333.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" d="m51.5605,17.7304c-.5093.0029-1.018.0333-1.524.091l-.673.072-.317-.6c-2.673-5.047-8.5-8.308-14.854-8.308-9.026,0-16.369,6.4-16.369,14.268.0014.5162.0348,1.0319.1,1.544l.1.824-.792.251c-4.015,1.272-6.608,4.186-6.608,7.421,0,4.445,4.851,8.061,10.813,8.061,2.3045.0227,4.5747-.5593,6.584-1.688l.591-.341.189.151.344.275c2.714,2.167,7.082,3.462,11.683,3.462,7.762,0,14.32-3.691,14.32-8.061-.0013-.2702-.0274-.5396-.078-.805l-.138-.751-.022-.117.842-.266c4.022-1.271,6.622-4.185,6.622-7.425.001-4.439-4.851-8.058-10.813-8.058Z"/>
+    <path fill="#5c9e31" d="m39.4685,27.9974s4.917,7.331,15.443,5.488l.6272,1.7053-.8266,2.6189c-2.5901,3.1871-5.0927,4.6512-9.1032,5.5357l-7.9389.0438-7.2116-1.9327-1.846-2.126c5.1993-1.8606,9.2206-6.0585,10.856-11.333Z"/>
+  </g>
+  <g id="line">
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.7895 63.9434 35.7895 52.7764 28.1585 45.2604"/>
+    <line x1="35.7895" x2="40.1575" y1="52.7764" y2="48.2304" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m63.3745,25.7734c0-5-5.289-9.061-11.813-9.061-.5451.0044-1.0895.0378-1.631.1-2.763-5.216-8.762-8.839-15.738-8.839-9.593,0-17.369,6.836-17.369,15.268.0017.5574.0378,1.1141.108,1.667-4.288,1.359-7.306,4.595-7.306,8.374,0,5,5.289,9.061,11.813,9.061,2.4798.021,4.922-.6072,7.084-1.822,2.791,2.229,7.257,3.681,12.307,3.681,8.461,0,15.32-4.057,15.32-9.061-.0014-.3308-.0329-.6609-.094-.986,4.293-1.36,7.319-4.598,7.319-8.382Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0513d61
--- /dev/null
+++ b/static/openmoji-svg-color/1F334.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#5c9e31" d="m36.2208,29.3157h0c-2.3045-4.2879-8.34-5.5242-13.4806-2.7614s-6.7397,8.181-4.4352,12.4689l1.1937-1.279c1.8116-1.9229,2.6256-2.3028,4.8485-3.7454.0001,0,6.0943-4.5336,11.8736-4.6831Z"/>
+    <path fill="#b1cc33" d="m37.2849,28.2487c-2.3394-.8811-4.95-.1607-6.9233,1.6466-1.0336.9466-1.8924,2.1915-2.4457,3.6606-1.6096,4.2736-.0246,8.8265,3.5401,10.1691h0c.2136-5.5917,2.3006-11.1331,5.8289-15.4763h0Z"/>
+    <path fill="#5c9e31" d="m54.8533,19.9083l.1467-1.4703c-2.305-3.7677-6.6102-3.8727-11.4359-2.859-3.4455,1.3417-5.903,3.9986-6.792,6.9192-.5142,1.6891-.5038,3.4665.1435,5.1286,0,0,6.869-8.5078,17.9377-7.7185Z"/>
+    <path fill="#b1cc33" d="m61.7027,34.872c1.4992-5.6939-2.8192-11.7667-9.6454-13.564-1.0578-.2785-2.1138-.438-3.1487-.4875-5.6432-.2699-10.6589,2.7314-11.9257,7.5429h0c8.6314-.5583,17.4825,1.7722,24.7198,6.5086h0Z"/>
+    <path fill="#5c9e31" d="m12.2789,23.7435s12.538-.9481,23.3468,2.6232l.7806.4425s2.2411-6.8492-3.3024-9.7317c-6.6385-3.8667-16.394-4.5176-20.825,6.666Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m39.9771,32.4424c2.4273,6.8664,4.2771,16.8297,2.9406,30.3218"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m36.2208,28.3157h0c-2.3045-4.2879-8.34-5.5242-13.4806-2.7614s-7.4397,8.4785-5.1352,12.7664h0c1.8116-1.9229,3.8637-3.6243,6.0866-5.0669"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m56.4308,19.0312h0c-2.0648-4.4084-8.0229-5.9754-13.308-3.5-3.3485,1.5683-5.6233,4.3831-6.3158,7.3565-.4005,1.7196-.2716,3.4923.485,5.1077"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m37.2849,28.2487c-2.3394-.8811-4.95-.1607-6.9233,1.6466-1.0336.9466-1.8924,2.1915-2.4457,3.6606-1.6096,4.2736-.0246,8.8265,3.5401,10.1691h0c.2136-5.5917,2.3006-11.1331,5.8289-15.4763h0Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m61.7027,34.872c1.4992-5.6939-2.8192-11.7667-9.6454-13.564-1.0578-.2785-2.1138-.438-3.1487-.4875-5.6432-.2699-10.6589,2.7314-11.9257,7.5429h0c8.6314-.5583,17.4825,1.7722,24.7198,6.5086h0Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m34.1871,19.0106c-.088-.085-.1776-.1693-.2689-.2527-1.7757-1.624-4.1607-2.9465-6.8817-3.6185-6.8529-1.6926-13.5043,1.9432-14.7576,7.6962h0c2.2915-.2474,4.6074-.2905,6.9127-.137"/>
+    <line x1="56.4308" x2="55" y1="19.0312" y2="18.9064" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..89a34c2
--- /dev/null
+++ b/static/openmoji-svg-color/1F335.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" d="M35.4871,7.054c-3.6266,0-6.5664,3.2647-6.5664,7.292V33.5385H25.9434c-3.9616,0-3.7957-1.0309-3.7957-4.7691l-1.6106-3.2526c0-2.7922-.3806-3.6821-3.3989-3.41-2.6314.2368-5.1765,1.5557-5.1765,4.05L11.7561,37.44c0,2.6374,4.38,7.58,7.1743,7.58l7.013.0688v0h2.9773V64.1754l13.1328,0V14.346C42.0535,10.3187,39.1138,7.054,35.4871,7.054Z"/>
+    <path fill="#b1cc33" d="M54.5238,25.9843a4.7767,4.7767,0,0,0-5.2448,4.7531v6.3643c0,3.7383.1565,4.7691-3.5816,4.7691H42.3061l.0793,11.5507h3.312v0h8.3573A4.7757,4.7757,0,0,0,58.83,48.6458V30.9427A4.9143,4.9143,0,0,0,54.5238,25.9843Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42.0535,63.1477V14.198c0-3.9562-2.94-7.1634-6.5664-7.1634s-6.5664,3.2072-6.5664,7.1634v48.95"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M25.0615,44.0454H18.6972a6.7684,6.7684,0,0,1-6.7685-6.7686V26.137a4.7765,4.7765,0,0,1,5.2447-4.7531A4.9143,4.9143,0,0,1,21.48,26.3423V31.11a3.3843,3.3843,0,0,0,3.3842,3.3842h.1975"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M45.8256,52.4027h8.3573a4.7757,4.7757,0,0,0,4.7756-4.7756V29.9239a4.9143,4.9143,0,0,0-4.3065-4.9584,4.7765,4.7765,0,0,0-5.2447,4.7531v6.3643c0,3.7382.1565,6.7685-3.5817,6.7685"/>
+    <line x1="40.0964" x2="44.1648" y1="18.3489" y2="14.2805" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="51.1343" x2="55.2027" y1="48.083" y2="44.0146" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="20.1528" x2="24.2212" y1="30.3694" y2="26.301" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="33.146" x2="29.668" y1="11.7031" y2="7" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="31.2172" x2="26.6242" y1="55.2326" y2="51.6104" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="55.9054" x2="59.9738" y1="27.9961" y2="23.9277" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="51.032" x2="46.6265" y1="35.5724" y2="31.7245" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="36.1743" x2="33.2368" y1="25.5782" y2="21.3614" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="14.6936" x2="11.7561" y1="25.9619" y2="20.712" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8f1aca7
--- /dev/null
+++ b/static/openmoji-svg-color/1F336.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#EA5A47" stroke="#EA5A47" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M61.02,29.52c0,0.3701-0.02,0.7401-0.05,1.11c-0.4075,8.0575-5.22,24.1-29.95,27.07c-6.26-0.16-12.03-2.28-16.71-5.79 c-0.98-0.66-3.61-2.05-2.77-3.69c0.84-1.64,4.07-0.33,4.25-0.29c0.1,0.03,0.2,0.06,0.29,0.11c5.54,1.88,11.54,1.95,15.73,1.95 c4.18,0,17.4-3.26,17.44-19.74v-0.07c0-0.08,0-0.17,0.02-0.25c0.16-2.92,2.41-5.27,5.29-5.56c0.19-0.02,0.39-0.03,0.6-0.03 c0.19,0,0.38,0.01,0.56,0.03C58.48,24.63,60.69,26.78,61.02,29.52z"/>
+    <path fill="#D22F27" stroke="#D22F27" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.97,30.63c-0.02,0.4-0.06,0.79-0.11,1.18C59.2,46.39,46.83,57.72,31.81,57.72c-0.27,0-10.3-1.8875-10.56-1.9075 c23.3441,3.5725,38.1872-12.2053,35.5547-24.0153C58.4647,32.2472,59.61,31.22,60.97,30.63z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M48.6055,28.4323 c-0.4282,0.8332,0.3404,1.7472,1.2376,1.4778c1.5002-0.4505,3.4108-0.6393,4.297,0.8565c1.2368,2.0876,5.3387,0.5293,7.0383-0.2337 c0.4606-0.2067,0.7127-0.708,0.5864-1.1968c-0.4177-1.6163-1.8591-5.0003-6.6064-5.0003 C51.464,24.3359,49.5511,26.5926,48.6055,28.4323z"/>
+    <path fill="#5C9E31" stroke="#5C9E31" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M61.18,30.53c-1.3,0.59-4,1.63-5.75,1.16c6.14-2.85-0.27-7.35-0.27-7.35c4.75,0,6.19,3.38,6.6,5 C61.89,29.82,61.64,30.33,61.18,30.53z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M55.2323,24.3359 c0,0,2.1769-13.0859-9.9082-13.0859"/>
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31.02,57.7 c-0.05,0.01-0.09,0.01-0.14,0.02"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.1362,35.7529C56.9018,48.383,45.4488,57.7213,31.8078,57.7213c-6.5624,0-12.6151-2.1556-17.4997-5.8085 c-0.9807-0.6664-3.6104-2.0547-2.7698-3.6962c0.8407-1.6414,4.0758-0.3283,4.2563-0.2859 c0.0956,0.0319,0.1911,0.0637,0.2867,0.1062c5.543,1.8795,11.5426,1.9538,15.7264,1.9538c3.8212,0,15.1805-2.7194,17.1531-15.7467"/>
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M48.6055,28.4323 c-0.4282,0.8332,0.3404,1.7472,1.2376,1.4778c1.5002-0.4505,3.4108-0.6393,4.297,0.8565c1.2368,2.0876,5.3387,0.5293,7.0383-0.2337 c0.4606-0.2067,0.7127-0.708,0.5864-1.1968c-0.4177-1.6163-1.8591-5.0003-6.6064-5.0003 C51.464,24.3359,49.5511,26.5926,48.6055,28.4323z"/>
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M61.18,30.53 c-0.07,0.03-0.14,0.06-0.21,0.1c-1.36,0.59-3.8799,1.51-5.54,1.06c-0.54-0.14-1-0.43-1.29-0.92c-0.89-1.5-2.8-1.31-4.3-0.86 c-0.2,0.06-0.4,0.06-0.57,0.02c-0.61-0.16-0.99-0.85-0.66-1.5c0.89-1.74,2.64-3.84,5.95-4.06c0.19-0.02,0.39-0.03,0.6-0.03 c0.19,0,0.38,0.01,0.56,0.03c4.3,0.24,5.65,3.42,6.04,4.97C61.89,29.82,61.64,30.33,61.18,30.53z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..c796f8a
--- /dev/null
+++ b/static/openmoji-svg-color/1F337.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#5C9E31" stroke="none" d="M23.6968,59.4302c0,0-8.7685-5.362-9.193-14.6985c-0.4359-9.5866,9.2144-26.9468,9.2144-26.9468 S18.9979,38.4911,23.6968,59.4302z"/>
+    <path fill="#F4AA41" stroke="none" d="M50.7169,27.3033c-2.7631-0.1233-8.0574,1.5799-9.5149,2.8892c-2.4893,2.2362-2.9448,2.8517-3.8431,6.4732 c-0.1034,0.4169,0.08,0.5524,0.1891,1.413c0.1488,1.1738-3.5923-1.3633-3.5923-1.3633c-2.1365-1.8582-1.2818-5.2882-0.1597-7.8879 c2.6922-6.2376,14.314-9.8962,16.4506-8.0381c0,0,0.9568,1.2159,1.1218,6.4742L50.7169,27.3033z"/>
+    <path fill="#F4AA41" stroke="none" d="M57.2882,29.8721c1.3436,2.4925-3.0561,13.578-9.7327,14.8346c-2.1528,0.4052-3.8746-0.0623-5.7286-1.4619 c-0.9986-0.7539-1.8237-1.7212-2.4582-2.7997v0c-1.5547-2.3665-0.8443-5.7082,0.9387-7.9079 C44.5854,27.2595,55.7335,27.5056,57.2882,29.8721"/>
+    <path fill="#E27022" stroke="none" d="M52.9482,22.6663c2.1629-0.5025,4.2949-0.3222,4.8381,0.3621"/>
+    <path fill="#E27022" stroke="none" d="M51.3683,27.2636c0,0-0.3688-4.5372-0.4588-4.763c-0.1099-0.2756,3.1089-2.0736,6.8768-1.1484 c3.7679,0.9252,0,7.9946,0,7.9946l-1.3267-0.9953c-0.2155-0.1617-0.4588-0.2727-0.7228-0.3265 C54.5558,27.7843,51.3683,27.2636,51.3683,27.2636z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23.6968,59.4302 c0,0-8.7685-5.362-9.193-14.6985c-0.4359-9.5866,9.2144-26.9468,9.2144-26.9468S18.9979,38.4911,23.6968,59.4302z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M34.0878,41.2889 c-3.438,3.548-7.676,10.246-5.829,20.735"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M57.0838,29.8721 c1.3436,2.4925-3.0561,13.578-9.7327,14.8346c-2.1528,0.4052-3.8746-0.0623-5.7286-1.4619 c-0.9986-0.7539-1.8237-1.7212-2.4582-2.7997v0c-1.5547-2.3665-0.8443-5.7082,0.9387-7.9079 C44.381,27.2595,55.5291,27.5056,57.0838,29.8721"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.5368,22.3417 c2.1629-0.5025,4.2949-0.3222,4.8381,0.3621"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M58.375,22.7039 c0.3869,0.5853,0.2321,2.1634-0.3773,3.8327"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M34.5658,35.9276 c-2.1322-1.8631-1.8894-4.8477-0.7613-7.4448c2.7067-6.2313,13.5127-8.9826,15.645-7.1195"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M49.3038,21.1954 c0.506,0.5262,0.7973,1.5901,0.8465,3.1014"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3ef7bd4
--- /dev/null
+++ b/static/openmoji-svg-color/1F338.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#5C9E31" stroke="none" d="M25.8375,35.1097c4.1058,4.886,2.2246,13.4388,2.2246,13.4388s-7.5369,0.8282-11.6437-4.0578 s-2.6028-13.6372-2.6028-13.6372S21.7317,30.2277,25.8375,35.1097z"/>
+    <path fill="#FFA7C0" stroke="none" d="M43.7106,31.8594c3.34,1,7.98,4,8.83,10.66l-2.19,0.1801h-0.0099l0.18,2.1899 c-11.57,0.3701-12.55-9.35-12.55-9.35h-0.69c0,0-0.88,9.7201-12.45,9.35l0.18-2.1899h-0.01l-2.19-0.1801 c0.85-6.66,5.49-9.66,8.83-10.66c-3.51,0.24-9.12-0.9099-12.2-7.1599l2.02-0.88l-0.88-2.02c7.02-2.67,10.93-0.15,13.2,2.5499 c-1.77-3.3099-2.95-8.3099,2.2-13.98l1.56,1.5601h0.01l1.55-1.5601c5.16,5.67,3.98,10.67,2.21,13.98h0.16 c2.27-2.7,6.28-5.22,13.3-2.5499l-0.88,2.02l2.02,0.88C52.8306,30.9495,47.2106,32.0994,43.7106,31.8594z"/>
+    <path fill="#FCEA2B" stroke="none" d="M37.9623,26.0189c0,0,0.9758-0.0021,1.9566,0.2527l-1.0721,6.9321 c-1.8894-0.0469-4.3796-1.7891-4.3796-3.6898C34.4672,27.5837,36.032,26.0189,37.9623,26.0189"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.5589,46.5211 c-1.3349-0.7304-2.6211-1.6939-3.6593-2.9643c-3.993-4.886-2.805-12.462-2.805-12.462s5.0132,0.2297,9.0421,2.9018"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M34.0696,24.6209c-1.7699-3.313-2.9507-8.3121,2.2021-13.9802l1.5576,1.5576h0.0025"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M37.8319,12.1983h0.0025l1.5576-1.5576c5.1528,5.6681,3.972,10.6672,2.2021,13.9802h0.1646 c2.2731-2.6991,6.2758-5.2194,13.2972-2.5536l-0.8789,2.0199l0.0009,0.0024l2.0199,0.8789 c-3.0804,6.2486-8.6944,7.3987-12.2002,7.1636"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M34.0696,24.6209c-2.2731-2.6991-6.1797-5.2191-13.2011-2.5534l0.8789,2.0199l-0.0009,0.0024l-2.0199,0.8789 c3.0804,6.2486,8.6944,7.3987,12.2002,7.1636"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31.927,32.1323c-3.3354,1.0006-7.979,4.0001-8.8292,10.6579l2.1959,0.1748l0.0017,0.0019l-0.1748,2.1959 c11.572,0.3686,12.4442-9.3577,12.4442-9.3577h0.699c0,0,0.9724,9.7262,12.5444,9.3577l-0.1748-2.1959l0.0017-0.0019 l2.1959-0.1748c-0.8502-6.6578-5.4937-9.6573-8.8292-10.6579"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M37.8738,33.0079c-1.8894-0.0469-3.4066-1.5933-3.4066-3.494c0-1.9303,1.5648-3.495,3.495-3.495 c0.3439,0,0.6763,0.0497,0.9902,0.1423"/>
+    <line x1="38.2634" x2="40.7452" y1="29.5134" y2="28.4832" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="43.9373" cy="27.0734" rx="1.398" ry="1.398" transform="matrix(0.9127 -0.4087 0.4087 0.9127 -7.2278 20.3218)" fill="#000000" stroke="none"/>
+    <line x1="38.2634" x2="40.7196" y1="29.5137" y2="31.9736" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37.1626,43.8927 c-3.438,3.548-7.676,10.246-5.829,20.735"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e9d2d8b
--- /dev/null
+++ b/static/openmoji-svg-color/1F339.svg
@@ -0,0 +1,29 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#EA5A47" stroke="none" d="M38.1631,16.8246c0,0-5.1901-0.5135-5.8625,3.0442s1.757,6.4979,2.9313,6.6556 c0,0-2.5562,6.2939,1.8725,9.6935s9.1611,1.1911,10.9752-2.1216c0,0,8.0846,0.9665,8.4396-6.4577c0,0-0.9641-6.4239-5.8652-6.2931 c0,0,1.3634-6.9761-3.8985-8.4706S38.1631,16.8246,38.1631,16.8246z"/>
+    <path fill="#B1CC33" stroke="none" d="M25.9293,32.6035c3.992,4.886,2.805,12.462,2.805,12.462s-7.66-0.347-11.653-5.233 s-2.805-12.462-2.805-12.462S21.9373,27.7215,25.9293,32.6035z"/>
+    <path fill="#D22F27" stroke="none" d="M44.4122,38.2369c0.9095,1.9758,1.874,3.7171,3.4969,4.5633c1.7075,0.8903,3.6834,0.6758,5.1278-0.1255 c1.5266-0.8468,2.6551-2.5099,2.6972-4.5946c0.0355-1.7625-1.1056-3.5236-2.1483-5.4034l-5.0366,2.4325L44.4122,38.2369z"/>
+    <path fill="#D22F27" stroke="none" d="M51.9515,20.0738c0,0,0.1963-3.2744-0.3034-4.0737c0,0,1.1424-1.6739,3.088-1.3169 c1.4815,0.2718,2.3317,3.3174,2.653,4.7549c0.1124,0.5031,0.2884,0.7228-0.0498,1.1118c-0.5455,0.6274-1.8031,1.8051-2.9605,2.0586 L51.9515,20.0738z"/>
+    <path fill="#EA5A47" stroke="none" d="M48.3664,22.704c0,1.6312-2.0931,2.9535-4.6751,2.9535s-4.6751-1.3223-4.6751-2.9535"/>
+    <path fill="#D22F27" stroke="none" d="M50.5245,31.1699c-0.5009,0.6863-1.4235,1.1037-2.2859,1.3551c-1.1433,0.3333-2.3619,0.4293-3.543,0.2537 c-2.1134-0.3143-4.0049-1.2693-5.4503-2.6508c-1.3591-1.2989-2.3237-2.9748-2.7075-4.8494c0,0-0.0062-0.0313-0.0135-0.0891 c-0.0513-0.4042-0.1594-2.1031,1.3907-3.4133c0.6559-0.5544,1.5837-0.882,2.4763-1.0041c1.1833-0.1618,2.4028-0.0781,3.5418,0.2685 c2.038,0.6203,3.7539,1.8412,4.9606,3.4181c1.1346,1.4827,1.819,3.2801,1.8975,5.1888"/>
+    <path fill="#EA5A47" stroke="none" d="M39.0161,22.8385c-0.0018,1.6129,1.9173,2.6679,4.5145,2.7789s4.7591-1.1201,4.8288-2.7498l-0.0008-0.3155 c-0.0191-1.632-2.1412-2.9744-4.7397-2.9983C41.0203,19.5299,38.997,21.2065,39.0161,22.8385"/>
+    <path fill="#D22F27" stroke="none" d="M43.174,24.8175c-0.6105-1.4165,0.3289-3.1838,2.0983-3.9475c0.9179-0.3962,1.9603-0.3538,2.8746-0.035 c1.4172,0.4941,2.4105,1.8808,2.3753,3.3822c-0.0051,0.2183-0.0355,0.4264-0.1035,0.6054"/>
+    <path fill="#D22F27" stroke="none" d="M43.174,23.8299c-0.6105,1.4165,0.3289,3.1838,2.0983,3.9475c0.9179,0.3962,1.9603,0.3538,2.8746,0.035 c1.4172-0.4941,2.4105-1.8808,2.3753-3.3822c-0.0051-0.2183-0.0355-0.4264-0.1035-0.6054"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.8675,30.3979c-0.4428,0.6348-1.2583,1.0208-2.0207,1.2533c-1.0107,0.3083-2.0878,0.3971-3.1319,0.2346 c-1.8682-0.2907-3.5402-1.174-4.8179-2.4517c-1.2014-1.2014-2.0541-2.7514-2.3933-4.4853"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40.0032,22.8224c0-1.6312,1.6529-2.9535,3.6919-2.9535c2.039,0,3.6919,1.3223,3.6919,2.9535"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.4103,24.9866c0,1.1609-1.1763,2.1019-2.6274,2.1019c-0.7528,0-1.4609-0.3402-1.9982-0.8332 c-0.8327-0.7641-1.1063-2.0186-0.6344-3.0455c0.0686-0.1493,0.1516-0.284,0.252-0.3874"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M53.3083,15.9025c0.9791-0.6237,2.4048-0.1371,3.1844,1.0868c0.7796,1.2239,0.6178,2.7216-0.3613,3.3453"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M54.1952,35.9239c1.1689,2.1072,0.4082,4.7631-1.699,5.932c-2.1072,1.1689-4.7631,0.4082-5.932-1.699"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M38.1631,16.1932c-2.253-0.8548-5.9182,1.2312-6.5125,3.6757c-0.5693,2.3415,0.9006,6.2141,3.1536,7.0689"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50.8669,20.8344c5.4159,0.6272,6.3961,6.4611,5.8024,8.7734c-0.8819,3.4349-5.3899,5.4013-8.1201,4.6907"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50.8669,20.8344c1.2816-3.5081-0.5232-7.3909-4.0313-8.6725c-3.5081-1.2816-7.3909,0.5232-8.6725,4.0313"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M34.8042,26.9378c-2.0326,3.7956-0.6035,8.5203,3.1921,10.5529s8.5203,0.6035,10.5529-3.1921"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M25.9293,32.3094 c3.992,4.886,2.805,12.462,2.805,12.462s-7.66-0.347-11.653-5.233s-2.805-12.462-2.805-12.462S21.9373,27.4274,25.9293,32.3094z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M37.1043,40.8644 c-3.438,3.548-7.676,10.246-5.829,20.735"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..aef06fc
--- /dev/null
+++ b/static/openmoji-svg-color/1F33A.svg
@@ -0,0 +1,25 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#ffa7c0" stroke="#ffa7c0" stroke-width="1" d="M56.239,31.078c0.789,-2.398 -0.301,-8.807 -2.824,-8.894c3.467,-10.044 -11.017,-11.013 -11.385,-8.228c-3.083,-5.954 -15.552,2.894 -11.305,8.577c-1.836,0.408 -3.839,6.938 -2.046,9.081c1.619,1.937 6.814,3.985 6.814,3.985c0.087,2.523 3.752,5.271 6.275,5.184c2.364,-0.082 7.708,-1.107 7.42,-5.185c0,0 5.746,-0.559 7.051,-4.52Z"/>
+    <path fill="#fcea2b" d="M40.82,28.398c-1.834,0 -3.32,-1.443 -3.32,-3.223c0,-1.369 0.769,-2.538 2.009,-3.006c0.235,-0.088 0.502,-0.02 0.693,0.144l3.437,2.853l3.273,2.769c0.369,0.312 0.566,0.809 0.44,1.276c-0.371,1.386 -1.669,2.41 -3.213,2.41c-1.833,0 -3.319,-1.443 -3.319,-3.223"/>
+    <path fill="#b1cc33" d="M21.818,33.265c3.992,4.886 2.805,12.462 2.805,12.462c0,0 -7.66,-0.347 -11.653,-5.233c-3.993,-4.886 -2.805,-12.462 -2.805,-12.462c0,0 7.661,0.351 11.653,5.233Z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-width="2" d="M21.818,33.276c3.992,4.886 2.805,12.462 2.805,12.462c0,0 -7.66,-0.347 -11.653,-5.233c-3.993,-4.886 -2.805,-12.462 -2.805,-12.462c0,0 7.661,0.351 11.653,5.233Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="4" stroke-width="2" d="M32.993,41.831c-3.438,3.548 -7.676,10.246 -5.829,20.735"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M43.012,26.373c-0.001,0 3.03,-3.917 -0.072,-7.5"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M46.41,29.025c0,1.657 -1.343,3 -3,3c-1.657,0 -3,-1.343 -3,-3"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M40.41,29.025c-1.657,0 -3,-1.343 -3,-3c0,-1.403 0.963,-2.581 2.264,-2.909"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30.765,22.439c-1.784,-2.219 -0.74,-5.933 2.333,-8.296c3.072,-2.362 7.01,-2.477 8.794,-0.258"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30.765,22.439c-1.784,-2.219 -0.74,-5.933 2.333,-8.296c3.072,-2.362 7.01,-2.477 8.794,-0.258"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M35.405,35.771c-2.675,0.977 -5.857,-1.206 -7.107,-4.874c-1.25,-3.669 -0.094,-7.434 2.581,-8.411"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M41.987,13.99c1.628,-2.337 5.486,-2.379 8.617,-0.094c3.13,2.284 4.348,6.03 2.72,8.366"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.476,22.232c2.748,0.747 4.085,4.366 2.987,8.083c-1.099,3.716 -4.216,6.123 -6.964,5.376"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M49.468,35.668c0.098,2.846 -2.964,5.193 -6.839,5.242c-3.875,0.049 -7.096,-2.218 -7.194,-5.064"/>
+    <circle cx="47.8246" cy="25.0419" r="1" fill="#000000" stroke="none"/>
+    <circle cx="47.7311" cy="19.4434" r="1" fill="#000000" stroke="none"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..dcabb51
--- /dev/null
+++ b/static/openmoji-svg-color/1F33B.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" stroke="none" d="M43.2779,20.5208c0.2751-0.6458,1.4448-3.2894,1.915-3.8596c2.5924-3.1437,7.5403-3.3442,7.5403-3.3442 s0.7413,4.8964-1.8486,8.0389c-0.7005,0.8493-1.573,1.4837-2.4733,1.9575l-1.8646,0.8496 c0.8166-0.4354,3.5897-1.6339,4.5743-1.7568c4.0433-0.5046,7.7775,2.7478,7.7775,2.7478s-2.8239,4.0682-6.8647,4.5736 c-1.5043,0.1875-2.9658-0.1449-4.2082-0.6363l-1.5123-0.5623c1.0721,0.4001,3.6449,1.5619,4.525,2.46 c2.8519,2.9103,2.5281,7.8516,2.5281,7.8516s-4.9474,0.2194-7.7984-2.6884c-0.6293-0.6423-1.8855-3.7761-2.2431-4.5413 l0.7669,2.3973c0.2385,0.7124,0.3923,1.4743,0.4068,2.268c0.0742,4.074-3.5548,7.4433-3.5548,7.4433s-3.7467-3.2383-3.822-7.3099 c-0.0151-0.834,1.3468-4.7053,1.3468-4.7053l-1.1396,2.622c-1.7718,2.4884-4.5155,4.1433-7.5548,4.4487 c-0.9254,0.093-1.5437,0.0656-1.5437,0.0656s-0.3238-4.9413,2.5281-7.8516c0.8287-0.8457,1.8343-1.4269,2.844-1.8259l1.711-0.7108 c-0.0038,0.0015-4.3141,1.4544-5.7507,1.2753c-4.0408-0.5054-6.8647-4.5736-6.8647-4.5736s3.7341-3.2524,7.7775-2.7478 c0.8371,0.1045,3.8427,1.578,4.5608,1.9202l-2.2099-1.2115c-0.7715-0.4485-1.5076-1.0231-2.1146-1.759 c-2.59-3.1425-1.8486-8.0389-1.8486-8.0389s4.9479,0.2005,7.5403,3.3441c0.5013,0.6079,1.8537,3.2157,2.135,3.9064l-0.9102-1.9404 c-0.2945-0.7916-0.49-1.6496-0.5066-2.5482c-0.0737-4.0736,3.5548-7.4433,3.5548-7.4433s3.7478,3.2359,3.822,7.3099 c0.0163,0.8967-0.1467,1.7592-0.411,2.5592"/>
+    <circle cx="40.7923" cy="26.177" r="5" fill="#F1B31C" stroke="none"/>
+    <path fill="#5C9E31" stroke="none" d="M23.3647,38.9665c2.3438,2.8687,1.6469,7.3169,1.6469,7.3169s-4.4974-0.2037-6.8419-3.0725 s-1.6469-7.3169-1.6469-7.3169S21.0209,36.1001,23.3647,38.9665z"/>
+    <path fill="#5C9E31" stroke="none" d="M36.6533,52.5013c2.8575-2.3347,7.2883-1.6405,7.2883-1.6405s-0.2029,4.4799-3.0605,6.8152 c-2.8575,2.3353-7.2883,1.6405-7.2883,1.6405S33.7981,54.836,36.6533,52.5013z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="40.7923" cy="26.177" r="5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M23.8586,38.5631 c2.7895,3.4142,1.96,8.708,1.96,8.708s-5.3525-0.2425-8.1427-3.6566s-1.96-8.708-1.96-8.708S21.0691,35.1517,23.8586,38.5631z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M43.2779,20.5208 c0.2751-0.6458,1.4448-3.2894,1.915-3.8596c2.5924-3.1437,7.5403-3.3442,7.5403-3.3442s0.7413,4.8964-1.8486,8.0389 c-0.7005,0.8493-1.573,1.4837-2.4733,1.9575l-1.8646,0.8496c0.8166-0.4354,3.5897-1.6339,4.5743-1.7568 c4.0433-0.5046,7.7775,2.7478,7.7775,2.7478s-2.8239,4.0682-6.8647,4.5736c-1.5043,0.1875-2.9658-0.1449-4.2082-0.6363 l-1.5123-0.5623c1.0721,0.4001,3.6449,1.5619,4.525,2.46c2.8519,2.9103,2.5281,7.8516,2.5281,7.8516s-4.9474,0.2194-7.7984-2.6884 c-0.6293-0.6423-1.8855-3.7761-2.2431-4.5413l0.7669,2.3973c0.2385,0.7124,0.3923,1.4743,0.4068,2.268 c0.0742,4.074-3.5548,7.4433-3.5548,7.4433s-3.7467-3.2383-3.822-7.3099c-0.0151-0.834,1.3468-4.7053,1.3468-4.7053l-1.1396,2.622 c-1.7718,2.4884-4.5155,4.1433-7.5548,4.4487c-0.9254,0.093-1.5437,0.0656-1.5437,0.0656s-0.3238-4.9413,2.5281-7.8516 c0.8287-0.8457,1.8343-1.4269,2.844-1.8259l1.711-0.7108c-0.0038,0.0015-4.3141,1.4544-5.7507,1.2753 c-4.0408-0.5054-6.8647-4.5736-6.8647-4.5736s3.7341-3.2524,7.7775-2.7478c0.8371,0.1045,3.8427,1.578,4.5608,1.9202 l-2.2099-1.2115c-0.7715-0.4485-1.5076-1.0231-2.1146-1.759c-2.59-3.1425-1.8486-8.0389-1.8486-8.0389s4.9479,0.2005,7.5403,3.3441 c0.5013,0.6079,1.8537,3.2157,2.135,3.9064l-0.9102-1.9404c-0.2945-0.7916-0.49-1.6496-0.5066-2.5482 c-0.0737-4.0736,3.5548-7.4433,3.5548-7.4433s3.7478,3.2359,3.822,7.3099c0.0163,0.8967-0.1467,1.7592-0.411,2.5592"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36.2415,51.9973 c3.4142-2.7895,8.708-1.96,8.708-1.96s-0.2425,5.3525-3.6566,8.1427c-3.4142,2.7902-8.708,1.96-8.708,1.96 S32.8301,54.7868,36.2415,51.9973z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M34.3663,41.0292 c-3.438,3.548-7.676,10.246-5.829,20.735"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..68b103c
--- /dev/null
+++ b/static/openmoji-svg-color/1F33C.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" stroke="none" d="M53.1986,26.1283c-0.2578-0.3518-0.2578-0.8302,0-1.182l0.781-1.066 c1.7236-2.3562,1.2108-5.6636-1.1455-7.3873c-1.0641-0.7784-2.3808-1.1311-3.6915-0.9887l-1.313,0.143 c-0.4329,0.0447-0.8455-0.1936-1.023-0.591l-0.533-1.208c-1.1787-2.6708-4.2994-3.8805-6.9702-2.7018 c-1.206,0.5322-2.1696,1.4958-2.7018,2.7018l-0.533,1.209c-0.1785,0.3963-0.5906,0.6339-1.023,0.59l-1.313-0.143 c-2.9024-0.3146-5.5102,1.7833-5.8248,4.6857c-0.142,1.3104,0.2106,2.6265,0.9888,3.6903l0.781,1.066 c0.2578,0.3518,0.2578,0.8302,0,1.182l-0.78,1.066c-1.7242,2.3551-1.2128,5.6621,1.1423,7.3863 c1.0645,0.7794,2.3821,1.1324,3.6937,0.9897l1.313-0.143c0.4331-0.0472,0.8469,0.1915,1.023,0.59l0.533,1.208 c0.1352,0.2987,0.2972,0.5845,0.484,0.854c0.043,0.063,0.088,0.122,0.133,0.182c0.1707,0.2319,0.3604,0.4494,0.567,0.65 c0.019,0.019,0.037,0.039,0.056,0.057c0.5022,0.4685,1.0932,0.8316,1.738,1.068l0,0c0.5941,0.2236,1.2233,0.3394,1.858,0.342 c2.0993,0.0169,4.0045-1.2253,4.836-3.153l0.533-1.208c0.1757-0.3989,0.5896-0.638,1.023-0.591l1.313,0.143 c2.9023,0.3152,5.5106-1.7821,5.8258-4.6845c0.1423-1.3108-0.2103-2.6274-0.9888-3.6915L53.1986,26.1283z"/>
+    <path fill="#5C9E31" stroke="none" d="M10.0786,28.3983c-0.151,2.092-0.178,7.231,2.687,10.738s7.906,4.508,9.985,4.774 c0.151-2.092,0.178-7.232-2.687-10.738l0,0C17.1886,29.6553,12.1556,28.6643,10.0786,28.3983z"/>
+    <path fill="#F1B31C" stroke="none" d="M41.4376,21.5373c-2.2091,0-4,1.7909-4,4s1.7909,4,4,4s4-1.7909,4-4S43.6468,21.5373,41.4376,21.5373z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="41.4376" cy="25.5373" r="5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M20.8366,32.5393 c3.992,4.886,2.805,12.462,2.805,12.462s-7.66-0.347-11.653-5.233s-2.805-12.462-2.805-12.462S16.8436,27.6533,20.8366,32.5393z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M32.0106,41.0902 c-3.438,3.548-7.676,10.246-5.829,20.735"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M47.1886,13.4433 l0.533,1.209l1.313-0.143c3.4507-0.3755,6.5525,2.1174,6.9281,5.5682c0.1698,1.5599-0.2501,3.1268-1.177,4.3928l-0.78,1.066 l0.78,1.066c2.0506,2.8007,1.4425,6.7334-1.3582,8.784c-1.266,0.9269-2.833,1.3468-4.3928,1.177l-1.313-0.143l-0.533,1.209 c-1.4014,3.1756-5.1118,4.6139-8.2875,3.2125c-1.434-0.6328-2.5797-1.7786-3.2125-3.2125l-0.533-1.209l-1.313,0.143 c-3.4507,0.3755-6.5525-2.1174-6.928-5.5682c-0.1697-1.5599,0.2501-3.1268,1.177-4.3928l0.78-1.066l-0.78-1.066 c-2.0506-2.8007-1.4425-6.7334,1.3582-8.784c1.266-0.9269,2.833-1.3468,4.3928-1.177l1.313,0.143l0.533-1.209 c1.4014-3.1756,5.1118-4.6139,8.2875-3.2125C45.4101,10.8635,46.5558,12.0093,47.1886,13.4433z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..797ff96
--- /dev/null
+++ b/static/openmoji-svg-color/1F33D.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" stroke="#FCEA2B" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M38.6406,52.917 L23.5191,37.7852c-8.8335-8.8335-12.0384-17.6975-8.58-21.1661c0.9229-0.9127,2.2211-1.3691,3.7931-1.3691 c0.5679,0,1.1663,0.0608,1.8052,0.1724c4.2596,0.7809,9.9188,4.1278,15.5678,9.7768l3.4584,3.4584 c-0.8316,1.3286-1.643,2.789-2.3225,4.3509C34.7056,38.7487,33.7523,45.9089,38.6406,52.917z"/>
+    <path fill="#FCEA2B" d="M52.3017,53.9819c-3.4584,3.4685-9.4522,3.1338-13.3264-0.7302l-0.3346-0.3346 c-4.8884-7.0081-3.9351-14.1682-1.3996-19.9085c0.6795-1.5619,1.4908-3.0223,2.3225-4.3509l12.008,11.9979 C55.4356,44.5296,55.7703,50.5234,52.3017,53.9819z"/>
+    <path fill="#5C9E31" stroke="#5C9E31" stroke-miterlimit="10" stroke-width="2" d="M55.9832,56.1928 c-3.6714,4.3001-10.152,4.4928-14.0668,0.5679c-0.1319-0.1319-0.2535-0.2535-0.3752-0.3955 c-1.1359-1.1359-2.0994-2.2921-2.9006-3.4482c-4.8884-7.0081-3.9351-14.1682-1.3996-19.9085 c0.6795-1.5619,1.4908-3.0223,2.3225-4.3509c2.6065-4.148,5.5172-6.9573,6.075-7.4847c0.0305-0.0304,0.0913-0.0101,0.0913,0.0406 c0.0304,1.3387,0.4868,12.6165,9.5232,21.805C58.7723,46.5985,59.2388,52.3693,55.9832,56.1928z"/>
+    <path fill="#B1CC33" d="M55.4439,43.1392c3.9189,3.9189,3.7265,10.4004-0.5773,14.0676c-3.821,3.2558-9.5884,2.7869-13.1692-0.7314 c-9.1932-9.0327-20.4663-9.4964-21.8012-9.5195c-0.0506-0.0009-0.0777-0.0591-0.043-0.096 c1.404-1.4949,19.344-19.9446,35.1903-4.0983C55.1807,42.8875,55.3123,43.0076,55.4439,43.1392z"/>
+    <path fill="#FCEA2B" d="M36.1052,25.1992c-5.649-5.649-11.3082-8.9958-15.5678-9.7768c-0.6389-0.1115-1.2373-0.1724-1.8052-0.1724 c-1.572,0-2.8702,0.4564-3.7931,1.3691c-3.4584,3.4686-0.2535,12.3326,8.58,21.1661"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2" d="M55.4439,43.1392 c3.9189,3.9189,3.7265,10.4004-0.5773,14.0676c-3.821,3.2558-9.5884,2.7869-13.1692-0.7314 c-9.1932-9.0327-20.4663-9.4964-21.8012-9.5195c-0.0506-0.0009-0.0777-0.0591-0.043-0.096 c1.404-1.4949,19.344-19.9446,35.1903-4.0983C55.1807,42.8875,55.3123,43.0076,55.4439,43.1392z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M37.4872,32.4593 c0.6253-1.3559,1.3429-2.6301,2.0763-3.8017c2.6065-4.148,5.5172-6.9573,6.075-7.4847c0.0305-0.0304,0.0913-0.0101,0.0913,0.0406 c0.0198,0.8707,0.2197,5.9457,2.8433,11.9158l0.2619,0.5604"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M36.1052,25.1992 c-5.649-5.649-11.3082-8.9958-15.5678-9.7768c-0.6389-0.1115-1.2373-0.1724-1.8052-0.1724c-1.572,0-2.8702,0.4564-3.7931,1.3691 c-3.4584,3.4686-0.2535,12.3326,8.58,21.1661"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a1e6fa6
--- /dev/null
+++ b/static/openmoji-svg-color/1F33E.svg
@@ -0,0 +1,51 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <ellipse cx="35.8096" cy="10.1616" rx="3.4814" ry="5.1616" fill="#f4aa41"/>
+    <ellipse cx="31.287" cy="19.2067" rx="3.4814" ry="5.1616" transform="translate(-4.4175 27.7488) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="27.3474" rx="3.4814" ry="5.1616" transform="translate(-10.1737 30.1331) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="35.488" rx="3.4814" ry="5.1616" transform="translate(-15.93 32.5174) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="43.6286" rx="3.4814" ry="5.1616" transform="translate(-21.6863 34.9018) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="51.7692" rx="3.4814" ry="5.1616" transform="translate(-27.4426 37.2861) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="19.2067" rx="5.1616" ry="3.4814" transform="translate(-1.6567 34.414) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="27.3474" rx="5.1616" ry="3.4814" transform="translate(-7.4129 36.7983) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="35.488" rx="5.1616" ry="3.4814" transform="translate(-13.1692 39.1826) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="43.6286" rx="5.1616" ry="3.4814" transform="translate(-18.9255 41.5669) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="51.7692" rx="5.1616" ry="3.4814" transform="translate(-24.6818 43.9513) rotate(-45)" fill="#f1b31c"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M35.79,56v9"/>
+    <ellipse cx="35.8096" cy="10.1616" rx="3.4814" ry="5.1616" fill="#f4aa41"/>
+    <ellipse cx="31.287" cy="19.2067" rx="3.4814" ry="5.1616" transform="translate(-4.4175 27.7488) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="27.3474" rx="3.4814" ry="5.1616" transform="translate(-10.1737 30.1331) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="35.488" rx="3.4814" ry="5.1616" transform="translate(-15.93 32.5174) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="43.6286" rx="3.4814" ry="5.1616" transform="translate(-21.6863 34.9018) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="51.7692" rx="3.4814" ry="5.1616" transform="translate(-27.4426 37.2861) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="19.2067" rx="5.1616" ry="3.4814" transform="translate(-1.6567 34.414) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="27.3474" rx="5.1616" ry="3.4814" transform="translate(-7.4129 36.7983) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="35.488" rx="5.1616" ry="3.4814" transform="translate(-13.1692 39.1826) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="43.6286" rx="5.1616" ry="3.4814" transform="translate(-18.9255 41.5669) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="51.7692" rx="5.1616" ry="3.4814" transform="translate(-24.6818 43.9513) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="35.8096" cy="10.1616" rx="3.4814" ry="5.1616" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="19.2067" rx="3.4814" ry="5.1616" transform="translate(-4.4175 27.7488) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="27.3474" rx="3.4814" ry="5.1616" transform="translate(-10.1737 30.1331) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="35.488" rx="3.4814" ry="5.1616" transform="translate(-15.93 32.5174) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="43.6286" rx="3.4814" ry="5.1616" transform="translate(-21.6863 34.9018) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="31.287" cy="51.7692" rx="3.4814" ry="5.1616" transform="translate(-27.4426 37.2861) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="19.2067" rx="5.1616" ry="3.4814" transform="translate(-1.6567 34.414) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="27.3474" rx="5.1616" ry="3.4814" transform="translate(-7.4129 36.7983) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="35.488" rx="5.1616" ry="3.4814" transform="translate(-13.1692 39.1826) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="43.6286" rx="5.1616" ry="3.4814" transform="translate(-18.9255 41.5669) rotate(-45)" fill="#f1b31c"/>
+    <ellipse cx="40.713" cy="51.7692" rx="5.1616" ry="3.4814" transform="translate(-24.6818 43.9513) rotate(-45)" fill="#f4aa41"/>
+  </g>
+  <g id="line">
+    <ellipse cx="35.8096" cy="10.1616" rx="3.4814" ry="5.1616" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="31.287" cy="19.2067" rx="3.4814" ry="5.1616" transform="translate(-4.4175 27.7488) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="31.287" cy="27.3474" rx="3.4814" ry="5.1616" transform="translate(-10.1737 30.1331) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="31.287" cy="35.488" rx="3.4814" ry="5.1616" transform="translate(-15.93 32.5174) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="31.287" cy="43.6286" rx="3.4814" ry="5.1616" transform="translate(-21.6863 34.9018) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="31.287" cy="51.7692" rx="3.4814" ry="5.1616" transform="translate(-27.4426 37.2861) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="40.713" cy="19.2067" rx="5.1616" ry="3.4814" transform="translate(-1.6567 34.414) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="40.713" cy="27.3474" rx="5.1616" ry="3.4814" transform="translate(-7.4129 36.7983) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="40.713" cy="35.488" rx="5.1616" ry="3.4814" transform="translate(-13.1692 39.1826) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="40.713" cy="43.6286" rx="5.1616" ry="3.4814" transform="translate(-18.9255 41.5669) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="40.713" cy="51.7692" rx="5.1616" ry="3.4814" transform="translate(-24.6818 43.9513) rotate(-45)" fill="none" stroke="#000000" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f3c95fe
--- /dev/null
+++ b/static/openmoji-svg-color/1F33F.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#B1CC33" stroke="none" d="M36.8349,18.0781c1.7393,1.6583,1.6481,4.5775,1.6481,4.5775s-2.9114,0.2303-4.651-1.428 c-1.7396-1.6582-1.6481-4.5775-1.6481-4.5775S35.0958,16.4213,36.8349,18.0781z"/>
+    <path fill="#5C9E31" stroke="none" d="M42.0884,54.3627c-4.6114,1.465-9.3345-1.6943-9.3345-1.6943s2.7546-5.5346,7.3663-7.0003 s9.3345,1.6943,9.3345,1.6943S46.6971,52.8966,42.0884,54.3627z"/>
+    <path fill="#B1CC33" stroke="none" d="M49.0484,35.6919c-3.6542,1.0489-7.2941-1.5366-7.2941-1.5366s2.2856-4.2862,5.9401-5.3357 s7.2941,1.5366,7.2941,1.5366S52.7005,34.642,49.0484,35.6919z"/>
+    <path fill="#5C9E31" stroke="none" d="M27.0179,32.1509c3.0883,2.3003,3.5096,6.9616,3.5096,6.9616s-4.5864,0.9311-7.6753-1.3691 c-3.0889-2.3002-3.5096-6.9616-3.5096-6.9616S23.9302,29.8529,27.0179,32.1509z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36.8349,18.0781 c1.7393,1.6583,1.6481,4.5775,1.6481,4.5775s-2.9114,0.2303-4.651-1.428c-1.7396-1.6582-1.6481-4.5775-1.6481-4.5775 S35.0958,16.4213,36.8349,18.0781z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M27.0179,32.1509 c3.0883,2.3003,3.5096,6.9616,3.5096,6.9616s-4.5864,0.9311-7.6753-1.3691c-3.0889-2.3002-3.5096-6.9616-3.5096-6.9616 S23.9302,29.8529,27.0179,32.1509z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42.0884,54.3627 c-4.6114,1.465-9.3345-1.6943-9.3345-1.6943s2.7546-5.5346,7.3663-7.0003s9.3345,1.6943,9.3345,1.6943 S46.6971,52.8966,42.0884,54.3627z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M49.0484,35.6919 c-3.6542,1.0489-7.2941-1.5366-7.2941-1.5366s2.2856-4.2862,5.9401-5.3357s7.2941,1.5366,7.2941,1.5366 S52.7005,34.642,49.0484,35.6919z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39.9046,25.7818 c0,4.7785-2.8879,10.0608-4.8815,13.1378c-0.8136,1.2558-1.7383,2.4273-2.7031,3.5711c-2.5753,3.0534-5.2237,8.2176-3.876,15.8715"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cffeb3a
--- /dev/null
+++ b/static/openmoji-svg-color/1F340.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#B1CC33" stroke="none" d="M48.8683,32.5567l-3.6904-3.0993l4.6308,1.3342c2.4301,0.4831,4.6846,0.3218,5.7975-1.7671 c1.113-2.089,0.3218-4.6848-1.7671-5.7977l-1.8912-1.0076l0.3358-0.6302l0.6718-1.2609c1.113-2.089,0.3217-4.6845-1.7672-5.7975 c-2.089-1.113-4.0135-0.0094-5.7975,1.7671l-3.0993,3.6905l1.3342-4.6309c0.4889-2.365,0.3217-4.6845-1.7672-5.7975 s-4.6846-0.3218-5.7975,1.7671l-1.0076,1.8912l-0.6304-0.3359l-1.2608-0.6717c-2.089-1.113-4.6847-0.3216-5.7976,1.7674 s-0.1912,4.1826,1.7672,5.7975l4.5599,3.5592l0.0131,0.0103l-4.5529-1.4901c-0.8837-0.2891-1.7981-0.4974-2.7272-0.5326 c-1.6529-0.0626-3.0631,0.3703-3.9169,1.7848c-1.2833,2.126-0.3442,4.934,1.8474,6.1016l1.6972,0.9042l-0.3359,0.6305 l-0.5832,1.0946c-1.1477,2.1542-0.3756,4.9596,1.816,6.034c2.0382,0.9996,3.9666,0.0256,5.6601-1.8373l3.0993-3.6905 l-1.3342,4.6309c-0.5042,2.0202-0.3217,4.6845,1.7672,5.7975c2.089,1.113,4.6846,0.3218,5.7975-1.7671l1.0077-1.8914l0.6304,0.3359 l1.2608,0.6717c2.089,1.113,4.6846,0.3218,5.7975-1.7671C51.7485,36.2653,50.8871,34.2885,48.8683,32.5567z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M30.3663,41.0292 c-3.438,3.548-7.676,10.246-5.829,20.735"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M45.1016,29.3352l4.5993,1.439c2.4184,0.5383,4.6761,0.4281,5.8362-1.635s0.4281-4.6761-1.635-5.8362l-1.8678-1.0503 l0.3501-0.6226l0.7002-1.2452c1.1601-2.0631,0.4281-4.6761-1.635-5.8362s-4.0122-0.1006-5.8362,1.635l-3.1823,3.619"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M35.5692,32.0058l-1.439,4.5993c-0.5499,2.0082-0.4281,4.6761,1.635,5.8362s4.6761,0.4281,5.8362-1.635l1.0503-1.8678 l0.6226,0.3501l1.2452,0.7002c2.0631,1.1601,4.6761,0.4281,5.8362-1.635s0.3439-4.059-1.635-5.8362l-3.619-3.1823"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M33.7703,22.9634l-4.518-1.5931c-0.8768-0.3092-1.7863-0.5383-2.7143-0.5946c-1.651-0.1002-3.0707,0.3006-3.9564,1.6953 c-1.3313,2.0963-0.4564,4.925,1.7081,6.1422l1.6762,0.9426l-0.3501,0.6226l-0.6079,1.0811 c-1.1963,2.1275-0.4881,4.9496,1.6785,6.0737c2.015,1.0455,3.965,0.1156,5.7005-1.7084l3.1823-3.619"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M42.4311,19.8028l1.439-4.5993c0.5425-2.3533,0.4281-4.6761-1.635-5.8362s-4.6761-0.4281-5.8362,1.635L35.3486,12.87 l-0.6226-0.3501l-1.2452-0.7002c-2.0631-1.1601-4.6761-0.4281-5.8362,1.635c-1.1601,2.0631-0.2862,4.1772,1.635,5.8362 l4.4907,3.6725"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f0ce230
--- /dev/null
+++ b/static/openmoji-svg-color/1F341.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#f4aa41" stroke="none" d="M36.0441,11.1661c3.6923,4.6154,5.5385,8.3077,6.4615,15.6923c0.4173,3.3383,0,5.5385-0.2838,7.9244 c0,0,11.32-9.7705,18.7047-7.0013c0,0-6.4615,6.4615-7.3846,9.2308c-0.9231,2.7692-2.7692,6.4615-6.4615,6.4615 c0,0,0,4.6154,10.1539,2.7692c0,0-6.4615,10.1539-17.5385,5.5385c0,0-1.8462,0.9231-1.8462,7.3846h-0.9231h-1.7648h-0.9231 c0-6.4615-1.8462-7.3846-1.8462-7.3846C21.3155,56.3969,14.854,46.243,14.854,46.243c10.1538,1.8462,10.1538-2.7692,10.1538-2.7692 c-3.6923,0-5.5385-3.6923-6.4615-6.4615c-0.9231-2.7692-7.3846-9.2308-7.3846-9.2308c7.3846-2.7692,18.7047,7.0013,18.7047,7.0013 c-0.2838-2.3859-0.7011-4.5861-0.2838-7.9244C30.5056,19.4738,32.3518,15.7815,36.0441,11.1661L36.0441,11.1661z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36.0441,10.9064c3.6923,4.6154,5.5385,8.3077,6.4615,15.6923c0.4173,3.3383,0,5.5385-0.2838,7.9244 c0,0,11.32-9.7705,18.7047-7.0013c0,0-6.4615,6.4615-7.3846,9.2308c-0.9231,2.7692-2.7692,6.4615-6.4615,6.4615 c0,0,0,4.6154,10.1539,2.7692c0,0-6.4615,10.1539-17.5385,5.5385c0,0-1.8462,0.9231-1.8462,7.3846h-0.9231h-1.7648h-0.9231 c0-6.4615-1.8462-7.3846-1.8462-7.3846c-11.0769,4.6154-17.5385-5.5385-17.5385-5.5385 c10.1538,1.8462,10.1538-2.7692,10.1538-2.7692c-3.6923,0-5.5385-3.6923-6.4615-6.4615c-0.9231-2.7692-7.3846-9.2308-7.3846-9.2308 c7.3846-2.7692,18.7047,7.0013,18.7047,7.0013c-0.2838-2.3859-0.7011-4.5861-0.2838-7.9244 C30.5056,19.2141,32.3518,15.5218,36.0441,10.9064L36.0441,10.9064z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2992515
--- /dev/null
+++ b/static/openmoji-svg-color/1F342.svg
@@ -0,0 +1,10 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#a57939" d="M55.732,36.689c5.4323,6.2313,4.1316,16.317,4.1316,16.317s-9.9309-.223-15.3631-6.4543-4.1316-16.317-4.1316-16.317S50.4152,30.3037,55.732,36.689Z"/>
+    <path fill="#e27022" d="M19.7623,22.3615C26.1543,17.0075,36.05,18.5,36.05,18.5s-.47,10.065-6.7623,15.2543S13,37.6159,13,37.6159,13.37,27.7156,19.7623,22.3615Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19.7623,22.3615C26.1543,17.0075,36.05,18.5,36.05,18.5s-.47,10.065-6.7623,15.2543S13,37.6159,13,37.6159,13.37,27.7156,19.7623,22.3615Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M55.732,36.689c5.4323,6.2313,4.1316,16.317,4.1316,16.317s-9.9309-.223-15.3631-6.4543-4.1316-16.317-4.1316-16.317S50.4152,30.3037,55.732,36.689Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..be4f878
--- /dev/null
+++ b/static/openmoji-svg-color/1F343.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" d="M28.919,27.91c8.1523-6.8285,20.7734-4.925,20.7734-4.925S49.0929,35.8214,41.0678,42.44s-20.7734,4.9249-20.7734,4.9249S20.7668,34.738,28.919,27.91Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M29.63,27.91c8.1523-6.8285,20.7734-4.925,20.7734-4.925S49.804,35.8214,41.7789,42.44s-20.7734,4.9249-20.7734,4.9249S21.4778,34.738,29.63,27.91Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M54.0855,38.5427a10.2458,10.2458,0,0,1-1.58,4.7407,11.317,11.317,0,0,1-7.901,4.7406"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M58.8261,41.7031a10.2451,10.2451,0,0,1-1.58,4.7407,11.3173,11.3173,0,0,1-7.9011,4.7406"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.7406,30.6417a10.2455,10.2455,0,0,1,1.58-4.7407A11.3173,11.3173,0,0,1,27.2219,21.16"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13,27.4813a10.2451,10.2451,0,0,1,1.58-4.7407A11.3173,11.3173,0,0,1,22.4813,18"/>
+    <line x1="18" x2="20.901" y1="50" y2="47.024" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..22c872e
--- /dev/null
+++ b/static/openmoji-svg-color/1F344-200D-1F7EB.svg
@@ -0,0 +1,12 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d0cfce" stroke-width="0" d="M27.6041,40.5s1.0376,4,0,6-4.291,7.4661,2.0751,9c4.1502,1,10.2892,1.0277,13.4882,0,1.5563-.5,2.7408-4.2944,2.3732-6.5-.5-3-1.5-5-.5-8"/>
+    <path fill="#a57939" stroke-width="0" d="M36.5405,15.0058c-5.7532.1508-17.7639,1.7182-20,12.275-2,9.4423,6,13.2192,11,13.2192h17s14,0,12-12.275c-1.7001-10.434-14.0389-13.3754-20-13.2192Z"/>
+    <ellipse cx="25.0405" cy="23.5039" rx="4.382" ry="2.9089" transform="translate(-9.2718 22.0463) rotate(-40.7545)" fill="#d0cfce" stroke-width="0"/>
+    <path fill="#d0cfce" stroke-width="0" d="M27.7459,46s2.5816,2.9363,8.2533,1.6302c0,0,.0929,3.2719,0,4.3535s-.6673,2.6121-2.3354,3.0475c-2.4915.6502-6.3107-.2851-7.3398-1.7414-1.1156-1.5787,1.422-7.2898,1.422-7.2898h-.0001Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M27.5405,40.5s1,4,0,6-2.5,7.5,2,9c3.9115,1.3038,12.5,1.5,14.5-1.5s0-5,0-8"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="M36.2058,14.5058c-5.7532.1508-17.7639,1.7182-20,12.275-2,9.4423,6,13.2192,11,13.2192h17s14,0,12-12.275c-1.7001-10.434-14.0389-13.3754-20-13.2192Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..67e55cf
--- /dev/null
+++ b/static/openmoji-svg-color/1F344.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#D0CFCE" stroke="#D0CFCE" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M27.1244,42.9616v11.2545c0,0-0.1171,1.9012,2.5264,1.9012s11.7694,0,11.7694,0s2.2545,0.5562,2.2545-2.4086 c0-1.6448,0-6.6322,0-10.7472"/>
+    <path fill="#D0CFCE" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M27.1244,46.7322v8.0389c0,0-0.1171,1.358,2.5264,1.358s11.7694,0,11.7694,0s2.2545,0.3973,2.2545-1.7204 c0-1.1748,0-4.7373,0-7.6766"/>
+    <path fill="#EA5A47" stroke="none" d="M60.996,33.9584c0,8.8366-11.1929,9-25,9s-25-0.1634-25-9s11.1929-23,25-23S60.996,25.1218,60.996,33.9584 z"/>
+    <path fill="none" stroke="#FFFFFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.996,33.9584c0,8.8366-11.1929,9-25,9s-25-0.1634-25-9s11.1929-23,25-23S60.996,25.1218,60.996,33.9584z"/>
+    <path fill="#D22F27" stroke="none" d="M60.996,33.9591c0,8.8374-11.194,9.0023-25.0039,9.0023c33.1736-7.5962,0-32.0031,0-32.0031 C49.802,10.9583,60.996,25.1217,60.996,33.9591z"/>
+    <path fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M22.7421,15.3869c0,0,4.6919,14.1211-10.9254,14.0122C11.8167,29.399,14.8217,20.3354,22.7421,15.3869z"/>
+    <ellipse cx="35.996" cy="30.1489" rx="8.0208" ry="6.1759" transform="matrix(0.9993 -0.0382 0.0382 0.9993 -1.1252 1.3968)" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="#D0CFCE" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.1551,15.3869c0,0-4.6919,14.1211,10.9254,14.0122C60.0804,29.399,57.0754,20.3354,49.1551,15.3869z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M27.1244,46.7322v8.0389c0,0-0.1171,1.358,2.5264,1.358s11.7694,0,11.7694,0s2.2545,0.3973,2.2545-1.7204 c0-1.1748,0-4.7373,0-7.6766"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.996,33.9584c0,8.8366-11.1929,9-25,9s-25-0.1634-25-9s11.1929-23,25-23S60.996,25.1218,60.996,33.9584z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.996,33.9584c0,8.8366-11.1929,9-25,9s-25-0.1634-25-9s11.1929-23,25-23S60.996,25.1218,60.996,33.9584z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M22.7421,15.3869c0,0,4.6919,14.1211-10.9254,14.0122C11.8167,29.399,14.8217,20.3354,22.7421,15.3869z"/>
+    <ellipse cx="35.996" cy="30.1489" rx="8.0208" ry="6.1759" transform="matrix(0.9993 -0.0382 0.0382 0.9993 -1.1252 1.3968)" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.1551,15.3869c0,0-4.6919,14.1211,10.9254,14.0122C60.0804,29.399,57.0754,20.3354,49.1551,15.3869z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b3ba6af
--- /dev/null
+++ b/static/openmoji-svg-color/1F345.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <ellipse cx="35.8248" cy="37.5975" rx="25.0149" ry="22.3817" fill="#EA5A47" stroke="#EA5A47" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8"/>
+    <path fill="#D22F27" stroke="#D22F27" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.8" d="M60.5279,37.5975 c0,12.3648-10.89,22.3817-24.703,22.3817c17.4001-4.1037,31.9603-32.9321,0-44.7634c5.0852,0,9.8164,1.3576,13.7651,3.6901 C56.3674,22.9092,60.5279,29.7846,60.5279,37.5975z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M46.3245,15.8489 c-0.384,1.3824-0.9937,3.0311-2.4357,4.235C38,25,30.2513,23.2876,26.8173,20.0838c-1.3604-1.2836-2.0407-2.8525-2.4246-4.235 c-0.6364-2.2821-0.3621-4.1691-0.3621-4.1691s2.2821-0.3291,4.8384,0.5815c0.8668,0.3072,1.7664,0.757,2.6222,1.4044 c0.4827-3.3682,2.7319-5.6174,3.5547-6.3415l0.3072-0.2523l0.3072,0.2523c0.8229,0.7242,3.0721,2.9733,3.5548,6.3415 c0.8557-0.6473,1.7554-1.0971,2.6221-1.4044c2.5564-0.9106,4.8384-0.5815,4.8384-0.5815S46.9609,13.5668,46.3245,15.8489z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50.3073,19.3462c6.3743,4.0565,10.5324,10.7195,10.5324,18.2513c0,12.3611-11.1995,22.3817-25.0149,22.3817 S10.81,49.9586,10.81,37.5975c0-7.3745,3.9861-13.9159,10.1357-17.9936"/>
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M46.3245,15.8489 c-0.384,1.3824-0.9937,3.0311-2.4357,4.235C38,25,30.2513,23.2876,26.8173,20.0838c-1.3604-1.2836-2.0407-2.8525-2.4246-4.235 c-0.6364-2.2821-0.3621-4.1691-0.3621-4.1691s2.2821-0.3291,4.8384,0.5815c0.8668,0.3072,1.7664,0.757,2.6222,1.4044 c0.4827-3.3682,2.7319-5.6174,3.5547-6.3415l0.3072-0.2523l0.3072,0.2523c0.8229,0.7242,3.0721,2.9733,3.5548,6.3415 c0.8557-0.6473,1.7554-1.0971,2.6221-1.4044c2.5564-0.9106,4.8384-0.5815,4.8384-0.5815S46.9609,13.5668,46.3245,15.8489z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cf687b8
--- /dev/null
+++ b/static/openmoji-svg-color/1F346.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#8967AA" stroke="#8967AA" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.62,23.81C60.85,35.44,57.21,45.79,51.5,51c-0.1,0.1-0.19,0.2-0.3,0.3c-0.2,0.21-0.4,0.42-0.62,0.62 c-0.3,0.29-0.61,0.58-0.93,0.86c-0.36,0.33-0.73,0.64-1.11,0.95c-0.18,0.15-0.37,0.29-0.56,0.44c-0.55,0.43-1.11,0.84-1.69,1.23 c-0.21,0.14-0.41,0.28-0.62,0.41c-6.09,3.93-13.56,5.84-21.26,5c-0.8-0.09-1.61-0.21-2.41-0.37c-1.18-0.27-2.28-0.68-3.31-1.2 c35.9-0.26,32.7225-32.51,32.6225-35.74L60.62,23.81z"/>
+    <path fill="#B399C8" stroke="#B399C8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43.34,22.61l-0.25-0.02C43.2,22.46,43.29,22.47,43.34,22.61z"/>
+    <path fill="#B399C8" stroke="#B399C8" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M18.69,59.24c-0.1-0.04-0.2-0.09-0.29-0.14c-5.33-2.86-8.39-8.83-7.12-14.91C12.85,36.67,20.41,31.81,28.15,33.33 c0,0,8.1,2.63,13.35-3.8c1.79-2.19,2.18-6.21,1.84-6.92l10.8,0.75l-2.9525-1.4225C51.2875,25.1675,54.59,58.98,18.69,59.24z"/>
+    <path fill="#5C9E31" stroke="#5C9E31" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M61.69,26.22c0,0-3.72,0.53-6.8-1.81c-0.54,3.78-3.52,6.01-3.52,6.01s-2.97-2.23-3.51-6.01c-0.71,0.54-1.46,0.93-2.19,1.2 c-2.42,0.92-4.62,0.61-4.62,0.61s-0.63-4.47,2.55-7.66c0.65-0.66,1.36-1.15,2.07-1.52c2.76-1.44,10.28-1.68,13.48,1.52 C62.34,21.75,61.69,26.22,61.69,26.22z"/>
+    <path fill="#B1CC33" stroke="none" d="M51.37,30.42c0,0-2.97-2.23-3.51-6.01c-0.71,0.54-1.46,0.93-2.19,1.2c-2.42,0.92-4.62,0.61-4.62,0.61 s-0.63-4.47,2.55-7.66c0.65-0.66,1.36-1.15,2.07-1.52C48.43,15.6,51.26,16,51.26,16L51.37,30.42z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.2755,30.4183c-0.0991,1.8395-0.539,3.8125-0.9248,5.6459C56.0433,51.986,40.7433,62.5965,24.4143,60.8059 c-0.8085-0.0847-1.617-0.2057-2.4133-0.3629c-7.4724-1.718-12.2498-8.9046-10.7186-16.2485 c1.568-7.5253,9.1261-12.389,16.868-10.8646c0,0,7.7474,1.9693,12.8504-3.1818"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50.7929,11.9832C50.1897,10.9538,49.0717,10,47,10"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M61.69,26.22c0,0-3.72,0.53-6.8-1.81c-0.54,3.78-3.52,6.01-3.52,6.01s-2.97-2.23-3.51-6.01c-0.71,0.54-1.46,0.93-2.19,1.2 c-2.42,0.92-4.62,0.61-4.62,0.61s-0.63-4.47,2.55-7.66c0.65-0.66,1.36-1.15,2.07-1.52c2.76-1.44,10.28-1.68,13.48,1.52 C62.34,21.75,61.69,26.22,61.69,26.22z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41.0008,30.1481c0.1285-0.1297,0.2554-0.264,0.3803-0.4029"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ce35b0f
--- /dev/null
+++ b/static/openmoji-svg-color/1F347.svg
@@ -0,0 +1,38 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b399c8" d="m32.33 37.54a6.688 6.688 0 0 1-6.688 6.688 6.688 6.688 0 0 1-6.688-6.688 6.688 6.688 0 0 1 6.688-6.688 6.688 6.688 0 0 1 6.688 6.688"/>
+    <path fill="#b399c8" d="m27.88 27.51a6.688 6.688 0 0 1-6.688 6.688 6.688 6.688 0 0 1-6.688-6.688 6.688 6.688 0 0 1 6.688-6.688 6.688 6.688 0 0 1 6.688 6.688"/>
+    <path fill="#b399c8" d="m31.22 34.2a6.684 6.684 0 1 0-5.897-3.531"/>
+    <path fill="#b399c8" d="m49.05 47.58a6.688 6.688 0 0 1-6.688 6.688 6.688 6.688 0 0 1-6.688-6.688 6.688 6.688 0 0 1 6.688-6.688 6.688 6.688 0 0 1 6.688 6.688"/>
+    <path fill="#b399c8" d="m37.91 47.58a6.688 6.688 0 0 1-6.688 6.688 6.688 6.688 0 0 1-6.688-6.688 6.688 6.688 0 0 1 6.688-6.688 6.688 6.688 0 0 1 6.688 6.688"/>
+    <path fill="#b399c8" d="m55.74 37.54a6.688 6.688 0 0 1-6.688 6.688 6.688 6.688 0 0 1-6.688-6.688 6.688 6.688 0 0 1 6.688-6.688 6.688 6.688 0 0 1 6.688 6.688"/>
+    <path fill="#b399c8" d="m43.48 36.43a6.688 6.688 0 0 1-6.688 6.688 6.688 6.688 0 0 1-6.688-6.688 6.688 6.688 0 0 1 6.688-6.688 6.688 6.688 0 0 1 6.688 6.688"/>
+    <path fill="#8967aa" d="m36.57 29.13a6.688 6.688 0 0 1 0 13.38"/>
+    <path fill="#8967aa" d="m57.82 27.18c0 3.693-1.239 5.486-4.762 4.377-4.713-1.483-8.869 0.0912-8.613-4.377 0.2117-3.687 2.994-6.688 6.688-6.688s6.688 2.994 6.688 6.688"/>
+    <path fill="#b399c8" d="m47.22 30.54a6.678 6.678 0 1 0-4.165 3.415"/>
+    <path fill="#b399c8" d="m43.48 57.61a6.688 6.688 0 0 1-6.688 6.688 6.688 6.688 0 0 1-6.688-6.688 6.688 6.688 0 0 1 6.688-6.688 6.688 6.688 0 0 1 6.688 6.688"/>
+    <path fill="#8967aa" d="m36.57 50.92a6.688 6.688 0 0 1 0 13.38"/>
+    <path fill="#8967aa" d="m42.16 40.89a6.688 6.688 0 0 1 0 13.38"/>
+    <path fill="#8967aa" d="m48.97 30.79a6.688 6.688 0 0 1 0 13.38"/>
+    <path fill="#8967aa" d="m41.08 20.88a6.688 6.688 0 0 1 0 13.38"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m37.01 21.82c-1.343-7.331-6.229-22.43-22.85-7.574"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" d="m54.34 32.9a6.679 6.672 0 1 0-8.112-10.32"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m30.48 40.42a6.625 6.619 0 0 1-0.949-3.418 6.706 6.699 0 0 1 5.462-6.562"/>
+    <ellipse cx="36.57" cy="57.34" rx="6.721" ry="6.715" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m36.57 50.62a6.721 6.715 0 0 0 0 13.43"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m42.17 53.98q0.2552 0 0.5059-0.01869"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m42.67 53.96a6.718 6.711 0 1 0-6.551-3.756"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m36.37 43.28a6.721 6.715 0 1 0-6.042 10.67"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m43.13 33.73a6.732 6.725 0 0 0-0.2801 6.416"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m47.91 43.84a6.721 6.715 0 1 0-4.783-10.11"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m30.41 32.75a6.721 6.715 0 1 0-6.157 11.06"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m24.25 43.81a6.775 6.768 0 0 0 1.112 0.09143"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m54.5 32.93a6.721 6.715 0 1 0-8.322-10.35"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m46.68 30.78a6.708 6.701 0 1 0-3.669 2.765"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m35.83 22.48a6.723 6.716 0 0 0-10.9 7.582"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2" d="m25.64 22.37a6.721 6.715 0 1 0-6.216 11.3"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m50.57 9.212s-3.357 7.635-15.68 5.496"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e12dcaf
--- /dev/null
+++ b/static/openmoji-svg-color/1F348.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" d="m52.6 12.6a28.14 28.14 0 0 1-39.8 39.8z"/>
+    <path fill="#f4aa41" d="m49.62 15.76c8.22 8.247 8.118 25.21-0.115 33.45-8.233 8.233-24.75 8.335-32.99 0.115z"/>
+    <path fill="#e27022" d="m41.67 23.53a12.9 12.9 0 0 1-17.94 17.94z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2.251" d="m52.01 12.6c0.1676 0.1676 0.3326 0.3368 0.4951 0.5076 10.49 11.02 10.32 28.47-0.4976 39.29-10.99 10.99-28.81 10.99-39.8 0.002471z"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2.251" d="m49.11 15.44c8.167 8.299 9.065 22.67-0.05274 32.99-8.942 10.13-25.08 8.628-33.27 0.3566z"/>
+    <path fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2.345" d="m41.09 23.53a12.9 12.9 0 0 1-17.94 17.94z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.251" d="m31.79 51.06c3.369 0.5372 9.099-0.9131 13.52-5.585 3.186-3.371 5.996-9.423 5.673-13.39"/>
+    <circle cx="50.54" cy="28.03" r="1.173"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a3a8794
--- /dev/null
+++ b/static/openmoji-svg-color/1F349.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#B1CC33" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M55.2257,56.7807 c-10.9878,10.9766-28.7798,10.9766-39.7676,0c-10.9765-10.9878-10.9765-28.7797,0-39.7675l2.6542,2.6542 c-9.5258,9.5145-9.5258,24.9447,0,34.4592c9.5145,9.5258,24.9447,9.5258,34.4592,0L55.2257,56.7807z"/>
+    <path fill="#EA5A47" stroke="#EA5A47" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M52.5715,54.1265c-9.5145,9.5258-24.9447,9.5258-34.4592,0c-9.5258-9.5145-9.5258-24.9447,0-34.4592L52.5715,54.1265"/>
+    <path fill="#EA5A47" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.5241,56.7181c-9.5196,6.8373-22.857,5.9734-31.4119-2.5916c-8.6198-8.6097-9.4396-22.0632-2.4594-31.5942"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M55.2257,56.7807 c-10.9878,10.9766-28.7798,10.9766-39.7676,0c-10.9765-10.9878-10.9765-28.7797,0-39.7675l2.6542,2.6542 c-9.5258,9.5145-9.5258,24.9447,0,34.4592c9.5145,9.5258,24.9447,9.5258,34.4592,0L55.2257,56.7807z"/>
+    <line x1="17.5157" x2="53.7223" y1="19.0707" y2="55.2773" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.5241,56.7181c-9.5196,6.8373-22.857,5.9734-31.4119-2.5916c-8.6198-8.6097-9.4396-22.0632-2.4594-31.5942"/>
+    <ellipse cx="31.8301" cy="46.9072" rx="1.687" ry="0.8435" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -23.8456 36.2461)" fill="#000000" stroke="none"/>
+    <ellipse cx="44.5541" cy="53.2691" rx="1.687" ry="0.8435" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -24.6174 47.1066)" fill="#000000" stroke="none"/>
+    <ellipse cx="31.8301" cy="54.8596" rx="1.687" ry="0.8435" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -29.4688 38.5753)" fill="#000000" stroke="none"/>
+    <ellipse cx="25.8167" cy="40.8938" rx="1.687" ry="0.8435" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -21.3547 30.2327)" fill="#000000" stroke="none"/>
+    <ellipse cx="19.4548" cy="28.1698" rx="1.687" ry="0.8435" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.2209 22.0073)" fill="#000000" stroke="none"/>
+    <ellipse cx="17.8643" cy="40.8938" rx="1.687" ry="0.8435" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -23.684 24.6094)" fill="#000000" stroke="none"/>
+    <ellipse cx="22.2812" cy="50.0862" rx="1.687" ry="0.8435" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -28.8903 30.4251)" fill="#000000" stroke="none"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..0bae722
--- /dev/null
+++ b/static/openmoji-svg-color/1F34A.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36.0002" cy="39.0732" r="21" fill="#f1b31c"/>
+    <circle cx="25.9999" cy="46.3461" r="0.9091"/>
+    <circle cx="26.909" cy="49.9825" r="0.9091"/>
+    <circle cx="29.6363" cy="47.2552" r="0.9091"/>
+    <path fill="#e27022" d="M49.2942,22.8145a9.6511,9.6511,0,0,1-2.5425,1.5039,9.46,9.46,0,0,1-1.7473.503A20.9459,20.9459,0,0,1,29.5317,59.0339,20.9849,20.9849,0,0,0,49.2942,22.8145Z"/>
+    <path fill="#b1cc33" d="M36,22.3263a7.2293,7.2293,0,0,1,4.2028.8654c3.5973,2.06,9.6312.0634,11.2842-5.3548A4.077,4.077,0,0,1,49.06,16.4748C46.5805,13.4882,38.8128,13.2635,36,22.3263Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M36,22.3263a7.2293,7.2293,0,0,1,4.2028.8654c3.5973,2.06,9.6312.0634,11.2842-5.3548A4.077,4.077,0,0,1,49.06,16.4748C46.5805,13.4882,38.8128,13.2635,36,22.3263Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M49.8321,24.6279A19.9974,19.9974,0,1,1,31.887,19.4968"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M31.3745,14.6242S36.4906,15.674,36,22.3263"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cae2dbe
--- /dev/null
+++ b/static/openmoji-svg-color/1F34B-200D-1F7E9.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" stroke-width="0" d="M20.0405,18s-5,10-4,15,5,20,23,15,17-14,17-14L20.0405,18"/>
+    <path fill="#5c9e31" stroke-width="0" d="M38.0405,27s4,12,6,13c.8944.4472,3,1,7-3,2-2,2.2649-3.3675,1-4-2-1-14-6-14-6Z"/>
+    <path fill="#5c9e31" stroke-width="0" d="M36.0405,28l-9,15s-2,4,6,4,9-3,9-5-6-14-6-14Z"/>
+    <path fill="#5c9e31" stroke-width="0" d="M34.0405,27s-13,2-14,3c-2,2-2,6,0,10s3.2929,3.7071,4,3c2-2,10-16,10-16Z"/>
+    <path fill="#5c9e31" stroke-width="0" d="M22.0405,21c-2,1-3,6-1,7s13-3,13-3c0,0-10.2111-4.8944-12-4Z"/>
+    <path fill="#fff" stroke-width="0" d="M26.4508,29.9179c.9179-.9179,4.5897-.9179,4.5897-.9179,0,0-.9179,2.7538-1.8359,3.6718-.3629.3629-1.7537.5065-1.8359,0-.156-.9611,1.8359-2.7538,1.8359-2.7538,0,0-1.3365.8-1.8359.9179-.8934.2109-1.2808-.5551-.9179-.9179h0Z"/>
+    <path fill="#fff" stroke-width="0" d="M35.8219,31s-1.6585,2.4877-.8292,4.1461,1.6585,0,1.6585-.8292-.8292-3.3169-.8292-3.3169h0Z"/>
+    <path fill="#fff" stroke-width="0" d="M40.0405,28.8473s1.4352,2.1527,2.1527,2.1527.8473-1,0-1.4352c-.5046-.2592-2.1527-.7176-2.1527-.7176h0Z"/>
+    <path fill="#5c9e31" stroke-width="0" d="M56.0405,34.4595c0,18.5454-18,24.6892-33,14.402s-3-30.8615-3-30.8615c0,0-11,25.7179,7,29.8328,19.9104,4.5516,29-16.4595,29-13.3733Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linejoin="round" stroke-width="2" d="M56.4437,35.2005c-.1519,18.0271-18.2015,23.8475-33.1168,13.7215-14.9152-10.126-2.7472-30.0242-2.7472-30.0242,0,0-11.2102,24.9065,6.7555,29.0579,19.8724,4.5921,29.1338-15.7551,29.1085-12.7552Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..fde3335
--- /dev/null
+++ b/static/openmoji-svg-color/1F34B.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fcea2b" d="m16.0302,55.9368c-1.5967-1.6729-1.9362-4.0928-1.0184-6.0812-4.2565-8.3473-1.6753-20.2596,6.9544-28.8894,8.6297-8.6298,20.542-11.211,28.8894-6.9545,2.026-.9351,4.4999-.5649,6.1752,1.1104,1.6753,1.6753,2.0455,4.1493,1.1104,6.1752,4.2661,8.3571,1.6753,20.2596-6.9545,28.8894s-20.5323,11.2207-28.8894,6.9544c-2.026.9351-4.5.5649-6.1753-1.1103-.031-.031-.0616-.0624-.0918-.094"/>
+    <path fill="#f4aa41" d="m50.5556,50.0124c-8.631,8.631-20.5347,11.2212-28.8945,6.9571,34.6828,0,36.3371-35.1456,36.3371-35.1456,4.2734,8.3505,1.179,19.5576-7.4426,28.1885Z"/>
+    <path fill="#f4aa41" d="m30.4541,59.9883c-3.2764,0-10.4541-2.9883-10.4541-2.9883l-2.5-1.0303h4.1611c13.9883,0,24.1807-5.7363,30.2949-17.0479,4.5869-8.4883,5.0391-17.0591,5.043-17.1445l.1768-3.7549,1.7129,3.3462c4.4639,8.7231,1.4707,20.2446-7.626,29.3511h0c-6,6-13.6895,9.2686-20.8086,9.2686Zm-3.5254-2.3028c7.4531,1.3506,16.2686-1.7285,22.9199-8.3799,7.0859-7.0947,10.2578-16.001,8.5996-23.3125-1.6289,8.8477-7.9189,29.0635-31.5195,31.6924Z"/>
+    <path fill="#f4aa41" d="m56.9613,14.9006s1.8262,4.8233.9674,7.234l-4.1007-4.1006,3.1333-3.1334"/>
+    <path fill="#f4aa41" d="m16.8259,56.2078s4.3959,1.9419,6.6375.7073l-4.7058-3.3893-1.9317,2.682"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m16.0302,55.9368c-1.5967-1.6729-1.9362-4.0928-1.0184-6.0812-4.2565-8.3473-1.6753-20.2596,6.9544-28.8894,8.6297-8.6298,20.542-11.211,28.8894-6.9545,2.026-.9351,4.4999-.5649,6.1752,1.1104,1.6753,1.6753,2.0455,4.1493,1.1104,6.1752,4.2661,8.3571,1.6753,20.2596-6.9545,28.8894s-20.5323,11.2207-28.8894,6.9544c-2.026.9351-4.5.5649-6.1753-1.1103-.031-.031-.0616-.0624-.0918-.094"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="m16.0302,55.9368c-1.5967-1.6729-1.9362-4.0928-1.0184-6.0812-4.2565-8.3473-1.6753-20.2596,6.9544-28.8894,8.6297-8.6298,20.542-11.211,28.8894-6.9545,2.026-.9351,4.4999-.5649,6.1752,1.1104,1.6753,1.6753,2.0455,4.1493,1.1104,6.1752,4.2661,8.3571,1.6753,20.2596-6.9545,28.8894s-20.5323,11.2207-28.8894,6.9544c-2.026.9351-4.5.5649-6.1753-1.1103-.031-.031-.0616-.0624-.0918-.094"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..7f142c8
--- /dev/null
+++ b/static/openmoji-svg-color/1F34C.svg
@@ -0,0 +1,11 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fcea2b" stroke="#fcea2b" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75" d="m50.46,50.44c-10.9856,12.9865-25.1263,11.6682-34.8931,6.8853-.3134-.1535-.4574-.5248-.5316-.8658h0c-.1926-.8861.4504-1.7241,1.3547-1.7915,5.1942-.3873,12.9572-2.15,21.7079-9.6086,1.1118-.9477,2.1264-2.0092,3.023-3.1625,4.8861-6.2847,9.1044-14.3883,9.3487-20.9704.0191-.5158.4228-.9361.9386-.9522,3.1225-.0975,2.6958-.2368,2.9494.3666,4.1634,9.9069,2.5163,22.0073-3.8909,30.0972l-.0068.0019Z"/>
+    <path fill="#f1b31c" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.75" d="m53.21,19.66c3.7161-1.2359,6.0438,20.6414-1.9939,30.488-11.8,11.01-23.6641,12.652-36.2541,5.914,25.96,5.489,39.47-15.38,38.25-36.4l-.002-.002Z"/>
+  </g>
+  <g id="line">
+    <line x1="52.09" x2="51.52" y1="15.49" y2="11.2" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m25.79,56.55c16.7-2.905,24.45-11.14,26.67-27.09"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m47.54,54.03c-8.106,7.212-23.05,9.45-32.43,2.757l-.4132-1.901c18.42-2.206,32.78-13.96,35.36-35.55,1.105-.0041,4.645-.3957,4.645-.3957,5.599,15.1,1.754,27.15-7.164,35.08l.0022.0097Z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..26e648d
--- /dev/null
+++ b/static/openmoji-svg-color/1F34D.svg
@@ -0,0 +1,22 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#A57939" stroke="#A57939" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M37.17,65.34h-1.26c-6.6,0-12-5.4-12-12V41.67c0-6.6,5.4-12,12-12h0.82c0,0,7.35,3.41,7.35,8c0,4.58,0,18,0,18v2.31 C44.08,57.98,44.5,65.34,37.17,65.34z"/>
+    <path fill="#6A462F" stroke="#6A462F" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M49.75,41.67v11.67c0,6.6-5.4,12-12,12h-0.58c7.33,0,6.91-7.36,6.91-7.36v-2.31c0,0,0-13.42,0-18c0-4.59-7.35-8-7.35-8h1.02 C44.35,29.67,49.75,35.07,49.75,41.67z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44.374,14.6787 c2.1344,0.044,3.8706,0.5836,3.8706,0.5836s-2.2161,2.2134-4.6058,5.5611c1.9403,0.0441,3.5029,0.5396,3.5029,0.5396 s-3.1148,3.1274-5.8109,7.4661c-1.8893,3.0393-4.5956,2.8191-4.5956,2.8191s-2.7063,0.2313-4.6058-2.8191 c-2.6961-4.3388-5.8109-7.4661-5.8109-7.4661s1.5625-0.4956,3.5029-0.5396c-2.3897-3.3476-4.6058-5.5611-4.6058-5.5611 s1.7361-0.5396,3.8706-0.5836c-2.2978-3.1275-4.3301-5.1536-4.3301-5.1536s7.9146-2.4337,10.9375,2.4336 c0.4391,0.7048,0.7762,1.3875,1.0417,2.0483c0.2553-0.6608,0.5923-1.3435,1.0315-2.0483 c3.0228-4.8673,10.9375-2.4336,10.9375-2.4336S46.6718,11.5513,44.374,14.6787z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43.6387,20.8234c-3.0513,1.236-3.5224,3.1594-4.3209,4.0898"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44.374,14.6787c0,0-4.4382,1.5439-4.6699,4.3635"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M29.8562,20.8234c3.0513,1.236,3.5224,3.1594,4.3209,4.0898"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M29.1209,14.6787c0,0,4.4382,1.5439,4.6699,4.3635"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M45.3047,32.3685c2.7068,2.205,4.443,5.5616,4.443,9.3041v11.6667c0,6.6-5.4,12-12,12h-1.8343c-6.6,0-12-5.4-12-12V41.6725 c0-4.0844,2.0681-7.7093,5.2089-9.8792"/>
+    <path fill="none" stroke="#000000" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44.374,14.6787 c2.1344,0.044,3.8706,0.5836,3.8706,0.5836s-2.2161,2.2134-4.6058,5.5611c1.9403,0.0441,3.5029,0.5396,3.5029,0.5396 s-3.1148,3.1274-5.8109,7.4661c-1.8893,3.0393-4.5956,2.8191-4.5956,2.8191s-2.7063,0.2313-4.6058-2.8191 c-2.6961-4.3388-5.8109-7.4661-5.8109-7.4661s1.5625-0.4956,3.5029-0.5396c-2.3897-3.3476-4.6058-5.5611-4.6058-5.5611 s1.7361-0.5396,3.8706-0.5836c-2.2978-3.1275-4.3301-5.1536-4.3301-5.1536s7.9146-2.4337,10.9375,2.4336 c0.4391,0.7048,0.7762,1.3875,1.0417,2.0483c0.2553-0.6608,0.5923-1.3435,1.0315-2.0483 c3.0228-4.8673,10.9375-2.4336,10.9375-2.4336S46.6718,11.5513,44.374,14.6787z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43.6387,20.8234c-3.0513,1.236-3.5224,3.1594-4.3209,4.0898"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44.374,14.6787c0,0-4.4382,1.5439-4.6699,4.3635"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M29.8562,20.8234c3.0513,1.236,3.5224,3.1594,4.3209,4.0898"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M29.1209,14.6787c0,0,4.4382,1.5439,4.6699,4.3635"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ebb43fb
--- /dev/null
+++ b/static/openmoji-svg-color/1F34E.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#ea5a47" d="M53.88,21.51a11.4166,11.4166,0,0,0-10.7373.5044c-.0352.0156-.0723.0332-.1084.0517a22.914,22.914,0,0,1-7.5674,1.8765,15.9071,15.9071,0,0,1-6.6377-1.85l-.1416-.0757a11.41,11.41,0,0,0-10.7637-.5064C10.7,25.1406,8.1008,36.69,12.1291,47.2539c2.373,6.2324,6.6846,11.08,11.5352,12.9658a10.9829,10.9829,0,0,0,9.1337-.2656,11.3772,11.3772,0,0,0,1.5323-.9316,2.7261,2.7261,0,0,1,3.1582,0,11.1728,11.1728,0,0,0,1.5312.9326,10.4646,10.4646,0,0,0,4.7354,1.1269,12.0778,12.0778,0,0,0,4.3828-.8593c4.8515-1.8858,9.165-6.7334,11.539-12.9678C63.7072,36.6846,61.1076,25.1353,53.88,21.51Z"/>
+    <path fill="#f4aa41" d="M48.9988,21.4048a1.0736,1.0736,0,0,0-.2454.0094l.0377-.2266C48.8666,21.2632,48.9328,21.3293,48.9988,21.4048Z"/>
+    <path fill="#d22f27" d="M53.883,21.5112a10.367,10.367,0,0,0-4.9023-1.1064,1,1,0,0,0-.6954,1.7c9.4434,9.6245,6.3877,19.16,3.7266,23.9878-3.8916,7.0586-10.8437,11.4658-14.457,10.68a1,1,0,0,0-.6719,1.8652,15.5133,15.5133,0,0,0,7.1689,1.8984,12.8953,12.8953,0,0,0,4.629-.8632c4.66-1.7764,8.6679-6.3038,10.9951-12.4219C63.7111,36.6826,61.1135,25.1357,53.883,21.5112Z"/>
+    <path fill="#b1cc33" d="M48.0445,17.3947c3.9562,1.3292,6.8444,5.8193,6.8444,5.8193s-5.0135,1.8354-8.97.5062c-3.9508-1.3274-6.8444-5.8193-6.8444-5.8193S44.0937,16.0673,48.0445,17.3947Z"/>
+  </g>
+  <g id="line">
+    <g id="line-2">
+      <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="35.046 20.733 35.046 15.272 30.702 10.929"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M57.3335,25.7657c3.6482,4.9493,4.3968,13.296,1.4093,21.1329-3.8569,10.1286-12.4875,15.573-19.2735,12.1633a10.24,10.24,0,0,1-1.3942-.849,3.7126,3.7126,0,0,0-4.3311-.0009,10.27,10.27,0,0,1-1.396.85c-6.7971,3.41-15.4276-2.0347-19.2846-12.1633-3.8569-10.1174-1.4756-21.0845,5.31-24.4942a10.42,10.42,0,0,1,9.838.4919s.0559.0336.1677.09a16.8628,16.8628,0,0,0,7.0878,1.9564,13.2712,13.2712,0,0,0,2.2487-.2145,18.6342,18.6342,0,0,0,2.126-.4632"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M48.0445,17.3947c3.9562,1.3292,6.8444,5.8193,6.8444,5.8193s-5.0135,1.8354-8.97.5062c-3.9508-1.3274-6.8444-5.8193-6.8444-5.8193S44.0937,16.0673,48.0445,17.3947Z"/>
+    </g>
+  </g>
+</svg>
new file mode 100644
index 0000000..dc938b5
--- /dev/null
+++ b/static/openmoji-svg-color/1F34F.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#B1CC33" stroke="#B1CC33" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43.9805,22.748c3.2532-1.7664,6.7524-2.0682,9.8603-0.5143c6.7971,3.4098,9.1671,14.3768,5.3102,24.4942 c-3.8569,10.1286-12.4875,15.573-19.2735,12.1633c-0.4877-0.2459-0.953-0.5297-1.3942-0.849 c-1.2846-0.9296-3.0462-0.93-4.3311-0.0009c-0.4421,0.3197-0.9078,0.6038-1.396,0.8499 c-6.7971,3.4097-15.4276-2.0347-19.2846-12.1633c-3.8569-10.1174-1.4756-21.0845,5.3102-24.4942 c3.1079-1.5539,6.5959-1.2633,9.838,0.4919c0,0,0.0559,0.0336,0.1677,0.0895c0.7379,0.3913,3.9128,1.9564,7.0878,1.9564 c3.1637,0,7.043-1.5652,7.9598-1.9564C43.9022,22.7816,43.9469,22.7592,43.9805,22.748"/>
+    <path fill="#f4aa41" stroke="none" d="M49.407,21.2342c-0.0849-0.0094-0.1605,0-0.2454,0.0094l0.0377-0.2266 C49.2749,21.0926,49.341,21.1587,49.407,21.2342z"/>
+    <path fill="#5C9E31" stroke="#5C9E31" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36.2186,57.324 l-0.223,0.0652c-0.6184,0.0559-1.2366,0.2328-1.7738,0.5493c-0.071,0.0373-0.1521,0.0838-0.223,0.1304 c-0.4764,0.3166-0.9731,0.5959-1.5001,0.838c-1.5103,0.6983-3.1118,1.0148-4.7336,1.0055c-0.0405,0-0.081,0-0.1216-0.0093 C27.9374,59.5399,29.9443,57.324,36.2186,57.324z"/>
+    <path fill="#5C9E31" stroke="#5C9E31" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M59.1497,46.7238 c-3.3608,8.8364-11.2484,16.1269-21.3971,10.8559c8.2802,1.7898,28.8929-18.7766,11.6544-36.3455 c1.52-0.0283,3.021,0.2927,4.4371,1.0007C60.6414,25.643,63.011,36.6129,59.1497,46.7238z"/>
+    <path fill="#B1CC33" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M48.4527,17.2241c3.9562,1.3292,6.8444,5.8193,6.8444,5.8193s-5.0134,1.8354-8.9696,0.5062 c-3.9508-1.3274-6.8444-5.8193-6.8444-5.8193S44.5019,15.8967,48.4527,17.2241z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="35.4541,20.5625 35.4541,15.1018 31.1106,10.7583"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M57.7417,25.5951c3.6482,4.9493,4.3968,13.296,1.4093,21.1329c-3.8569,10.1286-12.4875,15.573-19.2735,12.1633 c-0.4877-0.2459-0.953-0.5297-1.3942-0.849c-1.2846-0.9296-3.0462-0.93-4.3311-0.0009c-0.4421,0.3197-0.9078,0.6038-1.396,0.8499 c-6.7971,3.4097-15.4276-2.0347-19.2846-12.1633c-3.8569-10.1174-1.4756-21.0845,5.3102-24.4942 c3.1079-1.5539,6.5959-1.2633,9.838,0.4919c0,0,0.0559,0.0336,0.1677,0.0895c0.7379,0.3913,3.9128,1.9564,7.0878,1.9564 c0.7267,0,1.4911-0.0826,2.2487-0.2145c0,0,1.1885-0.182,2.126-0.4632"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M48.4527,17.2241c3.9562,1.3292,6.8444,5.8193,6.8444,5.8193s-5.0134,1.8354-8.9696,0.5062 c-3.9508-1.3274-6.8444-5.8193-6.8444-5.8193S44.5019,15.8967,48.4527,17.2241z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..d8b9de3
--- /dev/null
+++ b/static/openmoji-svg-color/1F350.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#B1CC33" stroke="#B1CC33" stroke-miterlimit="10" stroke-width="2" d="M56.599,32.8694 c6.3433,6.3433,6.3359,16.6243,0,22.9601c-6.3433,6.3433-16.6169,6.3433-22.9601,0c-0.1776-0.1776-0.3405-0.3553-0.5107-0.5403 c-1.5396-1.6728-2.6573-3.6046-3.3604-5.6401c-0.6588-1.5469-1.2509-3.1901-1.8431-4.8481 c-1.5987-4.4558-3.1901-8.9931-6.2396-12.0426c-3.2716-3.2716-3.2716-8.5711,0-11.8427c3.2641-3.2641,8.5712-3.2716,11.8427,0 c3.0495,3.0495,7.5868,4.6409,12.0426,6.2396c1.658,0.5922,3.3012,1.1843,4.8482,1.843c2.1169,0.9178,4.0709,1.9689,5.6401,3.3604 C56.2438,32.529,56.4214,32.6918,56.599,32.8694z"/>
+    <path fill="#5C9E31" stroke="none" d="M56.5987,55.8297c-4.7458,4.7574-11.3865,4.6603-11.3865,4.6603 C67.4175,47.2917,50.42,28.9939,50.42,28.9939s4.0668,1.9735,5.6346,3.366c0.1937,0.166,0.3689,0.332,0.5441,0.5072 C62.9434,39.2118,62.9265,49.4865,56.5987,55.8297z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M21.7378,21.5926c0,0-5.271-5.1624-10.4878,0.0543"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M24.8805,18.9186c2.9293-1.0048,6.3086-0.3418,8.6475,1.9971c3.0495,3.0495,7.5868,4.6409,12.0426,6.2396 c1.658,0.5922,3.3012,1.1843,4.8482,1.843c2.1169,0.9178,4.0709,1.9689,5.6401,3.3604c0.185,0.1702,0.3627,0.333,0.5403,0.5107 c6.3433,6.3433,6.3359,16.6243,0,22.9601c-6.3433,6.3433-16.6169,6.3433-22.9601,0c-0.1776-0.1776-0.3405-0.3553-0.5107-0.5403 c-1.5396-1.6728-2.6573-3.6046-3.3604-5.6401c-0.6588-1.5469-1.2509-3.1901-1.8431-4.8481 c-1.5987-4.4558-3.1901-8.9931-6.2396-12.0426c-2.1564-2.1564-2.8915-5.1939-2.2052-7.9509"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..649e112
--- /dev/null
+++ b/static/openmoji-svg-color/1F351.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" stroke="#b1cc33" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M58.6128,14.8309 c0,0-3.7211,6.9524-9.3761,9.375c-4.4396,1.9049-10.0808,1.0073-12.2962,0.5447c-2.2244,0.4174-7.8826,1.1998-12.2826-0.7952 c-5.6044-2.5373-9.183-9.5641-9.183-9.5641s7.6302-1.9423,13.2346,0.5949c1.2046,0.5423,2.307,1.2836,3.3085,2.1239 c3.786,3.1849,4.8131,3.5598,9.9995,0.1019c1.0184-0.8197,2.1358-1.5384,3.3511-2.056 C51.0237,12.7335,58.6128,14.8309,58.6128,14.8309z"/>
+    <path fill="#FFA7C0" stroke="#FFA7C0" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.72,39.78C60.41,52.47,49.28,62.43,36.71,63.98c-0.05,0.01-0.1,0.01-0.15,0.02h-0.11c-0.21,0-0.41-0.01-0.63-0.02 c-11.34-2.56-22.28-12.53-23.42-24.2c0-1.76,0.19-3.49,0.55-5.15c0.64-2.99,1.85-5.78,3.49-8.25c2.64-2.89,6.55-4.71,10.92-4.71 c2.27,0,4.4,0.48,6.31,1.35c1.29,0.59,2.73,0.7401,4.09,0.44c0.45-0.09,0.9-0.24,1.33-0.44c1.9-0.87,4.04-1.35,6.3-1.35 c4.88,0,9.2,2.27,11.8,5.76c0.29,0.37,0.54,0.75,0.78,1.14c0.4901,0.93,0.91,1.89,1.28,2.88c0.01,0.02,0.02,0.03,0.02,0.05 c0.12,0.32,0.23,0.65,0.33,0.98c0.09,0.29,0.1801,0.58,0.26,0.87c0.07,0.26,0.14,0.51,0.2,0.77c0.37,1.56,0.59,3.18,0.65,4.83 C60.72,39.23,60.72,39.5,60.72,39.78z"/>
+    <path fill="#E67A94" stroke="#E67A94" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M37.76,23.46 c1.05-0.2,2.05-0.36,2.99-0.46c-1.72,0.3-3.29,0.57-3.63,0.6C37.34,23.55,37.55,23.5,37.76,23.46z"/>
+    <path fill="#E67A94" stroke="#E67A94" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.72,39.78 C60.41,52.47,49.28,62.43,36.71,63.98C56.9236,59.261,68.1247,20.0555,40.75,23c2.16-0.37,4.57-0.77,5.09-0.77 c4.61,0,8.72,2.03,11.35,5.2c0.29,0.37,0.54,0.75,0.78,1.14c0.4901,0.93,0.91,1.89,1.28,2.88c0.01,0.02,0.02,0.03,0.02,0.05 c0.12,0.32,0.23,0.65,0.33,0.98c0.09,0.29,0.1801,0.58,0.26,0.87c0.07,0.26,0.14,0.51,0.2,0.77c0.39,1.56,0.62,3.17,0.65,4.83 C60.72,39.23,60.72,39.5,60.72,39.78z"/>
+    <path fill="none" stroke="#E67A94" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M37.7192,36.595c-0.7182-3.444-3.4067-5.5325-3.4067-5.5325"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41.9611,17.325c1.0056-0.8284,2.1179-1.5632,3.3207-2.0925c5.6325-2.4789,13.2481-0.4519,13.2481-0.4519"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M58.5299,14.7806c0,0-1.0994,2.1043-3.0227,4.4128"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31.6404,16.8304c-1.0056-0.8284-2.1179-1.5632-3.3207-2.0925c-5.6325-2.4789-13.2481-0.4519-13.2481-0.4519"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M15.0716,14.286c0,0,1.0245,1.961,2.8257,4.1736"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36.4451,15.3662c-0.3203-2.3302-1.1526-5.6407-3.3079-7.9037"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M60.72,39.78C60.41,52.47,49.28,62.43,36.71,63.98c-0.05,0.01-0.1,0.01-0.15,0.02h-0.11c-0.21,0-0.42,0.03-0.63-0.02 c-11.34-2.56-22.28-12.53-23.42-24.2c-0.17-1.75,0.19-3.49,0.55-5.15c0.64-2.99,1.85-5.78,3.49-8.25 c2.64-2.89,6.55-4.71,10.92-4.71c2.27,0,4.4,0.48,6.31,1.35c1.29,0.59,2.73,0.7401,4.09,0.44c0.45-0.09,0.9-0.24,1.33-0.44 c1.9-0.87,4.04-1.35,6.3-1.35c4.88,0,9.2,2.27,11.8,5.76c0.29,0.37,0.54,0.75,0.78,1.14c0.4901,0.93,0.91,1.89,1.28,2.88 c0.01,0.02,0.02,0.03,0.02,0.05c0.12,0.32,0.23,0.65,0.33,0.98c0.09,0.29,0.1801,0.58,0.26,0.87c0.07,0.26,0.14,0.51,0.2,0.77 c0.39,1.56,0.62,3.17,0.65,4.83C60.72,39.23,60.72,39.5,60.72,39.78z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40.9874,52.864c2.0414-7.1668,3.244-17.6158-3.7374-24.614"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..41f354e
--- /dev/null
+++ b/static/openmoji-svg-color/1F352.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#EA5A47" stroke="#EA5A47" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M34.4,46.5c0.9-1.7,2.3-3.1,4.2-4c4.9-2.5,10.8-0.5,13.3,4.4s0.5,10.8-4.4,13.3s-10.8,0.5-13.3-4.4"/>
+    <path fill="#D22F27" d="M47.5,60.2c-1.3,0.7-2.7,1-4,1c11.3-9.3,1.8-18.3,0.1-19.7c3.4,0.2,6.6,2.2,8.3,5.4 C54.3,51.8,52.3,57.7,47.5,60.2z"/>
+    <circle cx="28.5" cy="51.4" r="9.9" fill="#EA5A47"/>
+    <path fill="#B1CC33" d="M35.2,15.7c4.5,4,5.7,11.6,5.7,11.6s-7.7-0.4-12.1-4.4c-4.5-4-5.7-11.6-5.7-11.6S30.8,11.7,35.2,15.7z"/>
+    <path fill="#D22F27" d="M33.1,60.2c-1.3,0.7-2.7,1-4,1c11.3-9.3,1.8-18.3,0.1-19.7c3.4,0.2,6.6,2.2,8.3,5.4 C39.9,51.8,38,57.7,33.1,60.2z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M39.1,42.3c1.2-0.5,2.5-0.8,3.9-0.8c5.5,0,9.9,4.4,9.9,9.9s-4.4,9.9-9.9,9.9"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M19.5,10.7c0,0.3,0,0.7,0,1c0.1,17.1,3.2,27.7,4.3,31"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43,61.2c-1.5,0-2.9-0.3-4.2-0.9"/>
+    <circle cx="28.5" cy="51.4" r="9.9" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M35.2,15.7c4.5,4,5.7,11.6,5.7,11.6s-7.7-0.4-12.1-4.4c-4.5-4-5.7-11.6-5.7-11.6S30.8,11.7,35.2,15.7z"/>
+    <circle cx="28.5" cy="51.4" r="9.9" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M39,42.3c0,0-19.5-10.1-19.5-31.6"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b4a695a
--- /dev/null
+++ b/static/openmoji-svg-color/1F353.svg
@@ -0,0 +1,29 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#ea5a47" d="M36.153,60.1681h-.0274l-.0439-.0019c-3.9814-.1885-12.4863-4.3536-19.123-18.7686a14.5371,14.5371,0,0,1,.4423-14.6689c3.4786-5.4161,10.37-8.3526,18.8916-8.0166,8.4278-.2959,15.2793,2.6328,18.7442,8.0371,2.7558,4.3007,2.8877,9.6679.3623,14.7265C52.5026,47.7492,44.7565,59.77,36.2614,60.1662,36.238,60.1671,36.1881,60.1681,36.153,60.1681Z"/>
+    <path fill="#d22f27" d="M55.0368,26.7491c-3.4649-5.4043-10.3164-8.333-18.7442-8.0371a31.649,31.649,0,0,0-3.5044.0584c6.8992.4828,12.4383,3.3011,15.4373,7.9787,2.7559,4.3008,2.8877,9.668.3623,14.7266-2.5024,5.42-8.6257,15.1239-15.7236,17.921a10.2708,10.2708,0,0,0,3.2175.7694l.0439.002h.0274c.0351,0,.085-.001.1084-.002,8.4951-.3964,16.2412-12.417,19.1377-18.69C57.9245,36.4171,57.7926,31.05,55.0368,26.7491Z"/>
+    <path fill="#5c9e31" d="M26.9616,27.7258a1,1,0,0,1-.9219-.6153,5.4579,5.4579,0,0,1-.334-2.72c-6.9277.1084-8.4775-1.9932-8.7256-2.4385a1,1,0,0,1,.2159-1.2412,17.9743,17.9743,0,0,1,16.2324-3.9277v-.9316a2.0464,2.0464,0,0,1,2.0439-2.044h1.251a2.0463,2.0463,0,0,1,2.0439,2.044v.9794a17.9573,17.9573,0,0,1,16.4375,3.88,1,1,0,0,1,.2159,1.2412c-.2491.4473-1.8242,2.56-8.8467,2.4366a6.3533,6.3533,0,0,1-.5088,2.7744,1.0015,1.0015,0,0,1-.8994.5625c-3.5869,0-7.4912-1.9766-8.9268-2.7783-3.2646,2.0214-8.9013,2.7392-9.1533,2.77A1.075,1.075,0,0,1,26.9616,27.7258Z"/>
+    <circle cx="25.1979" cy="33.736" r="2" fill="#d22f27"/>
+    <circle cx="33.1979" cy="33.736" r="2" fill="#d22f27"/>
+    <circle cx="40.1979" cy="33.736" r="2" fill="#d22f27"/>
+    <circle cx="47.1979" cy="33.736" r="2" fill="#d22f27"/>
+    <circle cx="44.1979" cy="42.1463" r="2" fill="#d22f27"/>
+    <circle cx="36.1979" cy="42.1463" r="2" fill="#d22f27"/>
+    <circle cx="28.1979" cy="42.1463" r="2" fill="#d22f27"/>
+    <circle cx="32.1979" cy="51.7437" r="2" fill="#d22f27"/>
+    <circle cx="40.1979" cy="51.7437" r="2" fill="#d22f27"/>
+  </g>
+  <g id="line">
+    <line x1="24.9942" x2="24.9942" y1="34.7437" y2="32.7282" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="32.9942" x2="32.9942" y1="34.7437" y2="32.7282" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="39.9942" x2="39.9942" y1="34.7437" y2="32.7282" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="46.9942" x2="46.9942" y1="34.7437" y2="32.7282" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="43.9942" x2="43.9942" y1="43.154" y2="41.1385" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="35.9942" x2="35.9942" y1="43.154" y2="41.1385" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="27.9942" x2="27.9942" y1="43.154" y2="41.1385" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="31.9942" x2="31.9942" y1="52.7515" y2="50.736" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="39.9942" x2="39.9942" y1="52.7515" y2="50.736" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M45.4354,23.349c7.8372.4,9.11-1.8828,9.11-1.8828a17.0606,17.0606,0,0,0-16.78-3.3117V15.8529a1.0439,1.0439,0,0,0-1.0439-1.0438H35.47a1.0439,1.0439,0,0,0-1.0439,1.0438V18.09a17.031,17.031,0,0,0-16.5755,3.3767s1.2725,2.2824,9.11,1.8828a5.0163,5.0163,0,0,0,0,3.3783s6.28-.7782,9.2376-2.9572c0,0,4.7944,2.9572,8.9651,2.9572A5.55,5.55,0,0,0,45.4354,23.349Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.0032,25.7021a13.6978,13.6978,0,0,1,1.19,1.5887c2.56,3.9955,2.6736,9.0035.31,13.74-2.8141,6.0928-10.2772,17.7635-18.2906,18.1381l-.0447.0019-.0446-.0019C28.1307,58.79,20.6853,47.106,17.8647,40.9806A13.5916,13.5916,0,0,1,18.24,27.27a13.8022,13.8022,0,0,1,1.1712-1.5664"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..24316fd
--- /dev/null
+++ b/static/openmoji-svg-color/1F354.svg
@@ -0,0 +1,26 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#a57939" d="m57.6 48.95-41.6 0.347c-1.104 0.0092-2-0.8955-2-2v-6.75c0-1.104 0.8955-2 2-2l41.89 0.6072z"/>
+    <path fill="#f4aa41" d="m32.88 49.47h-17.88c-1.104 0-2 0.7013-2 1.566v4.699c0 0.865 0.8955 1.566 2 1.566h42c1.104 0 2-0.7013 2-1.566v-4.699c0-0.865-0.8955-1.566-2-1.566h-17.79"/>
+    <path fill="#e27022" d="m48 49.3h9c1.104 0 2 0.7168 2 1.601v4.803c0 0.8841-0.8955 1.601-2 1.601h-9z"/>
+    <path fill="#f4aa41" d="m59 27.53c0 0.7243-0.8955 1.312-2 1.312h-42c-1.104 0-2-0.5872-2-1.312 1.484-7.465 11.21-13.23 23-13.23s21.52 5.765 23 13.23z"/>
+    <path fill="#e27022" d="m42 15.14c3.074 3.299 5.156 7.823 6 13.67h9c1.104 0 2-0.5738 2-1.281-1.5-7.201-10.66-11.53-17-12.39z"/>
+    <polygon transform="translate(14.26 17.08) scale(.5893)" fill="#fcea2b" points="49.94 35.25 22.06 35.25 36 49.19"/>
+    <path fill="#6a462f" stroke-width="0" d="m48 38.48v10.82h8c1.104 0 2-0.8955 2-2v-6.75c0-1.104-0.8955-2-2-2h-6.666"/>
+    <rect x="16.33" y="31.2" width="39.35" height="2.093" fill="#ea5a47" fill-rule="evenodd" stroke="#ea5a47" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" paint-order="stroke fill markers"/>
+    <path fill="#d22f27" fill-rule="evenodd" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m49.04 31.2h6.661v2.126h-6.661z" paint-order="stroke fill markers"/>
+    <path fill="#b1cc33" stroke="#b1cc33" stroke-linejoin="round" stroke-width="2" d="m15.89 37.09 40.58-0.3828c2.212-0.4852 2.519-1.021 2.732-2.267-1.861 1.266-3.301 1.278-4.582 1.438-2.319-0.01147-4.462 0.02441-5.933-1.85l-5.997-0.4466-4.338 1.914-4.338-0.0638-4.785-1.659-5.104-0.2552c-1.222 1.475-3.522 1.902-4.913 2.361-2.134-0.3929-4.418 0.8084-6.398-1.438 0.4895 1.538 0.4986 1.973 3.08 2.65z"/>
+    <path fill="#5c9e31" stroke="#5c9e31" stroke-linejoin="round" stroke-width="2" d="m49.02 37.84 7.438-1.134c2.212-0.4852 2.519-1.021 2.732-2.267-1.861 1.266-3.301 1.278-4.582 1.438-2.319-0.01147-2.088-0.01915-4.079-1.018l-1.509-0.8729z"/>
+    <path fill="#d22f27" fill-rule="evenodd" stroke="#d22f27" stroke-linecap="round" stroke-width="2" d="m49.04 31.2h4.185v2.126h-4.185z" paint-order="stroke fill markers"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m32.88 49.3h-16.88c-1.104 0-2-0.8955-2-2v-6.75c0-1.104 0.8955-2 2-2h40c1.104 0 2 0.8955 2 2v6.75c0 1.104-0.8955 2-2 2h-16.79z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m32.88 49.47h-17.88c-1.104 0-2 0.7013-2 1.566v4.699c0 0.865 0.8955 1.566 2 1.566h42c1.104 0 2-0.7013 2-1.566v-4.699c0-0.865-0.8955-1.566-2-1.566h-17.79z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m59 27.93c0 0.7243-0.8955 1.312-2 1.312h-42c-1.104 0-2-0.5872-2-1.312 1.484-7.465 11.21-13.23 23-13.23s21.52 5.765 23 13.23z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m43.24 38.93h-14.48l7.242 7.164z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="m59.19 34.1c-0.7619 0.3964-1.358 0.8199-2.487 1.002-1.368 0.3587-3.178 0.2195-4.602 0-1.928-0.3112-2.302-1.326-4.602-1.708-1.424-0.2195-3.178-0.2195-4.602 0-2.299 0.3815-2.673 1.396-4.602 1.708-1.424 0.2195-3.178 0.2195-4.602 0-1.928-0.3112-2.302-1.326-4.602-1.708-1.424-0.2195-3.178-0.2195-4.602 0-2.299 0.3815-2.673 1.396-4.602 1.708-1.424 0.2195-3.178 0.2195-4.602 0-1.129-0.1823-1.725-0.6058-2.487-1.002" paint-order="stroke fill markers"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..a7d3dfe
--- /dev/null
+++ b/static/openmoji-svg-color/1F355.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#f4aa41" stroke="none" d="M52.2637,19.7373c0.4765,0.4775,0.916,0.9775,1.3418,1.4854l2.9004-5.7286 c-11.3252-11.3252-29.6875-11.3252-41.0118,0l2.9004,5.7286c0.4258-0.5079,0.8653-1.0079,1.3418-1.4854 C28.7197,10.7539,43.2803,10.7539,52.2637,19.7373z"/>
+    <path fill="#fcea2b" stroke="none" d="M53.6055,21.2227c-0.4258-0.5079-0.8653-1.0079-1.3418-1.4854c-8.9834-8.9834-23.544-8.9834-32.5274,0 c-0.4765,0.4775-0.916,0.9775-1.3418,1.4854L36,56L53.6055,21.2227z"/>
+    <circle cx="31" cy="24" r="5" fill="#ea5a47" stroke="none"/>
+    <circle cx="44" cy="24" r="3" fill="#ea5a47" stroke="none"/>
+    <circle cx="37" cy="36" r="3" fill="#ea5a47" stroke="none"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M52.2637,19.7373c0.4765,0.4775,0.916,0.9775,1.3418,1.4854l2.9004-5.7286c-11.3252-11.3252-29.6875-11.3252-41.0118,0 l2.9004,5.7286c0.4258-0.5079,0.8653-1.0079,1.3418-1.4854C28.7197,10.7539,43.2803,10.7539,52.2637,19.7373z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M53.6055,21.2227c-0.4258-0.5079-0.8653-1.0079-1.3418-1.4854c-8.9834-8.9834-23.544-8.9834-32.5274,0 c-0.4765,0.4775-0.916,0.9775-1.3418,1.4854L36,56L53.6055,21.2227z"/>
+    <circle cx="31" cy="24" r="5" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="44" cy="24" r="3" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="37" cy="36" r="3" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2392f23
--- /dev/null
+++ b/static/openmoji-svg-color/1F356.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#f4aa41" stroke="none" d="M51.6777,23.8569c0.7129,0.418,1.3868,0.9239,2,1.5362c3.9043,3.9057,3.9043,10.2378-0.0019,14.1421 c-0.9317,0.9316-2.002,1.6347-3.1445,2.1211c-0.9532,0.4082-1.9825,0.5097-2.9727,0.7636 c-2.3955,0.6133-4.5059,2.6309-5.1338,5.0196c-0.291,1.1074-0.3906,2.2656-0.876,3.3261 c-0.4824,1.0537-1.1455,2.0449-2.0136,2.9121c-3.9053,3.9053-10.2364,3.9063-14.1426,0c-0.6113-0.6113-1.1172-1.2871-1.5352-1.999 c-0.4629-0.79-0.8164-1.626-1.0469-2.4892c-0.8632-0.2305-1.6992-0.584-2.4882-1.0469c-0.7129-0.417-1.3887-0.9238-2-1.5352 c-3.9063-3.9062-3.9053-10.2373,0-14.1426c0.8681-0.8681,1.8593-1.5312,2.9131-2.0136c1.0605-0.4854,2.2177-0.585,3.3251-0.876 c2.3877-0.6284,4.4063-2.7378,5.0196-5.1343c0.2539-0.9902,0.3564-2.0205,0.7637-2.9746c0.4863-1.1406,1.1894-2.2129,2.121-3.1445 c3.9053-3.9043,10.2364-3.9053,14.1407,0c0.6113,0.6113,1.1191,1.2871,1.5371,2c0.4629,0.789,0.8144,1.625,1.0449,2.4892 C50.0508,23.0415,50.8887,23.394,51.6777,23.8569z"/>
+    <path fill="#FFFFFF" stroke="none" d="M20.3223,48.1426l-3.7676,3.7676c-1.1719-1.1719-3.0723-1.1719-4.2432,0 c-1.1709,1.1718-1.1709,3.0703,0.001,4.2421c0.7383,0.7393,1.7656,1.0098,2.7188,0.8165 c-0.1934,0.9531,0.0771,1.9804,0.8164,2.7187c1.1718,1.1719,3.0703,1.1719,4.2421,0.001c1.1719-1.1709,1.1719-3.0713,0-4.2432 l3.7676-3.7666"/>
+    <path fill="#FFFFFF" stroke="none" d="M51.6778,23.857l3.7676-3.7676c1.1719,1.1719,3.0723,1.1719,4.2432,0 c1.1709-1.1718,1.1709-3.0703-0.001-4.2421c-0.7383-0.7393-1.7656-1.0098-2.7188-0.8165c0.1934-0.9531-0.0771-1.9804-0.8164-2.7187 c-1.1718-1.1719-3.0703-1.1719-4.2421-0.001c-1.1719,1.1709-1.1719,3.0713,0,4.2432l-3.7676,3.7666"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M20.3223,48.1426l-3.7676,3.7676c-1.1719-1.1719-3.0723-1.1719-4.2432,0c-1.1709,1.1718-1.1709,3.0703,0.001,4.2421 c0.7383,0.7393,1.7656,1.0098,2.7188,0.8165c-0.1934,0.9531,0.0771,1.9804,0.8164,2.7187c1.1718,1.1719,3.0703,1.1719,4.2421,0.001 c1.1719-1.1709,1.1719-3.0713,0-4.2432l3.7676-3.7666"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M20.3223,48.1426c0.789,0.4629,1.625,0.8164,2.4882,1.0469c0.2305,0.8632,0.584,1.6992,1.0469,2.4892"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51.6777,23.8569l3.7676-3.7675c1.1719,1.1718,3.0703,1.1718,4.2422,0c1.1719-1.1709,1.1719-3.0704,0-4.2422 c-0.7383-0.7383-1.7656-1.0098-2.7187-0.8164c0.1933-0.9532-0.0782-1.9805-0.8165-2.7188c-1.1718-1.1719-3.0722-1.1719-4.2441,0 c-1.1699,1.1709-1.1719,3.0703,0,4.2422l-3.7656,3.7676"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M48.1426,20.3218c-0.418-0.7129-0.9258-1.3887-1.5371-2c-3.9043-3.9053-10.2354-3.9043-14.1407,0 c-0.9316,0.9316-1.6347,2.0039-2.121,3.1445c-0.4073,0.9541-0.5098,1.9844-0.7637,2.9746 c-0.6133,2.3965-2.6319,4.5059-5.0196,5.1343c-1.1074,0.291-2.2646,0.3906-3.3251,0.876 c-1.0538,0.4824-2.045,1.1455-2.9131,2.0136c-3.9053,3.9053-3.9063,10.2364,0,14.1426c0.6113,0.6114,1.2871,1.1182,2,1.5352"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51.6777,23.8569c-0.789-0.4629-1.6269-0.8154-2.4902-1.0459c-0.2305-0.8642-0.582-1.7002-1.0449-2.4892"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51.6777,23.8569c0.7129,0.418,1.3868,0.9239,2,1.5362c3.9043,3.9057,3.9043,10.2378-0.0019,14.1421 c-0.9317,0.9316-2.002,1.6347-3.1445,2.1211c-0.9532,0.4082-1.9825,0.5097-2.9727,0.7636 c-2.3955,0.6133-4.5059,2.6309-5.1338,5.0196c-0.291,1.1074-0.3906,2.2656-0.876,3.3261 c-0.4824,1.0537-1.1455,2.0449-2.0136,2.9121c-3.9053,3.9053-10.2364,3.9063-14.1426,0c-0.6113-0.6113-1.1172-1.2871-1.5352-1.999"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8c1ac1c
--- /dev/null
+++ b/static/openmoji-svg-color/1F357.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FFFFFF" stroke="none" d="M33.4932,61c1.0449,0,1.9629-0.5352,2.5-1.3457C36.5303,60.4648,37.4482,61,38.4922,61	c1.6572,0,3.001-1.3437,3.001-2.999c0-1.6572-1.3438-3.001-3-3.001v-6h-5v6c-1.6573,0-3.001,1.3438-3,3	C30.4932,59.6582,31.8359,61,33.4932,61z"/>
+    <path fill="#f4aa41" stroke="none" d="M40.877,12.7861c-0.7774-1.9394-2.667-3.3144-4.8838-3.3144s-4.1065,1.375-4.8838,3.3144 C24.6924,21.0107,24.3203,32.4092,29.9932,41c0,2.291,0,4.3369,0,5c0,1.6563,1.3437,3,3,3c1.6562,0,4.3437,0,6,0 c1.6562,0,3-1.3437,3-3c0-0.6631,0-2.709,0-5.001C47.666,32.4092,47.2949,21.0107,40.877,12.7861z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M33.4932,61c1.0449,0,1.9629-0.5352,2.5-1.3457C36.5303,60.4648,37.4482,61,38.4922,61c1.6572,0,3.001-1.3437,3.001-2.999 c0-1.6572-1.3438-3.001-3-3.001v-6h-5v6c-1.6573,0-3.001,1.3438-3,3C30.4932,59.6582,31.8359,61,33.4932,61z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40.877,12.7861c-0.7774-1.9394-2.667-3.3144-4.8838-3.3144s-4.1065,1.375-4.8838,3.3144 C24.6924,21.0107,24.3203,32.4092,29.9932,41c0,2.291,0,4.3369,0,5c0,1.6563,1.3437,3,3,3c1.6562,0,4.3437,0,6,0 c1.6562,0,3-1.3437,3-3c0-0.6631,0-2.709,0-5.001C47.666,32.4092,47.2949,21.0107,40.877,12.7861z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e7d92dc
--- /dev/null
+++ b/static/openmoji-svg-color/1F358.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#F4AA41" d="M54.9,59.2c0.6-0.8,0.4-1.6,0.8-2c0.6-0.6,0.8-1.5,0.5-2.3c0.3,0,0.5-0.1,0.8-0.3c0.7-0.5,1.1-1.3,0.9-2.1 c0.9,0.4,1.9,0.1,2.5-0.7c0.5-0.7,0.4-1.6-0.1-2.3c0.3-0.1,0.5-0.3,0.7-0.5c0.6-0.6,0.7-1.5,0.4-2.2c0.9,0.2,1.9-0.4,2.2-1.3 c0.3-0.8,0-1.7-0.6-2.2c0.2-0.2,0.4-0.4,0.6-0.6c0.4-0.7,0.3-1.6-0.2-2.3c0.9-0.1,1.7-0.8,1.8-1.8c0.1-0.9-0.4-1.7-1.1-2 c0.2-0.2,0.3-0.5,0.4-0.7c0.2-0.8-0.1-1.7-0.7-2.1c0.9-0.3,1.5-1.2,1.4-2.2c-0.1-0.9-0.8-1.5-1.6-1.7c0.1-0.2,0.2-0.5,0.2-0.8 c0-0.9-0.5-1.6-1.2-1.9c0.8-0.5,1.2-1.5,0.8-2.4c-0.3-0.8-1.1-1.3-2-1.2c0.1-0.3,0.1-0.5,0-0.8c-0.2-0.8-0.9-1.4-1.7-1.6 c0.7-0.7,0.8-1.8,0.2-2.6c-0.5-0.7-1.4-1-2.2-0.7c0-0.3-0.1-0.5-0.2-0.8c-0.4-0.8-1.2-1.2-2-1.1c0.5-0.8,0.3-1.9-0.4-2.5 s-1.6-0.6-2.3-0.2c-0.1-0.3-0.2-0.5-0.4-0.7C51.6,12,50.8,11.7,50,12c0.3-0.9-0.2-1.9-1-2.3c-0.8-0.4-1.7-0.2-2.3,0.4 c-0.1-0.2-0.3-0.5-0.6-0.6c-0.7-0.5-1.6-0.5-2.3,0c0-0.9-0.6-1.8-1.6-2c-0.9-0.2-1.7,0.2-2.1,0.9c-0.2-0.2-0.4-0.4-0.7-0.5 c-0.8-0.3-1.7-0.1-2.2,0.5c-0.2-0.9-1-1.6-2-1.6c-0.9,0-1.6,0.6-1.8,1.4c-0.2-0.1-0.5-0.2-0.8-0.3c-0.8-0.1-1.6,0.3-2,1 c-0.4-0.9-1.4-1.3-2.3-1c-0.8,0.2-1.4,1-1.4,1.8c-0.3-0.1-0.5-0.1-0.8-0.1c-0.8,0.1-1.5,0.7-1.7,1.5c-0.6-0.7-1.7-0.9-2.5-0.4 c-0.8,0.4-1.1,1.3-1,2.1c-0.3,0-0.6,0-0.8,0.1c-0.8,0.3-1.3,1-1.3,1.9C18,14.2,17,14.3,16.2,15c-0.6,0.6-0.8,1.5-0.4,2.3 c-0.3,0-0.5,0.1-0.8,0.3c-0.7,0.5-1,1.3-0.8,2.1c-0.9-0.4-1.9,0-2.4,0.8c-0.5,0.7-0.4,1.7,0.1,2.3c-0.2,0.1-0.5,0.3-0.7,0.5 c-0.6,0.6-0.7,1.5-0.3,2.3C10,25.5,9,26,8.7,27c-0.3,0.8,0,1.7,0.7,2.2c-0.2,0.2-0.4,0.4-0.5,0.6c-0.4,0.8-0.3,1.6,0.3,2.3 c-0.9,0.1-1.7,0.9-1.8,1.8c-0.1,0.9,0.5,1.6,1.2,2c-0.2,0.2-0.3,0.5-0.4,0.7c-0.2,0.7,0.1,1.5,0.8,2c-0.9,0.3-1.4,1.3-1.3,2.2 c0.2,0.9,0.8,1.5,1.7,1.6c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.9,0.5,1.6,1.3,1.9c-0.8,0.5-1.1,1.6-0.7,2.5c0.4,0.8,1.2,1.2,2,1.2 c0,0.3,0,0.6,0,0.8c0.2,0.8,0.9,1.4,1.7,1.5c-0.6,0.7-0.7,1.8-0.1,2.6c0.5,0.7,1.4,0.9,2.2,0.7c0,0.3,0.1,0.5,0.2,0.8 c0.4,0.8,1.2,1.1,2,1c-0.4,0.8-0.9,3-0.2,3.6l6.6,4.2c0.8,0.4,1.9-1.5,2.5-2.1c0.1,0.2,0.3,0.4,0.6,0.6c0.7,0.5,1.6,0.4,2.3,0 c0,1,0.7,1.8,1.6,2c0.9,0.2,1.7-0.3,2.1-1c0.2,0.2,0.4,0.3,0.7,0.4c0.2,0.1,0.4,0.1,0.6,0.1c0.4,0.5,1,0.9,1.7,0.9 c0.9,0,1.6-0.6,1.9-1.3c0.2,0.2,0.5,0.3,0.8,0.3c0.8,0.1,1.6-0.3,2.1-1c0.4,0.9,1.3,1.4,2.3,1.1c0.8-0.2,1.4-0.9,1.5-1.8 c0.3,0.1,0.5,0.1,0.8,0.1c0.9-0.1,3.2,0.4,5.2-0.4L54.9,59.2z"/>
+    <path fill="#E27022" d="M64.8,38.8c0.1-0.9-0.4-1.7-1.1-2c0.2-0.2,0.3-0.5,0.4-0.7c0.2-0.8-0.1-1.7-0.7-2.1 c0.9-0.3,1.5-1.2,1.4-2.2c-0.1-0.9-0.8-1.5-1.6-1.7c0.1-0.2,0.2-0.5,0.2-0.8c0-0.9-0.5-1.6-1.2-1.9c0.8-0.5,1.2-1.5,0.8-2.4 c-0.3-0.8-1.1-1.3-2-1.2c0.1-0.3,0.1-0.5,0-0.8c-0.2-0.8-0.9-1.4-1.7-1.6c0.7-0.7,0.8-1.8,0.2-2.6c-0.5-0.7-1.4-1-2.2-0.7 c0-0.3-0.1-0.5-0.2-0.8c-0.4-0.8-1.2-1.2-2-1.1c0.5-0.8,0.3-1.9-0.4-2.5C54,13,53,12.9,52.3,13.3c-0.1-0.3-0.2-0.5-0.4-0.7 c-0.5-0.7-1.4-0.9-2.2-0.6c0.3-0.9-0.2-1.9-1-2.3c-0.8-0.4-1.7-0.2-2.3,0.4c-0.1-0.2-0.3-0.5-0.6-0.6c-0.7-0.5-1.6-0.5-2.3,0 c0-0.7-0.3-1.4-0.9-1.7c0.2,0.7,0.2,1.6-0.1,2.3c0.8-0.1,1.6,0.4,2,1.4c0.1,0.3,0.2,0.7,0.2,1.1c0.8-0.3,1.7,0,2.2,1 c0.6,1,0.5,2.5-0.2,3.3c0.8,0.2,1.5,0.9,1.7,2c0.1,0.4,0.1,0.7,0,1.1c0.8,0,1.6,0.6,2,1.6c0.4,1.2,0,2.5-0.8,3.2 c0.7,0.4,1.3,1.4,1.2,2.5c0,0.4-0.1,0.7-0.2,1.1c0.8,0.2,1.5,1.1,1.6,2.2c0.1,1.3-0.5,2.5-1.4,2.9c0.6,0.6,1,1.7,0.7,2.8 c-0.1,0.4-0.2,0.7-0.4,1c0.7,0.5,1.2,1.5,1.1,2.6c0,1.1-0.8,2.1-1.7,2.1c0.5,0.8,0.6,2,0.2,3c-0.1,0.3-0.3,0.6-0.6,0.8 c0.6,0.7,0.9,1.8,0.6,2.9c-0.3,1.2-1.3,1.9-2.2,1.7c0.3,1,0.2,2.1-0.4,2.9c-0.2,0.3-0.4,0.5-0.7,0.6c0.5,0.9,0.6,2.1,0.1,3 C47,58,45.9,58.3,45,57.8c0.2,1-0.2,2.1-0.9,2.7c-0.2,0.2-0.5,0.3-0.8,0.4c0.3,1,0.2,2.1-0.4,2.9l0,0c0.8-0.2,1.4-0.9,1.5-1.8 c0.3,0.1,0.5,0.1,0.8,0.1c0.9-0.1,3.2,0.4,5.2-0.4l4.1-2.5c0.6-0.8,0.4-1.6,0.8-2c0.6-0.6,0.8-1.5,0.5-2.3c0.3,0,0.5-0.1,0.8-0.3 c0.7-0.5,1.1-1.3,0.9-2.1c0.9,0.4,1.9,0.1,2.5-0.7c0.5-0.7,0.4-1.6-0.1-2.3c0.3-0.1,0.5-0.3,0.7-0.5c0.6-0.6,0.7-1.5,0.4-2.2 c0.9,0.2,1.9-0.4,2.2-1.3c0.3-0.8,0-1.7-0.6-2.2c0.2-0.2,0.4-0.4,0.6-0.6c0.4-0.7,0.3-1.6-0.2-2.3C63.9,40.5,64.7,39.8,64.8,38.8z"/>
+    <path fill="#3F3F3F" d="M50,62.6c-4.2,2.2-9,3.4-14,3.4c-5.1,0-9.8-1.3-14-3.5V44h28V62.6z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M54.2,58.5c0.4-0.3,0.8-0.6,1.2-0.9c0.6-0.6,0.8-1.5,0.5-2.3c0.3,0,0.5-0.1,0.8-0.3c0.7-0.5,1.1-1.3,0.9-2.1 c0.9,0.4,1.9,0.1,2.5-0.7c0.5-0.7,0.4-1.7-0.1-2.3c0.3-0.1,0.5-0.3,0.7-0.5c0.6-0.6,0.7-1.5,0.4-2.2c0.9,0.2,1.9-0.4,2.2-1.3 c0.3-0.8,0-1.7-0.6-2.2c0.2-0.2,0.4-0.4,0.6-0.6c0.4-0.7,0.3-1.6-0.2-2.3c0.9-0.1,1.7-0.8,1.8-1.8c0.1-0.9-0.4-1.7-1.1-2 c0.2-0.2,0.3-0.5,0.4-0.7c0.2-0.8-0.1-1.7-0.7-2.1c0.9-0.3,1.5-1.2,1.4-2.2c-0.1-0.9-0.8-1.5-1.6-1.7c0.1-0.2,0.2-0.5,0.2-0.8 c0-0.9-0.5-1.6-1.2-1.9c0.8-0.5,1.2-1.5,0.8-2.4c-0.3-0.8-1.1-1.3-2-1.2c0.1-0.3,0.1-0.5,0-0.8c-0.2-0.8-0.9-1.4-1.7-1.6 c0.7-0.7,0.8-1.8,0.2-2.6c-0.5-0.7-1.4-1-2.2-0.7c0-0.3-0.1-0.5-0.2-0.8c-0.4-0.8-1.2-1.2-2-1.1c0.5-0.8,0.3-1.9-0.4-2.5 s-1.6-0.6-2.3-0.2c-0.1-0.3-0.2-0.5-0.4-0.7c-0.5-0.7-1.4-0.9-2.2-0.6c0.3-0.9-0.2-1.9-1-2.3c-0.8-0.4-1.7-0.2-2.3,0.4 c-0.1-0.2-0.3-0.5-0.6-0.6c-0.7-0.5-1.6-0.5-2.3,0c0-0.9-0.6-1.8-1.6-2c-0.9-0.2-1.7,0.2-2.1,0.9c-0.2-0.2-0.4-0.4-0.7-0.5 C38.4,7.8,37.6,8,37,8.6C36.8,7.7,36,7,35,7c-0.9,0-1.6,0.6-1.8,1.4c-0.2-0.1-0.5-0.2-0.8-0.3c-0.8-0.1-1.6,0.3-2,1 c-0.4-0.9-1.4-1.3-2.3-1c-0.8,0.2-1.4,1-1.4,1.8c-0.3-0.1-0.5-0.1-0.8-0.1c-0.8,0.1-1.5,0.7-1.7,1.5c-0.6-0.7-1.7-0.9-2.5-0.4 c-0.8,0.4-1.1,1.3-1,2.1c-0.3,0-0.6,0-0.8,0.1c-0.8,0.3-1.3,1-1.3,1.9c-0.8-0.6-1.8-0.5-2.6,0.2c-0.6,0.6-0.8,1.5-0.4,2.3 c-0.3,0-0.5,0.1-0.8,0.3c-0.7,0.5-1,1.3-0.8,2.1c-0.9-0.4-1.9,0-2.4,0.8c-0.5,0.7-0.4,1.7,0.1,2.3c-0.2,0.1-0.5,0.3-0.7,0.5 c-0.6,0.6-0.7,1.5-0.3,2.3c-0.9-0.1-1.9,0.4-2.2,1.4c-0.3,0.8,0,1.7,0.7,2.2C9,29.6,8.8,29.8,8.7,30c-0.4,0.8-0.3,1.6,0.3,2.3 C7.9,32.2,7.1,33,7.1,34c-0.1,0.9,0.5,1.6,1.2,2c-0.2,0.2-0.3,0.5-0.4,0.7c-0.2,0.8,0.1,1.7,0.8,2.1C7.8,39.1,7.3,40,7.4,41 c0.2,0.9,0.8,1.5,1.7,1.6c-0.1,0.2-0.2,0.5-0.2,0.8c0,0.9,0.5,1.6,1.3,1.9c-0.8,0.5-1.1,1.6-0.7,2.5c0.4,0.8,1.2,1.2,2,1.2 c0,0.3,0,0.6,0,0.8c0.2,0.8,0.9,1.4,1.7,1.5c-0.6,0.7-0.7,1.8-0.1,2.6c0.5,0.7,1.4,0.9,2.2,0.7c0,0.3,0.1,0.5,0.2,0.8 c0.4,0.8,1.2,1.1,2,1c-0.4,0.8-0.2,1.9,0.5,2.5"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50,62.6c-4.2,2.2-9,3.4-14,3.4c-5.1,0-9.8-1.3-14-3.5V44h28V62.6z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2b49b8e
--- /dev/null
+++ b/static/openmoji-svg-color/1F359.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FFFFFF" stroke="none" d="M44,10c0-1.1045-0.8955-2-2-2c-0.3779,0-0.7275,0.1113-1.0303,0.2935C40.9854,8.1968,41,8.1006,41,8 c0-1.1045-0.8955-2-2-2c-0.6006,0-1.1338,0.2705-1.5,0.6899C37.1338,6.2705,36.6006,6,36,6c-0.6006,0-1.1338,0.2705-1.5,0.6899 C34.1338,6.2705,33.6006,6,33,6c-1.1045,0-2,0.8955-2,2c0,0.1006,0.0146,0.1968,0.0303,0.2935C30.7275,8.1113,30.3779,8,30,8 c-1.1045,0-2,0.8955-2,2c0,0.1006,0.0146,0.1968,0.0303,0.2935C27.7275,10.1113,27.3779,10,27,10c-1.1045,0-2,0.8955-2,2 c0,0.3779,0.1113,0.728,0.2939,1.0298C25.1963,13.0151,25.1006,13,25,13c-1.1045,0-2,0.8955-2,2 c0,0.3779,0.1113,0.728,0.2939,1.0298C23.1963,16.0151,23.1006,16,23,16c-0.873,0-1.6074,0.563-1.8799,1.3428 C20.7998,17.1265,20.415,17,20,17c-1.1045,0-2,0.8955-2,2c0,0.3779,0.1113,0.728,0.2939,1.0298C18.1963,20.0151,18.1006,20,18,20 c-1.1045,0-2,0.8955-2,2c0,0.1006,0.0146,0.1968,0.0303,0.2935C15.7275,22.1113,15.3779,22,15,22c-1.1045,0-2,0.8955-2,2 c0,0.415,0.126,0.7998,0.3428,1.1191C12.5635,25.3926,12,26.127,12,27c0,0.1006,0.0146,0.1973,0.0303,0.293 C11.7275,27.1113,11.3779,27,11,27c-1.1045,0-2,0.8955-2,2c0,0.6006,0.2705,1.1328,0.6904,1.5C9.2705,30.8672,9,31.3994,9,32 c0,0.3779,0.1113,0.7285,0.2939,1.0293C9.1963,33.0156,9.1006,33,9,33c-1.1045,0-2,0.8955-2,2c0,0.4805,0.1807,0.9082,0.4639,1.25 c-0.875,0.2139-1.5264,0.9971-1.5264,1.9375c0,0.5664,0.2373,1.0742,0.6152,1.4385C6.2119,39.9844,6,40.4668,6,41 c0,0.5293,0.21,1.0078,0.5449,1.3652c-0.7871,0.2686-1.3574,1.0059-1.3574,1.8848c0,0.7715,0.4414,1.4326,1.0811,1.7666 C6.1025,46.3086,6,46.6406,6,47c0,0.4902,0.1846,0.9326,0.4775,1.2803C5.7568,48.582,5.25,49.2949,5.25,50.125 c0,0.9043,0.6045,1.6602,1.4287,1.9072C5.7285,52.1865,5,53.0059,5,54c0,0.6445,0.3096,1.2109,0.7842,1.5771 C5.416,55.9395,5.1875,56.4434,5.1875,57c0,0.8184,0.4932,1.5195,1.1963,1.8301C6.1436,59.1572,6,59.5605,6,60 c0,1.0723,0.8467,1.9414,1.9072,1.9902C7.7324,62.2881,7.625,62.6299,7.625,63c0,1.1045,0.8955,2,2,2 c0.5537,0,1.0557-0.2266,1.418-0.5898C11.2314,65.3184,12.0361,66,13,66c0.417,0,0.8037-0.1289,1.125-0.3477 C14.4463,65.8711,14.833,66,15.25,66c0.7393,0,1.3779-0.4062,1.7236-1.002C16.9834,64.998,16.9912,65,17,65 c0.415,0,0.7998-0.127,1.1201-0.3428h35.7598C54.2002,64.873,54.585,65,55,65c0.0088,0,0.0166-0.002,0.0264-0.002 C55.3721,65.5938,56.0107,66,56.75,66c0.417,0,0.8037-0.1289,1.125-0.3477C58.1963,65.8711,58.583,66,59,66 c0.9639,0,1.7686-0.6816,1.957-1.5898C61.3193,64.7734,61.8213,65,62.375,65c1.1045,0,2-0.8955,2-2 c0-0.3701-0.1074-0.7119-0.2822-1.0098C65.1533,61.9414,66,61.0723,66,60c0-0.4395-0.1436-0.8428-0.3838-1.1699 c0.7031-0.3106,1.1963-1.0117,1.1963-1.8301c0-0.5566-0.2285-1.0605-0.5967-1.4229C66.6904,55.2109,67,54.6445,67,54 c0-0.9941-0.7285-1.8135-1.6787-1.9678c0.8242-0.247,1.4287-1.0029,1.4287-1.9072c0-0.8301-0.5068-1.543-1.2275-1.8447 C65.8154,47.9326,66,47.4902,66,47c0-0.3594-0.1025-0.6914-0.2686-0.9834c0.6397-0.334,1.0811-0.9951,1.0811-1.7666 c0-0.8789-0.5703-1.6162-1.3574-1.8848C65.79,42.0078,66,41.5293,66,41c0-0.5332-0.2119-1.0156-0.5527-1.374 c0.3779-0.3643,0.6152-0.8721,0.6152-1.4385c0-0.9404-0.6514-1.7236-1.5264-1.9375C64.8193,35.9082,65,35.4805,65,35 c0-1.1045-0.8955-2-2-2c-0.1006,0-0.1963,0.0156-0.2939,0.0293C62.8887,32.7285,63,32.3779,63,32 c0-0.6006-0.2705-1.1328-0.6904-1.5C62.7295,30.1328,63,29.6006,63,29c0-1.1045-0.8955-2-2-2 c-0.3779,0-0.7275,0.1113-1.0303,0.293C59.9854,27.1973,60,27.1006,60,27c0-0.873-0.5635-1.6074-1.3428-1.8809 C58.874,24.7998,59,24.415,59,24c0-1.1045-0.8955-2-2-2c-0.3779,0-0.7275,0.1113-1.0303,0.2935C55.9854,22.1968,56,22.1006,56,22 c0-1.1045-0.8955-2-2-2c-0.1006,0-0.1963,0.0151-0.2939,0.0298C53.8887,19.728,54,19.3779,54,19c0-1.1045-0.8955-2-2-2 c-0.415,0-0.7998,0.1265-1.1201,0.3428C50.6074,16.563,49.873,16,49,16c-0.1006,0-0.1963,0.0151-0.2939,0.0298 C48.8887,15.728,49,15.3779,49,15c0-1.1045-0.8955-2-2-2c-0.1006,0-0.1963,0.0151-0.2939,0.0298C46.8887,12.728,47,12.3779,47,12 c0-1.1045-0.8955-2-2-2c-0.3779,0-0.7275,0.1113-1.0303,0.2935C43.9854,10.1968,44,10.1006,44,10c0-1.1045-0.8955-2-2-2 c-0.3779,0-0.7275,0.1113-1.0303,0.2935C40.9854,8.1968,41,8.1006,41,8c0-1.1045-0.8955-2-2-2c-0.6006,0-1.1338,0.2705-1.5,0.6899 C37.1338,6.2705,36.6006,6,36,6c-0.6006,0-1.1338,0.2705-1.5,0.6899C34.1338,6.2705,33.6006,6,33,6c-1.1045,0-2,0.8955-2,2 c0,0.1006,0.0146,0.1968,0.0303,0.2935C30.7275,8.1113,30.3779,8,30,8c-1.1045,0-2,0.8955-2,2"/>
+    <rect x="22" y="44" width="28" height="22" fill="#3F3F3F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44,10c0-1.1045-0.8955-2-2-2c-0.3779,0-0.7275,0.1113-1.0303,0.2935C40.9854,8.1968,41,8.1006,41,8c0-1.1045-0.8955-2-2-2 c-0.6006,0-1.1338,0.2705-1.5,0.6899C37.1338,6.2705,36.6006,6,36,6c-0.6006,0-1.1338,0.2705-1.5,0.6899 C34.1338,6.2705,33.6006,6,33,6c-1.1045,0-2,0.8955-2,2c0,0.1006,0.0146,0.1968,0.0303,0.2935C30.7275,8.1113,30.3779,8,30,8 c-1.1045,0-2,0.8955-2,2c0,0.1006,0.0146,0.1968,0.0303,0.2935C27.7275,10.1113,27.3779,10,27,10c-1.1045,0-2,0.8955-2,2 c0,0.3779,0.1113,0.728,0.2939,1.0298C25.1963,13.0151,25.1006,13,25,13c-1.1045,0-2,0.8955-2,2 c0,0.3779,0.1113,0.728,0.2939,1.0298C23.1963,16.0151,23.1006,16,23,16c-0.873,0-1.6074,0.563-1.8799,1.3428 C20.7998,17.1265,20.415,17,20,17c-1.1045,0-2,0.8955-2,2c0,0.3779,0.1113,0.728,0.2939,1.0298C18.1963,20.0151,18.1006,20,18,20 c-1.1045,0-2,0.8955-2,2c0,0.1006,0.0146,0.1968,0.0303,0.2935C15.7275,22.1113,15.3779,22,15,22c-1.1045,0-2,0.8955-2,2 c0,0.415,0.126,0.7998,0.3428,1.1191C12.5635,25.3926,12,26.127,12,27c0,0.1006,0.0146,0.1973,0.0303,0.293 C11.7275,27.1113,11.3779,27,11,27c-1.1045,0-2,0.8955-2,2c0,0.6006,0.2705,1.1328,0.6904,1.5C9.2705,30.8672,9,31.3994,9,32 c0,0.3779,0.1113,0.7285,0.2939,1.0293C9.1963,33.0156,9.1006,33,9,33c-1.1045,0-2,0.8955-2,2c0,0.4805,0.1807,0.9082,0.4639,1.25 c-0.875,0.2139-1.5264,0.9971-1.5264,1.9375c0,0.5664,0.2373,1.0742,0.6152,1.4385C6.2119,39.9844,6,40.4668,6,41 c0,0.5293,0.21,1.0078,0.5449,1.3652c-0.7871,0.2686-1.3574,1.0059-1.3574,1.8848c0,0.7715,0.4414,1.4326,1.0811,1.7666 C6.1025,46.3086,6,46.6406,6,47c0,0.4902,0.1846,0.9326,0.4775,1.2803C5.7568,48.582,5.25,49.2949,5.25,50.125 c0,0.9043,0.6045,1.6602,1.4287,1.9072C5.7285,52.1865,5,53.0059,5,54c0,0.6445,0.3096,1.2109,0.7842,1.5771 C5.416,55.9395,5.1875,56.4434,5.1875,57c0,0.8184,0.4932,1.5195,1.1963,1.8301C6.1436,59.1572,6,59.5605,6,60 c0,1.0723,0.8467,1.9414,1.9072,1.9902C7.7324,62.2881,7.625,62.6299,7.625,63c0,1.1045,0.8955,2,2,2 c0.5537,0,1.0557-0.2266,1.418-0.5898C11.2314,65.3184,12.0361,66,13,66c0.417,0,0.8037-0.1289,1.125-0.3477 C14.4463,65.8711,14.833,66,15.25,66c0.7393,0,1.3779-0.4062,1.7236-1.002C16.9834,64.998,16.9912,65,17,65 c0.415,0,0.7998-0.127,1.1201-0.3428"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M28,10c0-1.1045,0.8955-2,2-2c0.3779,0,0.7275,0.1113,1.0303,0.2935C31.0146,8.1968,31,8.1006,31,8c0-1.1045,0.8955-2,2-2 c0.6006,0,1.1338,0.2705,1.5,0.6899C34.8662,6.2705,35.3994,6,36,6c0.6006,0,1.1338,0.2705,1.5,0.6899 C37.8662,6.2705,38.3994,6,39,6c1.1045,0,2,0.8955,2,2c0,0.1006-0.0146,0.1968-0.0303,0.2935C41.2725,8.1113,41.6221,8,42,8 c1.1045,0,2,0.8955,2,2c0,0.1006-0.0146,0.1968-0.0303,0.2935C44.2725,10.1113,44.6221,10,45,10c1.1045,0,2,0.8955,2,2 c0,0.3779-0.1113,0.728-0.2939,1.0298C46.8037,13.0151,46.8994,13,47,13c1.1045,0,2,0.8955,2,2 c0,0.3779-0.1113,0.728-0.2939,1.0298C48.8037,16.0151,48.8994,16,49,16c0.873,0,1.6074,0.563,1.8799,1.3428 C51.2002,17.1265,51.585,17,52,17c1.1045,0,2,0.8955,2,2c0,0.3779-0.1113,0.728-0.2939,1.0298C53.8037,20.0151,53.8994,20,54,20 c1.1045,0,2,0.8955,2,2c0,0.1006-0.0146,0.1968-0.0303,0.2935C56.2725,22.1113,56.6221,22,57,22c1.1045,0,2,0.8955,2,2 c0,0.415-0.126,0.7998-0.3428,1.1191C59.4365,25.3926,60,26.127,60,27c0,0.1006-0.0146,0.1973-0.0303,0.293 C60.2725,27.1113,60.6221,27,61,27c1.1045,0,2,0.8955,2,2c0,0.6006-0.2705,1.1328-0.6904,1.5C62.7295,30.8672,63,31.3994,63,32 c0,0.3779-0.1113,0.7285-0.2939,1.0293C62.8037,33.0156,62.8994,33,63,33c1.1045,0,2,0.8955,2,2 c0,0.4805-0.1807,0.9082-0.4639,1.25c0.875,0.2139,1.5264,0.9971,1.5264,1.9375c0,0.5664-0.2373,1.0742-0.6152,1.4385 C65.7881,39.9844,66,40.4668,66,41c0,0.5293-0.21,1.0078-0.5449,1.3652c0.7871,0.2686,1.3574,1.0059,1.3574,1.8848 c0,0.7715-0.4414,1.4326-1.0811,1.7666C65.8975,46.3086,66,46.6406,66,47c0,0.4902-0.1846,0.9326-0.4775,1.2803 c0.7207,0.3017,1.2275,1.0146,1.2275,1.8447c0,0.9043-0.6045,1.6602-1.4287,1.9072C66.2715,52.1865,67,53.0059,67,54 c0,0.6445-0.3096,1.2109-0.7842,1.5771c0.3682,0.3624,0.5967,0.8663,0.5967,1.4229c0,0.8184-0.4932,1.5195-1.1963,1.8301 C65.8564,59.1572,66,59.5605,66,60c0,1.0723-0.8467,1.9414-1.9072,1.9902C64.2676,62.2881,64.375,62.6299,64.375,63 c0,1.1045-0.8955,2-2,2c-0.5537,0-1.0557-0.2266-1.418-0.5898C60.7686,65.3184,59.9639,66,59,66 c-0.417,0-0.8037-0.1289-1.125-0.3477C57.5537,65.8711,57.167,66,56.75,66c-0.7393,0-1.3779-0.4062-1.7236-1.002 C55.0166,64.998,55.0088,65,55,65c-0.415,0-0.7998-0.127-1.1201-0.3428"/>
+    <rect x="22" y="44" width="28" height="22" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b3a9767
--- /dev/null
+++ b/static/openmoji-svg-color/1F35A.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FFFFFF" stroke="none" d="M8.1221,36v-3.5859c-0.1543-0.4287,0.8281-0.9073,0.999-1.3672c0.126-0.336,0.3379-0.6114,0.5957-0.8272 c-0.4834-0.5361-0.666-1.3095-0.3965-2.0332c0.3067-0.8232,1.0986-1.3154,1.9307-1.292c-0.1895-0.4521-0.2188-0.9736-0.0342-1.4697 c0.1865-0.5,0.5537-0.8769,0.998-1.0937c-0.2265-0.4727-0.2714-1.0332-0.0742-1.5635c0.3291-0.8809,1.2119-1.3867,2.1065-1.2822 c-0.1446-0.419-0.1651-0.8838,0.0029-1.3331c0.3857-1.0351,1.5381-1.5615,2.5723-1.1757c0.0947,0.0351,0.1787,0.083,0.2646,0.1308 c-0.0654-0.3467-0.0469-0.7129,0.085-1.0674c0.2099-0.5625,0.6494-0.9677,1.1699-1.165c-0.2647-0.4902-0.332-1.083-0.1221-1.6465 c0.3858-1.0342,1.5371-1.5605,2.5723-1.1758c0.3545,0.1328,0.6435,0.3594,0.8623,0.6348c0.0205-0.0947,0.04-0.1904,0.0752-0.2852 c0.3047-0.8173,1.0889-1.3085,1.915-1.2929c-0.0908-0.375-0.0752-0.7793,0.0694-1.168c0.3857-1.0351,1.5381-1.5615,2.5722-1.1758 c0.3555,0.1319,0.6436,0.3584,0.8633,0.6348c0.0195-0.0957,0.0391-0.1914,0.0742-0.2852c0.334-0.8974,1.2461-1.4101,2.1563-1.2798 C29.7432,9.3315,30.3311,9,31,9c0.873,0,1.6074,0.563,1.8799,1.3428C33.2002,10.1265,33.585,10,34,10 c0.0898,0,0.1768,0.0151,0.2627,0.0264C34.6055,9.417,35.251,9,36,9s1.3945,0.417,1.7373,1.0264C37.8232,10.0151,37.9102,10,38,10 c0.415,0,0.7998,0.1265,1.1201,0.3428C39.3926,9.563,40.127,9,41,9c0.6689,0,1.2568,0.3315,1.6201,0.8354 c0.9102-0.1303,1.8223,0.3824,2.1563,1.2798c0.0351,0.0938,0.0547,0.1895,0.0742,0.2852c0.2197-0.2764,0.5078-0.5029,0.8633-0.6348 c1.0341-0.3857,2.1865,0.1407,2.5722,1.1758c0.1446,0.3887,0.1602,0.793,0.0694,1.168c0.8261-0.0156,1.6103,0.4756,1.915,1.2929 c0.0352,0.0948,0.0547,0.1905,0.0752,0.2852c0.2188-0.2754,0.5078-0.502,0.8623-0.6348c1.0352-0.3847,2.1865,0.1416,2.5723,1.1758 c0.2099,0.5635,0.1426,1.1563-0.1221,1.6465c0.5205,0.1973,0.96,0.6025,1.1699,1.165c0.1319,0.3545,0.1504,0.7207,0.085,1.0674 c0.0859-0.0478,0.1699-0.0957,0.2646-0.1308c1.0342-0.3858,2.1866,0.1406,2.5723,1.1757c0.168,0.4493,0.1475,0.9141,0.0029,1.3331 c0.8946-0.1045,1.7774,0.4013,2.1065,1.2822c0.1972,0.5303,0.1523,1.0908-0.0742,1.5635c0.4443,0.2168,0.8115,0.5937,0.998,1.0937 c0.1846,0.4961,0.1553,1.0176-0.0342,1.4697c0.8321-0.0234,1.624,0.4688,1.9307,1.292c0.2695,0.7237,0.0869,1.4971-0.3965,2.0332 c0.2578,0.2158,0.4697,0.4912,0.5957,0.8272c0.1709,0.4599,1.1533,0.9385,0.999,1.3672V36"/>
+    <path fill="#FFFFFF" stroke="none" d="M65,36c0,16.0156-12.9834,29-29,29S7,52.0156,7,36H65z"/>
+    <path fill="#d0cfce" stroke="none" d="M49,36c0,16.0156-4,29-13,29c16.0166,0,29-12.9844,29-29H49z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M62.8779,32.4141c0.1543-0.4287,0.1719-0.9073,0.001-1.3672c-0.126-0.336-0.3379-0.6114-0.5957-0.8272 c0.4834-0.5361,0.666-1.3095,0.3965-2.0332c-0.3067-0.8232-1.0986-1.3154-1.9307-1.292c0.1895-0.4521,0.2188-0.9736,0.0342-1.4697 c-0.1865-0.5-0.5537-0.8769-0.998-1.0937c0.2265-0.4727,0.2714-1.0332,0.0742-1.5635c-0.3291-0.8809-1.2119-1.3867-2.1065-1.2822 c0.1446-0.419,0.1651-0.8838-0.0029-1.3331c-0.3857-1.0351-1.5381-1.5615-2.5723-1.1757c-0.0947,0.0351-0.1787,0.083-0.2646,0.1308 c0.0654-0.3467,0.0469-0.7129-0.085-1.0674c-0.2099-0.5625-0.6494-0.9677-1.1699-1.165c0.2647-0.4902,0.332-1.083,0.1221-1.6465 c-0.3858-1.0342-1.5371-1.5605-2.5723-1.1758c-0.3545,0.1328-0.6435,0.3594-0.8623,0.6348 c-0.0205-0.0947-0.04-0.1904-0.0752-0.2852c-0.3047-0.8173-1.0889-1.3085-1.915-1.2929c0.0908-0.375,0.0752-0.7793-0.0694-1.168 c-0.3857-1.0351-1.5381-1.5615-2.5722-1.1758c-0.3555,0.1319-0.6436,0.3584-0.8633,0.6348 c-0.0195-0.0957-0.0391-0.1914-0.0742-0.2852c-0.334-0.8974-1.2461-1.4101-2.1563-1.2798C42.2568,9.3315,41.6689,9,41,9 c-0.873,0-1.6074,0.563-1.8799,1.3428C38.7998,10.1265,38.415,10,38,10c-0.0898,0-0.1768,0.0151-0.2627,0.0264 C37.3945,9.417,36.749,9,36,9s-1.3945,0.417-1.7373,1.0264C34.1768,10.0151,34.0898,10,34,10c-0.415,0-0.7998,0.1265-1.1201,0.3428 C32.6074,9.563,31.873,9,31,9c-0.6689,0-1.2568,0.3315-1.6201,0.8354c-0.9102-0.1303-1.8223,0.3824-2.1563,1.2798 c-0.0351,0.0938-0.0547,0.1895-0.0742,0.2852c-0.2197-0.2764-0.5078-0.5029-0.8633-0.6348 c-1.0341-0.3857-2.1865,0.1407-2.5722,1.1758c-0.1446,0.3887-0.1602,0.793-0.0694,1.168c-0.8261-0.0156-1.6103,0.4756-1.915,1.2929 c-0.0352,0.0948-0.0547,0.1905-0.0752,0.2852c-0.2188-0.2754-0.5078-0.502-0.8623-0.6348 c-1.0352-0.3847-2.1865,0.1416-2.5723,1.1758c-0.2099,0.5635-0.1426,1.1563,0.1221,1.6465c-0.5205,0.1973-0.96,0.6025-1.1699,1.165 c-0.1319,0.3545-0.1504,0.7207-0.085,1.0674c-0.0859-0.0478-0.1699-0.0957-0.2646-0.1308 c-1.0342-0.3858-2.1866,0.1406-2.5723,1.1757c-0.168,0.4493-0.1475,0.9141-0.0029,1.3331 c-0.8946-0.1045-1.7774,0.4013-2.1065,1.2822c-0.1972,0.5303-0.1523,1.0908,0.0742,1.5635 c-0.4443,0.2168-0.8115,0.5937-0.998,1.0937c-0.1846,0.4961-0.1553,1.0176,0.0342,1.4697c-0.8321-0.0234-1.624,0.4688-1.9307,1.292 c-0.2695,0.7237-0.0869,1.4971,0.3965,2.0332c-0.2578,0.2158-0.4697,0.4912-0.5957,0.8272 c-0.1709,0.4599-0.1533,0.9385,0.001,1.3672"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M65,36c0,16.0156-12.9834,29-29,29S7,52.0156,7,36H65z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..67414bb
--- /dev/null
+++ b/static/openmoji-svg-color/1F35B.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="36" cy="36" r="28" fill="#d0cfce"/>
+    <path fill="#f4aa41" stroke="#f4aa41" stroke-miterlimit="10" stroke-width="2" d="M56.9944,35.361c.1706-4.1391-3.6059-7.6409-8.4351-7.8214a10.0471,10.0471,0,0,0-2.1748.1782,6.3414,6.3414,0,0,0,.11-.69c.1706-4.1391-3.6059-7.6409-8.4351-7.8215s-8.8824,3.0286-9.053,7.1676a7.413,7.413,0,0,0,4.5029,6.8219,15.84,15.84,0,0,0-2.5482,8.1892c-.2842,6.8948,3.4,12.63,8.2294,12.811,4.7186.1764,8.774-5.02,9.2229-11.69C53.0282,42.4641,56.83,39.3621,56.9944,35.361Z"/>
+    <path fill="#fff" d="M41.6,43.3294a3.0615,3.0615,0,0,0-3.15-2.9647,3.2754,3.2754,0,0,0-1.3822.3127A2.7944,2.7944,0,0,0,37.4,39.3765,2.85,2.85,0,0,0,36.5825,37.4,2.85,2.85,0,0,0,37.4,35.4235a2.799,2.799,0,0,0-.23-1.1023A2.9941,2.9941,0,0,0,39.5,31.4706a3.0615,3.0615,0,0,0-3.15-2.9647,3.2754,3.2754,0,0,0-1.3822.3127,2.7948,2.7948,0,0,0,.3322-1.301,3.0616,3.0616,0,0,0-3.15-2.9647,3.2754,3.2754,0,0,0-1.3822.3127A2.7944,2.7944,0,0,0,31.1,23.5647a3.1558,3.1558,0,0,0-6.3,0,2.7944,2.7944,0,0,0,.3322,1.3009,3.2754,3.2754,0,0,0-1.3822-.3127,3.1149,3.1149,0,0,0-3.0287,2.1934,3.3064,3.3064,0,0,0-1.1713-.2169,3.0615,3.0615,0,0,0-3.15,2.9647,2.994,2.994,0,0,0,2.3305,2.8506,2.8,2.8,0,0,0-.23,1.1024,2.85,2.85,0,0,0,.8175,1.9764,2.7981,2.7981,0,0,0,0,3.953A2.85,2.85,0,0,0,18.5,41.3529a2.9939,2.9939,0,0,0,2.3305,2.8506,2.8,2.8,0,0,0-.23,1.1024,2.85,2.85,0,0,0,.8175,1.9765A2.85,2.85,0,0,0,20.6,49.2588a3.0615,3.0615,0,0,0,3.15,2.9647,3.2367,3.2367,0,0,0,2.1-.7694,3.2367,3.2367,0,0,0,2.1.7694,3.3042,3.3042,0,0,0,1.1713-.2169A3.1149,3.1149,0,0,0,32.15,54.2a3.0615,3.0615,0,0,0,3.15-2.9647,2.7944,2.7944,0,0,0-.3322-1.3009,3.2754,3.2754,0,0,0,1.3822.3127,3.0616,3.0616,0,0,0,3.15-2.9647,2.8,2.8,0,0,0-.23-1.1024A2.9941,2.9941,0,0,0,41.6,43.3294Z"/>
+    <rect x="38.8" y="23.4" rx="1" width="4.2" height="2.8" fill="#fcea2b"/>
+    <rect x="44.4" y="33.2" rx="1" width="4.2" height="2.8" transform="translate(21.3601 -17.6245) rotate(27.6423)" fill="#fcea2b"/>
+    <rect x="41.6" y="45.8" rx="1" width="4.2" height="2.8" transform="translate(-15.1742 21.2894) rotate(-23.4507)" fill="#fcea2b"/>
+    <rect x="50" y="34.6" rx="1" width="4.2" height="2.8" fill="#fcea2b"/>
+  </g>
+  <g id="line">
+    <circle cx="36" cy="36" r="28" fill="none" stroke="#000" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M41.6,43.3294a3.0615,3.0615,0,0,0-3.15-2.9647,3.2754,3.2754,0,0,0-1.3822.3127A2.7944,2.7944,0,0,0,37.4,39.3765,2.85,2.85,0,0,0,36.5825,37.4,2.85,2.85,0,0,0,37.4,35.4235a2.799,2.799,0,0,0-.23-1.1023A2.9941,2.9941,0,0,0,39.5,31.4706a3.0615,3.0615,0,0,0-3.15-2.9647,3.2754,3.2754,0,0,0-1.3822.3127,2.7948,2.7948,0,0,0,.3322-1.301,3.0616,3.0616,0,0,0-3.15-2.9647,3.2754,3.2754,0,0,0-1.3822.3127A2.7944,2.7944,0,0,0,31.1,23.5647a3.1558,3.1558,0,0,0-6.3,0,2.7944,2.7944,0,0,0,.3322,1.3009,3.2754,3.2754,0,0,0-1.3822-.3127,3.1149,3.1149,0,0,0-3.0287,2.1934,3.3064,3.3064,0,0,0-1.1713-.2169,3.0615,3.0615,0,0,0-3.15,2.9647,2.994,2.994,0,0,0,2.3305,2.8506,2.8,2.8,0,0,0-.23,1.1024,2.85,2.85,0,0,0,.8175,1.9764,2.7981,2.7981,0,0,0,0,3.953A2.85,2.85,0,0,0,18.5,41.3529a2.9939,2.9939,0,0,0,2.3305,2.8506,2.8,2.8,0,0,0-.23,1.1024,2.85,2.85,0,0,0,.8175,1.9765A2.85,2.85,0,0,0,20.6,49.2588a3.0615,3.0615,0,0,0,3.15,2.9647,3.2367,3.2367,0,0,0,2.1-.7694,3.2367,3.2367,0,0,0,2.1.7694,3.3042,3.3042,0,0,0,1.1713-.2169A3.1149,3.1149,0,0,0,32.15,54.2a3.0615,3.0615,0,0,0,3.15-2.9647,2.7944,2.7944,0,0,0-.3322-1.3009,3.2754,3.2754,0,0,0,1.3822.3127,3.0616,3.0616,0,0,0,3.15-2.9647,2.8,2.8,0,0,0-.23-1.1024A2.9941,2.9941,0,0,0,41.6,43.3294Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M39.1906,54.1956c4.7186.1764,8.774-5.02,9.2229-11.69,4.6147-.0414,8.416-3.1434,8.5809-7.1445.1706-4.1391-3.6059-7.6409-8.4351-7.8214a10.0471,10.0471,0,0,0-2.1748.1782,6.3414,6.3414,0,0,0,.11-.69c.1706-4.1391-3.6059-7.6409-8.4351-7.8215a10.0118,10.0118,0,0,0-3.4279.4618"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..e5e36f6
--- /dev/null
+++ b/static/openmoji-svg-color/1F35C.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#d22f27" d="m62.92,35.0029c.0686-1.0352-.7149-1.9301-1.7502-1.9988-.0413-.0027-.0826-.0041-.124-.0041H11.0529c-1.0895-.002-1.9743.8795-1.9764,1.969-.0001.0542.002.1083.0064.1623.857,9.7287,7.53,17.9843,16.7945,21.7238v5.4866c.0335.9444.8226,1.6848,1.7672,1.6583h16.7108c.9445.0264,1.7335-.714,1.767-1.6583v-4.8424c9.712-3.3783,16.0713-12.1093,16.7976-22.4964Z"/>
+  </g>
+  <g id="line">
+    <line x1="61.4336" x2="17.4336" y1="21" y2="21" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="61.4336" x2="17.4336" y1="13" y2="13" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="34.2773" x2="34.4336" y1="10.8125" y2="33" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8409"/>
+    <line x1="28.2773" x2="28.4336" y1="10.8125" y2="33" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8409"/>
+    <line x1="22.2773" x2="22.4336" y1="10.8125" y2="33" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8409"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m62.92,35.0029c.0686-1.0352-.7149-1.9301-1.7502-1.9988-.0413-.0027-.0826-.0041-.124-.0041H11.0529c-1.0895-.002-1.9743.8795-1.9764,1.969-.0001.0542.002.1083.0064.1623.857,9.7287,7.53,17.9843,16.7945,21.7238v5.4866c.0335.9444.8226,1.6848,1.7672,1.6583h16.7108c.9445.0264,1.7335-.714,1.767-1.6583v-4.8424c9.712-3.3783,16.0713-12.1093,16.7976-22.4964Z"/>
+  </g>
+  <g id="color-foreground">
+    <line x1="34.2773" x2="34.4336" y1="10.8125" y2="33" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8409"/>
+    <line x1="28.2773" x2="28.4336" y1="10.8125" y2="33" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8409"/>
+    <line x1="22.2773" x2="22.4336" y1="10.8125" y2="33" fill="none" stroke="#f1b31c" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.8409"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..675abbd
--- /dev/null
+++ b/static/openmoji-svg-color/1F35D.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fcea2b" d="M45.8041,27.7451A13.8885,13.8885,0,0,0,36,31.7816c-.0415-.0411-.0876-.0773-.13-.1178V13.46a1.001,1.001,0,0,0-1-1.0031h-4.333a1.001,1.001,0,0,0-1,1.0031V28.1653A13.9287,13.9287,0,1,0,36,51.5791a13.934,13.934,0,1,0,9.8042-23.834Z"/>
+    <path fill="#d0cfce" d="M47.2667,41.7489c0,13.88-3.4667,25.1334-11.2667,25.1334A25.1335,25.1335,0,0,0,61.1333,41.7489Z"/>
+    <path fill="#fff" d="M10.8667,41.7489A25.1335,25.1335,0,0,0,36,66.8823c7.8,0,11.2667-11.2532,11.2667-25.1334Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.8667,41.7489a25.1333,25.1333,0,1,0,50.2666,0Z"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.4667,39.1489a13.0019,13.0019,0,0,1,25.4778,0"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17.9362,39.1489a8.6687,8.6687,0,0,1,16.5379,0"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22.7588,39.1489a4.2946,4.2946,0,0,1,6.8944,0"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M38.6059,30.9156a13.0036,13.0036,0,0,1,19.9274,8.2333"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M41.0206,34.5151a8.6692,8.6692,0,0,1,13.0432,4.6338"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42.9282,38.5176a4.2871,4.2871,0,0,1,6.313.6313"/>
+    <g id="line-2">
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M61,15.5946l-19.4123-.554h0c-.7408,1.287-2.6022,2.191-5.5708,2.191-3.9478,0-8.1058-.1115-8.1058-.1115"/>
+      <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M27.9113,9.8105s4.158-.1115,8.1058-.1115c2.9609,0,4.82.8993,5.565,2.1809h0L61,11.8605"/>
+      <line x1="27.9113" x2="37.4962" y1="13.4654" y2="13.4654" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    </g>
+    <line x1="34.8705" x2="34.8705" y1="13.5222" y2="32.0589" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="30.5371" x2="30.5371" y1="13.5222" y2="25.6827" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b7f0661
--- /dev/null
+++ b/static/openmoji-svg-color/1F35E.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#f1b31c" stroke="none" d="M33,17h29c2.7617,0,5,2.2393,5,5c0,1.6357-0.7969,3.0752-2.0117,3.9873 c-0.1074,0.0625-0.207,0.1348-0.2988,0.2168C64.2695,26.5703,64,27.1025,64,27.7031V53c0,1.1045-0.8955,2-2,2H33 c1.1045,0,2-0.8955,2-2V27.7031c0-0.6006,0.2695-1.1328,0.6895-1.499c0.0918-0.082,0.1914-0.1543,0.2988-0.2168 C37.2031,25.0752,38,23.6357,38,22C38,19.2393,35.7617,17,33,17z"/>
+    <path fill="#fcea2b" stroke="none" d="M33,17c2.7617,0,5,2.2393,5,5c0,1.6357-0.7969,3.0752-2.0117,3.9873 c-0.1074,0.0625-0.207,0.1348-0.2988,0.2168C35.2695,26.5703,35,27.1025,35,27.7031V53c0,1.1045-0.8955,2-2,2H10 c-1.1045,0-2-0.8955-2-2V27.7031c0-0.6006-0.2695-1.1328-0.6895-1.499c-0.0917-0.082-0.1914-0.1543-0.2988-0.2168 C5.7969,25.0752,5,23.6357,5,22c0-2.7607,2.2383-5,5-5H33z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M33,17c2.7617,0,5,2.2393,5,5c0,1.6357-0.7969,3.0752-2.0117,3.9873c-0.1074,0.0625-0.207,0.1348-0.2988,0.2168 C35.2695,26.5703,35,27.1025,35,27.7031V53c0,1.1045-0.8955,2-2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M10,17h52c2.7617,0,5,2.2393,5,5c0,1.6357-0.7969,3.0752-2.0117,3.9873c-0.1074,0.0625-0.207,0.1348-0.2988,0.2168 C64.2695,26.5703,64,27.1025,64,27.7031V53c0,1.1045-0.8955,2-2,2H10c-1.1045,0-2-0.8955-2-2V27.7031 c0-0.6006-0.2695-1.1328-0.6895-1.499c-0.0917-0.082-0.1914-0.1543-0.2988-0.2168C5.7969,25.0752,5,23.6357,5,22 C5,19.2393,7.2383,17,10,17z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..b3e736f
--- /dev/null
+++ b/static/openmoji-svg-color/1F35F.svg
@@ -0,0 +1,29 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <polyline fill="#fcea2b" stroke="none" points="27,48.8418 27,9.5234 26,9.5234 26,7 22,7 22,11.5234 21,11.5234 21,48"/>
+    <polyline fill="#fcea2b" stroke="none" points="43,46 43,9.5225 42,9.5225 42,5 38,5 38,8.5771 37,8.5225 37,47"/>
+    <polyline fill="#fcea2b" stroke="none" points="35,42 35,8.5225 34,7.9971 34,5 30,5 30,9.5234 29,9.5234 29,41"/>
+    <polyline fill="#fcea2b" stroke="none" points="51,40 51,11.5225 50,11.5225 50,7 46,7 46,9.5225 45,9.5225 45,40"/>
+    <polyline fill="#fcea2b" stroke="none" points="23,41.4209 23,33.6289 22,33.6289 22,15.1055 18,15.1055 18,33.6299 17,33.6299 17,37.1055"/>
+    <polyline fill="#fcea2b" stroke="none" points="47,44.5254 47,34.5244 46,34.5244 46,13 42,13 42,34.5791 41,34.5244 41,46.5254"/>
+    <polyline fill="#fcea2b" stroke="none" points="39,45.5254 39,35.5244 38,35.5244 38,12 34,12 34,35.5791 33,35.5244 33,47.5254"/>
+    <polyline fill="#fcea2b" stroke="none" points="31,46.5254 31,34.5244 30,33.999 30,13 26,13 26,34.5244 25,34.5244 25,44.5244"/>
+    <polyline fill="#fcea2b" stroke="none" points="55,37 55,32.6289 54,32.6289 54,15.1055 50,15.1055 50,33.6299 49,33.6299 49,42.6309"/>
+    <path fill="#ea5a47" stroke="none" d="M19,59.1973c10,7.7363,23,7.7363,34,0L55,37l-19,3l-19-3L19,59.1973z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="42,10 42,5 38,5 38,9"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="34,9 34,5 30,5 30,10"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="50,12 50,7 46,7 46,10"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="26,10 26,7 22,7 22,12"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M19,59.2637C29,67,42,67,53,59.2637L55,37l-19,3l-19-3L19,59.2637z"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="54,33.4736 54,15.1055 50,15.1055 50,34.1045"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="30,35.3682 30,13 26,13 26,34.7363"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="22,34.1045 22,15.1055 18,15.1055 18,33.4736"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="46,34.7363 46,13 42,13 42,35.3682"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="38,36 38,12 34,12 34,36"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..84afc93
--- /dev/null
+++ b/static/openmoji-svg-color/1F360.svg
@@ -0,0 +1,18 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#f4aa41" stroke="none" d="M32.667,22.0835C29.2109,23.5303,21,29,17,38c-2.291,5.1543-5,22-5,22s6.4395-3.0947,13-4.333 c4.417-0.834,7.4277-1.7178,9.417-2.5c7-2.751,16.25-10.667,18.833-16.334C56.0664,30.6543,60,12,60,12s-3.5,2.1665-11.75,5.1665 C42.9678,19.0874,36.25,20.5835,32.667,22.0835z"/>
+    <path fill="#e27022" stroke="none" d="M59.1748,12.4658c-0.5635,0.8672-1.3867,1.5752-2.4307,1.9639c-2.5898,0.9629-3.9062,3.8428-2.9414,6.4297 c0.9639,2.5859-0.3535,5.4658-2.9423,6.4277c-2.5889,0.9639-3.9053,3.8418-2.9424,6.4297 c0.9648,2.5879-0.3535,5.4668-2.9395,6.4297c-2.5898,0.9619-3.9072,3.8408-2.9424,6.4297c0.2481,0.667,0.3399,1.3535,0.3018,2.0215 c4.8144-3.5352,9.248-8.1133,10.9121-11.7647C56.0664,30.6543,60,12,60,12S59.7266,12.168,59.1748,12.4658z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M32.667,22.0835C29.2109,23.5303,21,29,17,38c-2.291,5.1543-5,22-5,22s6.4395-3.0947,13-4.333c4.417-0.834,7.4277-1.7178,9.417-2.5 c7-2.751,16.25-10.667,18.833-16.334C56.0664,30.6543,60,12,60,12s-3.5,2.1665-11.75,5.1665 C42.9678,19.0874,36.25,20.5835,32.667,22.0835z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M50,22c1.1045,0,2,0.8955,2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M41,24c1.1045,0,2,0.8955,2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M43,33c1.1045,0,2,0.8955,2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M32,29c1.1045,0,2,0.8955,2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M35,41c1.1045,0,2,0.8955,2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M25,37c1.1045,0,2,0.8955,2,2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8aac7bb
--- /dev/null
+++ b/static/openmoji-svg-color/1F361.svg
@@ -0,0 +1,20 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <ellipse cx="36.1418" cy="35.9995" rx="10" ry="9.9996" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.8698 36.0984)" fill="#FFFFFF" stroke="none"/>
+    <ellipse cx="22.1423" cy="21.9994" rx="9.9996" ry="10.0002" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -9.0706 22.1005)" fill="#ea5a47" stroke="none"/>
+    <path fill="#D22F27" stroke="none" d="M29.2129,14.9199c-2.5938-2.5947-6.2578-3.4551-9.5713-2.602c1.6748,0.4311,3.2607,1.291,4.5713,2.602 c3.9062,3.9053,3.9062,10.2368,0.001,14.1426c-1.3106,1.3105-2.8975,2.1699-4.5713,2.6016 c3.3135,0.8525,6.9765-0.0078,9.5713-2.6016C33.1191,25.1567,33.1191,18.8252,29.2129,14.9199z"/>
+    <ellipse cx="50.1423" cy="49.9995" rx="9.9993" ry="10.0003" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -20.6686 50.098)" fill="#b1cc33" stroke="none"/>
+    <path fill="#5c9e31" stroke="none" d="M57.2129,42.9199c-2.5938-2.5937-6.2578-3.4551-9.5713-2.6015c1.6748,0.4316,3.2607,1.291,4.5713,2.6015 c3.9062,3.9063,3.9062,10.2364,0.001,14.1426c-1.3106,1.3105-2.8975,2.1699-4.5713,2.6016 c3.3135,0.8535,6.9765-0.0078,9.5713-2.6016C61.1191,53.1563,61.1191,46.8262,57.2129,42.9199z"/>
+    <ellipse cx="36.1423" cy="35.9994" rx="9.9996" ry="10.0002" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.8696 36.1005)" fill="none" stroke="none"/>
+    <path fill="#d0cfce" stroke="none" d="M43.2129,28.9199c-2.5938-2.5947-6.2578-3.4551-9.5713-2.602c1.6748,0.4311,3.2607,1.291,4.5713,2.602 c3.9062,3.9053,3.9062,10.2364,0.001,14.1426c-1.3106,1.3105-2.8975,2.1699-4.5713,2.6016 c3.3135,0.8535,6.9765-0.0078,9.5713-2.6016C47.1191,39.1563,47.1191,32.8252,43.2129,28.9199z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <ellipse cx="36.1418" cy="35.9995" rx="10" ry="9.9996" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.8698 36.0984)" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="21.9997" cy="21.8575" rx="9.9998" ry="10.0003" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -9.012 21.9586)" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <ellipse cx="50.2842" cy="50.1416" rx="10.0003" ry="10.0003" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -20.7276 50.2424)" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="60.1426" x2="67.1426" y1="60" y2="67" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..3e4d1ae
--- /dev/null
+++ b/static/openmoji-svg-color/1F362.svg
@@ -0,0 +1,19 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <ellipse cx="35.9997" cy="35.9992" rx="9.9996" ry="10.0003" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.9112 35.9996)" fill="#f4aa41" stroke="none"/>
+    <path fill="#e27022" stroke="none" d="M43.0703,28.9199c-2.5937-2.5947-6.2578-3.4551-9.5713-2.602c1.6748,0.4311,3.2608,1.2915,4.5713,2.602 c3.9063,3.9053,3.9063,10.2364,0.001,14.1426c-1.3106,1.3105-2.8975,2.1699-4.5713,2.6016 c3.3135,0.8535,6.9766-0.0078,9.5713-2.6016C46.9766,39.1563,46.9766,32.8252,43.0703,28.9199z"/>
+    <polygon fill="#a57939" stroke="none" points="19.125,36 14.998,15 35.999,19.1279"/>
+    <polygon fill="#6A462F" stroke="none" points="36,19.1279 14.999,15 15.2471,16.2632 28.376,19.8271 18.6006,33.3242 19.126,36"/>
+    <path fill="#d0cfce" stroke="none" d="M39.582,55.418c1.2901,1.289,2.8448,2.1445,4.4883,2.582l13.8965-13.8965 c-0.4385-1.6426-1.292-3.1992-2.5811-4.4883c-1.29-1.291-2.8457-2.1445-4.4892-2.583L37,50.9277 C37.4385,52.5723,38.293,54.1289,39.582,55.418z"/>
+    <path fill="#9b9b9a" stroke="none" d="M58,44.1035c-0.4385-1.6426-1.292-3.1992-2.5811-4.4883c-1.29-1.291-2.8457-2.1445-4.4892-2.583 l-0.0752,0.0752c0.1894,0.2012,0.3848,0.3887,0.5644,0.6104c1.2891,1.6006,2.1426,3.5283,2.5811,5.5674L42.582,57.4434 c0.4961,0.2226,1.002,0.4179,1.5215,0.5566L58,44.1035z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <ellipse cx="36.0005" cy="35.999" rx="10" ry="10" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.9108 36.0019)" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="54" x2="67" y1="54" y2="67" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <polygon fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="19.1699,36.042 15.043,15.0425 36.0439,19.1704"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M39.6855,55.3848c1.2901,1.289,2.8448,2.1445,4.4883,2.582l13.8965-13.8965c-0.4385-1.6426-1.292-3.1992-2.581-4.4883 C54.1992,38.291,52.6436,37.4375,51,37L37.1035,50.8965C37.542,52.5391,38.3965,54.0957,39.6855,55.3848z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4f4748b
--- /dev/null
+++ b/static/openmoji-svg-color/1F363.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FFFFFF" stroke="none" d="M65.6572,47.1191c0.2168-0.3193,0.9098-1.271,0.9098-1.6861l-2-3.433c0,0-9.0528-9.0687-28.567-9.0687 S7.433,42,7.433,42l-2.3117,3.7165c0,0.415,1.0047,1.0833,1.2215,1.4026C5.5635,47.3926,5,48.127,5,49c0,1.1045,0.8955,2,2,2 c0.1006,0,0.1963-0.0156,0.2939-0.0293C7.1113,51.2715,7,51.6221,7,52c0,1.1045,0.8955,2,2,2c0.415,0,0.7998-0.127,1.1201-0.3428 C10.3926,54.4375,11.127,55,12,55s1.6074-0.5625,1.8799-1.3428C14.2002,53.873,14.585,54,15,54s0.7998-0.127,1.1201-0.3428 C16.3926,54.4375,17.127,55,18,55s1.6074-0.5625,1.8799-1.3428C20.2002,53.873,20.585,54,21,54s0.7998-0.127,1.1201-0.3428 C22.3926,54.4375,23.127,55,24,55s1.6074-0.5625,1.8799-1.3428C26.2002,53.873,26.585,54,27,54s0.7998-0.127,1.1201-0.3428 C28.3926,54.4375,29.127,55,30,55s1.6074-0.5625,1.8799-1.3428C32.2002,53.873,32.585,54,33,54s0.7998-0.127,1.1201-0.3428 C34.3926,54.4375,35.127,55,36,55s1.6074-0.5625,1.8799-1.3428C38.2002,53.873,38.585,54,39,54s0.7998-0.127,1.1201-0.3428 C40.3926,54.4375,41.127,55,42,55s1.6074-0.5625,1.8799-1.3428C44.2002,53.873,44.585,54,45,54s0.7998-0.127,1.1201-0.3428 C46.3926,54.4375,47.127,55,48,55s1.6074-0.5625,1.8799-1.3428C50.2002,53.873,50.585,54,51,54s0.7998-0.127,1.1201-0.3428 C52.3926,54.4375,53.127,55,54,55s1.6074-0.5625,1.8799-1.3428C56.2002,53.873,56.585,54,57,54s0.7998-0.127,1.1201-0.3428 C58.3926,54.4375,59.127,55,60,55s1.6074-0.5625,1.8799-1.3428C62.2002,53.873,62.585,54,63,54c1.1045,0,2-0.8955,2-2 c0-0.3779-0.1113-0.7285-0.2939-1.0293C64.8037,50.9844,64.8994,51,65,51c1.1045,0,2-0.8955,2-2 C67,48.127,66.4365,47.3926,65.6572,47.1191z"/>
+    <path fill="#ea5a47" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M7,42c0,0,16-4,29-4s29,4,29,4v-6C48.9834,18.665,23.0176,18.668,7,36V42z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M6,46c0,0.415,0.126,0.7998,0.3428,1.1191C5.5635,47.3926,5,48.127,5,49c0,1.1045,0.8955,2,2,2 c0.1006,0,0.1963-0.0156,0.2939-0.0293C7.1113,51.2715,7,51.6221,7,52c0,1.1045,0.8955,2,2,2c0.415,0,0.7998-0.127,1.1201-0.3428 C10.3926,54.4375,11.127,55,12,55s1.6074-0.5625,1.8799-1.3428C14.2002,53.873,14.585,54,15,54s0.7998-0.127,1.1201-0.3428 C16.3926,54.4375,17.127,55,18,55s1.6074-0.5625,1.8799-1.3428C20.2002,53.873,20.585,54,21,54s0.7998-0.127,1.1201-0.3428 C22.3926,54.4375,23.127,55,24,55s1.6074-0.5625,1.8799-1.3428C26.2002,53.873,26.585,54,27,54s0.7998-0.127,1.1201-0.3428 C28.3926,54.4375,29.127,55,30,55s1.6074-0.5625,1.8799-1.3428C32.2002,53.873,32.585,54,33,54s0.7998-0.127,1.1201-0.3428 C34.3926,54.4375,35.127,55,36,55s1.6074-0.5625,1.8799-1.3428C38.2002,53.873,38.585,54,39,54s0.7998-0.127,1.1201-0.3428 C40.3926,54.4375,41.127,55,42,55s1.6074-0.5625,1.8799-1.3428C44.2002,53.873,44.585,54,45,54s0.7998-0.127,1.1201-0.3428 C46.3926,54.4375,47.127,55,48,55s1.6074-0.5625,1.8799-1.3428C50.2002,53.873,50.585,54,51,54s0.7998-0.127,1.1201-0.3428 C52.3926,54.4375,53.127,55,54,55s1.6074-0.5625,1.8799-1.3428C56.2002,53.873,56.585,54,57,54s0.7998-0.127,1.1201-0.3428 C58.3926,54.4375,59.127,55,60,55s1.6074-0.5625,1.8799-1.3428C62.2002,53.873,62.585,54,63,54c1.1045,0,2-0.8955,2-2 c0-0.3779-0.1113-0.7285-0.2939-1.0293C64.8037,50.9844,64.8994,51,65,51c1.1045,0,2-0.8955,2-2 c0-0.873-0.5635-1.6074-1.3428-1.8809C65.874,46.7998,66,46.415,66,46"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M7,42c0,0,16-4,29-4s29,4,29,4v-6C48.9834,18.665,23.0176,18.668,7,36V42z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..f6c2467
--- /dev/null
+++ b/static/openmoji-svg-color/1F364.svg
@@ -0,0 +1,13 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#ea5a47" stroke="none" d="M29.9063,42.9375c-1.6563-0.5312-2.9688-1.375-4.1875-2.375c-2.9317-2.4053-5.7198-6.0488-5.7198-9.3125 v-19c0-2.7617-2.2383-5-5-5c-2.7617,0-5,2.2383-5,5l1,28c0,4.375,1.0733,10.293,3.751,14.6875 c0.6582,1.0801,3.2188,3.8125,4.1875,4.5938"/>
+    <path fill="#f4aa41" stroke="none" d="M63.6572,35.2861C63.873,34.9668,64,34.582,64,34.166c0-0.414-0.127-0.7988-0.3428-1.1191 C64.4375,32.7734,65,32.0391,65,31.166c0-0.873-0.5625-1.6074-1.3428-1.8799C63.873,28.9668,64,28.582,64,28.166 c0-0.8725-0.5625-1.6069-1.3428-1.8799C62.873,25.9663,63,25.5815,63,25.1665c0-0.873-0.5625-1.6074-1.3428-1.8804 C61.873,22.9663,62,22.5815,62,22.1665c0-1.1045-0.8955-2-2-2c-0.1006,0-0.1973,0.0151-0.2939,0.0298 C59.8887,19.8945,60,19.5444,60,19.1665c0-1.1045-0.8955-2-2-2c-0.1006,0-0.1973,0.0151-0.2939,0.0298 C57.8887,16.8945,58,16.5444,58,16.1665c0-1.1045-0.8955-2-2-2c-0.3779,0-0.7275,0.1113-1.0303,0.2935 C54.9854,14.3633,55,14.2671,55,14.1665c0-1.1045-0.8955-2-2-2c-0.415,0-0.7998,0.1265-1.1201,0.3428 C51.6074,11.7295,50.873,11.1665,50,11.1665c-0.3779,0-0.7275,0.1113-1.0303,0.2935C48.9854,11.3633,49,11.2671,49,11.1665 c0-1.1045-0.8955-2-2-2c-0.415,0-0.7998,0.1265-1.1201,0.3428C45.6074,8.7295,44.873,8.1665,44,8.1665 c-0.415,0-0.7998,0.1265-1.1201,0.3428C42.6074,7.7295,41.873,7.1665,41,7.1665c-0.415,0-0.7998,0.1265-1.1201,0.3428 C39.6074,6.7295,38.873,6.1665,38,6.1665s-1.6074,0.563-1.8799,1.3428C35.7998,7.293,35.415,7.1665,35,7.1665 c-0.6885,0-1.2959,0.3481-1.6553,0.8779c-0.2197,0.0035-0.4277,0.0474-0.625,0.1162C32.3721,7.5684,31.7354,7.1665,31,7.1665 c-1.1045,0-2,0.8955-2,2c-1.1045,0-2,0.8955-2,2c-1.1045,0-2,0.8955-2,2c0,0.415,0.126,0.7998,0.3428,1.1196 C24.5635,14.5591,24,15.2935,24,16.1665c0,0.6006,0.2705,1.1333,0.6904,1.5C24.2705,18.0332,24,18.5659,24,19.1665 c0,0.8853,0.5791,1.6279,1.376,1.8911c0.001,0.0723,0.0136,0.1411,0.0215,0.2114C24.5898,21.5259,24,22.2734,24,23.1665 c0,1.1045,0.8955,2,2,2c0.1006,0,0.1963-0.0151,0.2939-0.0298C26.1113,25.4385,26,25.7886,26,26.1665 c0,1.1045,0.8955,1.9995,2,1.9995c0.3779,0,0.7275-0.1108,1.0303-0.293C29.0146,27.9697,29,28.0659,29,28.166 c0,1.1055,0.8955,2,2,2c0.415,0,0.7998-0.126,1.1201-0.3418C32.3926,30.6035,33.127,31.166,34,31.166 c0.6006,0,1.1338-0.2695,1.5-0.6894c0.3662,0.4199,0.8994,0.6894,1.5,0.6894c0.3779,0,0.7275-0.1113,1.0303-0.293 C38.0146,30.9697,38,31.0664,38,31.166c0,1.1055,0.8955,2,2,2c0.2314,0,0.4482-0.0488,0.6533-0.1211 c0.0899,0.1514,0.1914,0.2949,0.3155,0.418C40.3896,33.8105,40,34.4414,40,35.166c0,1.1055,0.8955,2,2,2c-1.1045,0-2,0.8965-2,2 c0,0.3789,0.1113,0.7285,0.2939,1.0303C40.1963,40.1816,40.1006,40.166,40,40.166c-1.1045,0-2,0.8965-2,2 c0,0.1016,0.0146,0.1973,0.0303,0.294c-0.3028-0.1827-0.6524-0.294-1.0303-0.294c-1.1045,0-2,0.8965-2,2 c-0.415,0-0.7998,0.127-1.1201,0.3438C33.6074,43.7295,32.873,43.166,32,43.166c-0.6006,0-1.1338,0.2715-1.5,0.6904 c-0.3662-0.4189-0.8994-0.6904-1.5-0.6904c-1.1045,0-2,0.8965-2,2c-1.1045,0-2,0.8965-2,2c0,0.3789,0.1113,0.7285,0.2939,1.0303 C25.1963,48.1816,25.1006,48.166,25,48.166c-1.1045,0-2,0.8965-2,2c-1.1045,0-2,0.8965-2,2c0,0.3789,0.1113,0.7285,0.2939,1.0303 C21.1963,53.1816,21.1006,53.166,21,53.166c-1.1045,0-2,0.8965-2,2c0,0.8858,0.5791,1.6289,1.376,1.8916 c0.001,0.0723,0.0136,0.1416,0.0215,0.2119C19.5898,57.5254,19,58.2734,19,59.166c0,1.1055,0.8955,2,2,2 c0.415,0,0.7998-0.126,1.1201-0.3418C22.3926,61.6035,23.127,62.166,24,62.166c0.3779,0,0.7275-0.1113,1.0303-0.293 C25.0146,61.9697,25,62.0664,25,62.166c0,1.1055,0.8955,2,2,2c0.6006,0,1.1338-0.2695,1.5-0.6894 c0.3662,0.4199,0.8994,0.6894,1.5,0.6894c0.415,0,0.7998-0.126,1.1201-0.3418C31.3926,64.6035,32.127,65.166,33,65.166 c0.8232,0,1.5283-0.498,1.835-1.207c0.1181,0.0332,0.2402,0.0537,0.3652,0.0644C35.5225,64.6973,36.2041,65.166,37,65.166 c0.6006,0,1.1338-0.2695,1.5-0.6894c0.3662,0.4199,0.8994,0.6894,1.5,0.6894c0.873,0,1.6074-0.5625,1.8799-1.3418 C42.2002,64.04,42.585,64.166,43,64.166c0.873,0,1.6074-0.5625,1.8799-1.3418C45.2002,63.04,45.585,63.166,46,63.166 c0.873,0,1.6074-0.5625,1.8799-1.3418C48.2002,62.04,48.585,62.166,49,62.166c1.1045,0,2-0.8945,2-2 c0-0.0996-0.0146-0.1963-0.0303-0.293c0.3028,0.1817,0.6524,0.293,1.0303,0.293c1.1045,0,2-0.8945,2-2c1.1045,0,2-0.8945,2-2 c1.1045,0,2-0.8945,2-2c1.1045,0,2-0.8945,2-2c0-0.3769-0.1113-0.7275-0.2939-1.0293C59.8027,51.1514,59.8994,51.166,60,51.166 c1.1045,0,2-0.8945,2-2c0-0.3769-0.1113-0.7275-0.2939-1.0293C61.8027,48.1514,61.8994,48.166,62,48.166c1.1045,0,2-0.8945,2-2 c0-0.5996-0.2705-1.1328-0.6895-1.5C63.7295,44.2998,64,43.7676,64,43.166c0-0.414-0.127-0.7988-0.3428-1.1191 C64.4375,41.7734,65,41.0391,65,40.166c0-0.5996-0.2705-1.1328-0.6895-1.5C64.7295,38.2998,65,37.7676,65,37.166 C65,36.293,64.4375,35.5586,63.6572,35.2861z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M25.0322,41.2734C21.9697,38.8955,19.999,35.1777,19.999,31V12c0-2.7617-2.2383-5-5-5c-2.7617,0-5,2.2383-5,5l1,28 c0,5.4502,1.7442,10.4922,4.7051,14.6006"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M63.6572,35.1191C63.873,34.7998,64,34.415,64,34s-0.127-0.7998-0.3428-1.1191C64.4375,32.6074,65,31.873,65,31 s-0.5625-1.6074-1.3428-1.8809C63.873,28.7998,64,28.415,64,28c0-0.873-0.5625-1.6074-1.3428-1.8804 C62.873,25.7998,63,25.415,63,25c0-0.873-0.5625-1.6074-1.3428-1.8804C61.873,22.7998,62,22.415,62,22c0-1.1045-0.8955-2-2-2 c-0.1006,0-0.1973,0.0151-0.2939,0.0298C59.8887,19.728,60,19.3779,60,19c0-1.1045-0.8955-2-2-2 c-0.1006,0-0.1973,0.0151-0.2939,0.0298C57.8887,16.728,58,16.3779,58,16c0-1.1045-0.8955-2-2-2 c-0.3779,0-0.7275,0.1113-1.0303,0.2935C54.9854,14.1968,55,14.1006,55,14c0-1.1045-0.8955-2-2-2 c-0.415,0-0.7998,0.1265-1.1201,0.3428C51.6074,11.563,50.873,11,50,11c-0.3779,0-0.7275,0.1113-1.0303,0.2935 C48.9854,11.1968,49,11.1006,49,11c0-1.1045-0.8955-2-2-2c-0.415,0-0.7998,0.1265-1.1201,0.3428C45.6074,8.563,44.873,8,44,8 c-0.415,0-0.7998,0.1265-1.1201,0.3428C42.6074,7.563,41.873,7,41,7c-0.415,0-0.7998,0.1265-1.1201,0.3428 C39.6074,6.563,38.873,6,38,6s-1.6074,0.563-1.8799,1.3428C35.7998,7.1265,35.415,7,35,7c-0.6885,0-1.2959,0.3481-1.6553,0.8779 c-0.2197,0.0034-0.4277,0.0474-0.625,0.1162C32.3721,7.4019,31.7354,7,31,7c-1.1045,0-2,0.8955-2,2c-1.1045,0-2,0.8955-2,2 c-1.1045,0-2,0.8955-2,2c0,0.415,0.126,0.7998,0.3428,1.1196C24.5635,14.3926,24,15.127,24,16c0,0.6006,0.2705,1.1333,0.6904,1.5 C24.2705,17.8667,24,18.3994,24,19c0,0.8853,0.5791,1.6279,1.376,1.8911c0.001,0.0723,0.0136,0.1411,0.0215,0.2114 C24.5898,21.3594,24,22.1069,24,23c0,1.1045,0.8955,2,2,2c0.1006,0,0.1963-0.0151,0.2939-0.0298C26.1113,25.272,26,25.6221,26,26 c0,1.1045,0.8955,2,2,2c0.3779,0,0.7275-0.1113,1.0303-0.2935C29.0146,27.8032,29,27.8994,29,28c0,1.1045,0.8955,2,2,2 c0.415,0,0.7998-0.127,1.1201-0.3428C32.3926,30.4375,33.127,31,34,31c0.6006,0,1.1338-0.2705,1.5-0.6895 C35.8662,30.7295,36.3994,31,37,31c0.3779,0,0.7275-0.1113,1.0303-0.293C38.0146,30.8027,38,30.8994,38,31c0,1.1045,0.8955,2,2,2 c0.2314,0,0.4482-0.0488,0.6533-0.1221c0.0899,0.1514,0.1914,0.295,0.3155,0.418C40.3896,33.6445,40,34.2744,40,35 c0,1.1045,0.8955,2,2,2c-1.1045,0-2,0.8955-2,2c0,0.3779,0.1113,0.7285,0.2939,1.0293C40.1963,40.0156,40.1006,40,40,40 c-1.1045,0-2,0.8955-2,2c0,0.1006,0.0146,0.1973,0.0303,0.293C37.7275,42.1113,37.3779,42,37,42c-1.1045,0-2,0.8955-2,2 c-0.415,0-0.7998,0.127-1.1201,0.3428C33.6074,43.5625,32.873,43,32,43c-0.6006,0-1.1338,0.2705-1.5,0.6895 C30.1338,43.2705,29.6006,43,29,43c-1.1045,0-2,0.8955-2,2c-1.1045,0-2,0.8955-2,2c0,0.3779,0.1113,0.7285,0.2939,1.0293 C25.1963,48.0156,25.1006,48,25,48c-1.1045,0-2,0.8955-2,2c-1.1045,0-2,0.8955-2,2c0,0.3779,0.1113,0.7285,0.2939,1.0293 C21.1963,53.0156,21.1006,53,21,53c-1.1045,0-2,0.8955-2,2c0,0.8848,0.5791,1.6279,1.376,1.8906 c0.001,0.0723,0.0136,0.1416,0.0215,0.2119C19.5898,57.3594,19,58.1074,19,59c0,1.1045,0.8955,2,2,2 c0.415,0,0.7998-0.127,1.1201-0.3428C22.3926,61.4375,23.127,62,24,62c0.3779,0,0.7275-0.1113,1.0303-0.293 C25.0146,61.8027,25,61.8994,25,62c0,1.1045,0.8955,2,2,2c0.6006,0,1.1338-0.2705,1.5-0.6895C28.8662,63.7295,29.3994,64,30,64 c0.415,0,0.7998-0.127,1.1201-0.3428C31.3926,64.4375,32.127,65,33,65c0.8232,0,1.5283-0.498,1.835-1.208 c0.1181,0.0332,0.2402,0.0537,0.3652,0.0654C35.5225,64.5313,36.2041,65,37,65c0.6006,0,1.1338-0.2705,1.5-0.6895 C38.8662,64.7295,39.3994,65,40,65c0.873,0,1.6074-0.5625,1.8799-1.3428C42.2002,63.873,42.585,64,43,64 c0.873,0,1.6074-0.5625,1.8799-1.3428C45.2002,62.873,45.585,63,46,63c0.873,0,1.6074-0.5625,1.8799-1.3428 C48.2002,61.873,48.585,62,49,62c1.1045,0,2-0.8955,2-2c0-0.1006-0.0146-0.1973-0.0303-0.293C51.2725,59.8887,51.6221,60,52,60 c1.1045,0,2-0.8955,2-2c1.1045,0,2-0.8955,2-2c1.1045,0,2-0.8955,2-2c1.1045,0,2-0.8955,2-2c0-0.3779-0.1113-0.7285-0.2939-1.0293 C59.8027,50.9844,59.8994,51,60,51c1.1045,0,2-0.8955,2-2c0-0.3779-0.1113-0.7285-0.2939-1.0293C61.8027,47.9844,61.8994,48,62,48 c1.1045,0,2-0.8955,2-2c0-0.6006-0.2705-1.1328-0.6895-1.5C63.7295,44.1328,64,43.6006,64,43c0-0.415-0.127-0.7998-0.3428-1.1191 C64.4375,41.6074,65,40.873,65,40c0-0.6006-0.2705-1.1328-0.6895-1.5C64.7295,38.1328,65,37.6006,65,37 C65,36.127,64.4375,35.3926,63.6572,35.1191z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..cca50a2
--- /dev/null
+++ b/static/openmoji-svg-color/1F365.svg
@@ -0,0 +1,39 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <g>
+      <path fill="#d0cfce" d="M57.8085,36.4045a6.5742,6.5742,0,0,1,5.2295,2.4493,7.2824,7.2824,0,0,1,1.2049,2.853,7.9835,7.9835,0,0,1-.2836,3.4,6.8735,6.8735,0,0,1-4.4379,4.5085,6.1343,6.1343,0,0,1-2.9006.14,7.341,7.341,0,0,1-2.7486-1.223l-.458.6094"/>
+      <path fill="#d0cfce" d="M53.4142,49.142a6.4274,6.4274,0,0,1,2.774,5.0457,6,6,0,0,1-.7005,3.0145,8.489,8.489,0,0,1-.91,1.4139A9.5342,9.5342,0,0,1,53.27,59.79a7.19,7.19,0,0,1-3.1394,1.3251,6.59,6.59,0,0,1-3.0871-.2636,6.4881,6.4881,0,0,1-3.9424-4.2053l-.7167.2539"/>
+      <path fill="#d0cfce" d="M42.3845,56.9a6.5106,6.5106,0,0,1-.7243,5.7105,6.8785,6.8785,0,0,1-2.3452,2.0181A8.1458,8.1458,0,0,1,36,65.4279a8.1458,8.1458,0,0,1-3.315-.7991A6.8785,6.8785,0,0,1,30.34,62.6107,6.5106,6.5106,0,0,1,29.6155,56.9l-.7167-.2539"/>
+      <path fill="#d0cfce" d="M28.8988,56.6463a6.4881,6.4881,0,0,1-3.9424,4.2053,6.59,6.59,0,0,1-3.0871.2636A7.19,7.19,0,0,1,18.73,59.79a9.5342,9.5342,0,0,1-1.3072-1.174,8.489,8.489,0,0,1-.91-1.4139,6,6,0,0,1-.7-3.0145,6.4274,6.4274,0,0,1,2.774-5.0457l-.458-.6094"/>
+      <path fill="#d0cfce" d="M18.1278,48.5326a7.341,7.341,0,0,1-2.7486,1.223,6.1343,6.1343,0,0,1-2.9006-.14,6.8735,6.8735,0,0,1-4.4379-4.5085,7.9835,7.9835,0,0,1-.2836-3.4,7.2824,7.2824,0,0,1,1.2049-2.853,6.5742,6.5742,0,0,1,5.23-2.4493v-.3812"/>
+    </g>
+    <g>
+      <path fill="#d0cfce" d="M53.8722,23.8953a7.0473,7.0473,0,0,1,2.7486-1.2231,6.1331,6.1331,0,0,1,2.9006.14,6.8735,6.8735,0,0,1,4.4379,4.5084,7.9841,7.9841,0,0,1,.2836,3.4A7.282,7.282,0,0,1,63.038,33.574a6.5736,6.5736,0,0,1-5.2295,2.4493v.3812"/>
+      <path fill="#d0cfce" d="M43.1012,15.7816a6.4879,6.4879,0,0,1,3.9424-4.2053,6.59,6.59,0,0,1,3.0871-.2637A7.19,7.19,0,0,1,53.27,12.6378a9.5336,9.5336,0,0,1,1.3072,1.1739,8.4857,8.4857,0,0,1,.91,1.414,6,6,0,0,1,.7005,3.0144,6.4277,6.4277,0,0,1-2.774,5.0458l.458.6094"/>
+      <path fill="#d0cfce" d="M29.6155,15.5277a6.5106,6.5106,0,0,1,.7243-5.71A6.8788,6.8788,0,0,1,32.685,7.799,8.1441,8.1441,0,0,1,36,7a8.1441,8.1441,0,0,1,3.315.799A6.8788,6.8788,0,0,1,41.66,9.8172a6.5106,6.5106,0,0,1,.7243,5.7105l.7167.2539"/>
+      <path fill="#d0cfce" d="M18.5858,23.2859a6.4277,6.4277,0,0,1-2.774-5.0458,6,6,0,0,1,.7-3.0144,8.4857,8.4857,0,0,1,.91-1.414A9.5336,9.5336,0,0,1,18.73,12.6378a7.19,7.19,0,0,1,3.1394-1.3252,6.59,6.59,0,0,1,3.0871.2637,6.4879,6.4879,0,0,1,3.9424,4.2053l.7167-.2539"/>
+      <path fill="#d0cfce" d="M14.1915,36.0233A6.5736,6.5736,0,0,1,8.962,33.574a7.282,7.282,0,0,1-1.2049-2.8529,7.9841,7.9841,0,0,1,.2836-3.4,6.8735,6.8735,0,0,1,4.4379-4.5084,6.1317,6.1317,0,0,1,2.9006-.14,7.3378,7.3378,0,0,1,2.7486,1.223l.458-.6094"/>
+    </g>
+    <circle cx="36" cy="36" r="22" fill="#d0cfce"/>
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.7821" d="M32.4358,35.1323s0,.0356.0036.1a3.3149,3.3149,0,0,0,5.4116,2.3211c1.758-1.3983,3.4263-5.7264-1.851-8.6583-2.3367-1.2982-8.91.8911-9.8015,6.2374a7.6046,7.6046,0,0,0,.8606,4.8834A10.1785,10.1785,0,0,0,34.94,45.1925c2.9885.351,8.0552-.4055,9.97-4.714,3.5642-8.0194-2.6732-11.5836-2.6732-11.5836"/>
+  </g>
+  <g id="line">
+    <g>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M57.8085,36.4045a6.5742,6.5742,0,0,1,5.2295,2.4493,7.2824,7.2824,0,0,1,1.2049,2.853,7.9835,7.9835,0,0,1-.2836,3.4,6.8735,6.8735,0,0,1-4.4379,4.5085,6.1343,6.1343,0,0,1-2.9006.14,7.341,7.341,0,0,1-2.7486-1.223l-.458.6094"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.4142,49.142a6.4274,6.4274,0,0,1,2.774,5.0457,6,6,0,0,1-.7005,3.0145,8.489,8.489,0,0,1-.91,1.4139A9.5342,9.5342,0,0,1,53.27,59.79a7.19,7.19,0,0,1-3.1394,1.3251,6.59,6.59,0,0,1-3.0871-.2636,6.4881,6.4881,0,0,1-3.9424-4.2053l-.7167.2539"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M42.3845,56.9a6.5106,6.5106,0,0,1-.7243,5.7105,6.8785,6.8785,0,0,1-2.3452,2.0181A8.1458,8.1458,0,0,1,36,65.4279a8.1458,8.1458,0,0,1-3.315-.7991A6.8785,6.8785,0,0,1,30.34,62.6107,6.5106,6.5106,0,0,1,29.6155,56.9l-.7167-.2539"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M28.8988,56.6463a6.4881,6.4881,0,0,1-3.9424,4.2053,6.59,6.59,0,0,1-3.0871.2636A7.19,7.19,0,0,1,18.73,59.79a9.5342,9.5342,0,0,1-1.3072-1.174,8.489,8.489,0,0,1-.91-1.4139,6,6,0,0,1-.7-3.0145,6.4274,6.4274,0,0,1,2.774-5.0457l-.458-.6094"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.1278,48.5326a7.341,7.341,0,0,1-2.7486,1.223,6.1343,6.1343,0,0,1-2.9006-.14,6.8735,6.8735,0,0,1-4.4379-4.5085,7.9835,7.9835,0,0,1-.2836-3.4,7.2824,7.2824,0,0,1,1.2049-2.853,6.5742,6.5742,0,0,1,5.23-2.4493v-.3812"/>
+    </g>
+    <g>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.8722,23.8953a7.0473,7.0473,0,0,1,2.7486-1.2231,6.1331,6.1331,0,0,1,2.9006.14,6.8735,6.8735,0,0,1,4.4379,4.5084,7.9841,7.9841,0,0,1,.2836,3.4A7.282,7.282,0,0,1,63.038,33.574a6.5736,6.5736,0,0,1-5.2295,2.4493v.3812"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M43.1012,15.7816a6.4879,6.4879,0,0,1,3.9424-4.2053,6.59,6.59,0,0,1,3.0871-.2637A7.19,7.19,0,0,1,53.27,12.6378a9.5336,9.5336,0,0,1,1.3072,1.1739,8.4857,8.4857,0,0,1,.91,1.414,6,6,0,0,1,.7005,3.0144,6.4277,6.4277,0,0,1-2.774,5.0458l.458.6094"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M29.6155,15.5277a6.5106,6.5106,0,0,1,.7243-5.71A6.8788,6.8788,0,0,1,32.685,7.799,8.1441,8.1441,0,0,1,36,7a8.1441,8.1441,0,0,1,3.315.799A6.8788,6.8788,0,0,1,41.66,9.8172a6.5106,6.5106,0,0,1,.7243,5.7105l.7167.2539"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18.5858,23.2859a6.4277,6.4277,0,0,1-2.774-5.0458,6,6,0,0,1,.7-3.0144,8.4857,8.4857,0,0,1,.91-1.414A9.5336,9.5336,0,0,1,18.73,12.6378a7.19,7.19,0,0,1,3.1394-1.3252,6.59,6.59,0,0,1,3.0871.2637,6.4879,6.4879,0,0,1,3.9424,4.2053l.7167-.2539"/>
+      <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.1915,36.0233A6.5736,6.5736,0,0,1,8.962,33.574a7.282,7.282,0,0,1-1.2049-2.8529,7.9841,7.9841,0,0,1,.2836-3.4,6.8735,6.8735,0,0,1,4.4379-4.5084,6.1317,6.1317,0,0,1,2.9006-.14,7.3378,7.3378,0,0,1,2.7486,1.223l.458-.6094"/>
+    </g>
+  </g>
+  <g id="color-foreground">
+    <path fill="none" stroke="#d22f27" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M32.4358,34.2412s0,.0357.0036.1a3.3149,3.3149,0,0,0,5.4116,2.3211c1.758-1.3983,3.4263-5.7264-1.851-8.6582-2.3367-1.2982-8.91.891-9.8015,6.2373a7.6046,7.6046,0,0,0,.8606,4.8834A10.1785,10.1785,0,0,0,34.94,44.3014c2.9885.3511,8.0552-.4055,9.97-4.7139,3.5642-8.0194-2.6732-11.5836-2.6732-11.5836"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..19ef141
--- /dev/null
+++ b/static/openmoji-svg-color/1F366.svg
@@ -0,0 +1,23 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FFFFFF" stroke="none" d="M53.9354,36v4H18.3685v-4H19.37c-0.02-0.34,0.01-0.68,0.1-1c0.3-1.05,1.17-1.92,2.33-2.18l3.77-0.87 c-1.5,0.11-2.88-0.84-3.21-2.3c-0.37-1.61,0.68-3.23,2.36-3.62l3.77-0.87c-1.5,0.1-2.88-0.85-3.21-2.3 c-0.37-1.61,0.69-3.23,2.37-3.62l3.79-0.87c-1.51,0.13-2.9-0.82-3.23-2.29c-0.38-1.61,0.68-3.24,2.36-3.62l1.26-0.29h0.01 C33.86,11.67,36,7,34,5h3c1.66,0,3,1.34,3,3s-1,2.52-2.69,2.9l2.77-0.64c1.68-0.39,3.34,0.61,3.71,2.22 c0.34,1.45-0.47,2.89-1.84,3.46L43,15.7c1.68-0.39,3.35,0.6,3.72,2.22c0.33,1.44-0.48,2.88-1.85,3.45l1.06-0.24 c1.68-0.38,3.34,0.61,3.71,2.23c0.34,1.46-0.5,2.92-1.9,3.48l1.11-0.26c1.68-0.39,3.34,0.61,3.71,2.22 c0.38,1.62-0.68,3.24-2.36,3.63l-2.39,0.55L50,33c1.31,0,2.42,0.83,2.82,2C52.94,35.31,53.9354,35.65,53.9354,36z"/>
+    <rect x="17" y="40" width="38" height="10" fill="#fcea2b" stroke="none"/>
+    <path fill="#fcea2b" stroke="none" d="M52,50l-4,12c-0.873,2.6191-2.2393,5-5,5H29c-2.7607,0-4.127-2.3809-5-5l-4-12"/>
+    <rect x="42.333" y="40" width="12.667" height="10" fill="#f1b31c" stroke="none"/>
+    <path fill="#f1b31c" stroke="none" d="M43.3564,50L40,63.0303c-0.374,1.4541-0.8408,2.8486-1.4678,3.9697H43c2.7607,0,4.127-2.3809,5-5l4-12 H43.3564z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <rect x="17" y="40" width="38" height="10" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M53,36c0-1.6562-1.3428-3-3-3l-2.2187-0.0156"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2.0397" d="M30.5713,12.4556c-1.6797,0.3877-2.7383,2.0112-2.3662,3.6255c0.373,1.6142,2.0361,2.6084,3.7158,2.2207l9.5088-2.1954 c1.6797-0.3876,2.7383-2.0107,2.3652-3.625c-0.372-1.6142-2.0351-2.6088-3.7148-2.2211L30.5713,12.4556z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2.0397" d="M27.6475,19.2402c-1.6797,0.3877-2.7383,2.0103-2.3653,3.6245c0.3721,1.6143,2.0352,2.6094,3.7149,2.2217l15.3554-3.5449 c1.6788-0.3877,2.7383-2.0112,2.3653-3.6255c-0.3721-1.6142-2.0362-2.6084-3.7158-2.2207L27.6475,19.2402z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2.0397" d="M49.6406,23.3555c-0.373-1.6143-2.0351-2.6094-3.7148-2.2212l-21.2012,4.8945c-1.6797,0.3877-2.7383,2.0112-2.3662,3.6255 c0.373,1.6143,2.0361,2.6084,3.7158,2.2207l21.2012-4.8945C48.9551,26.5928,50.0137,24.9697,49.6406,23.3555z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2.0397" d="M35.9424,35.7168l14.2568-3.291c1.6787-0.3877,2.7383-2.0108,2.3653-3.625c-0.3731-1.6143-2.0362-2.6094-3.7149-2.2217 l-27.0478,6.2451c-1.5225,0.3506-2.5352,1.7168-2.4327,3.1729"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9999" d="M34,5h3c1.6572,0,3,1.3433,3,3s-1,2.521-2.6875,2.896"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9999" d="M34,5c2,2-0.1455,6.6875-2.167,7.1665"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M52,50l-4,12c-0.873,2.6191-2.2393,5-5,5H29c-2.7607,0-4.127-2.3809-5-5l-4-12"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6892f43
--- /dev/null
+++ b/static/openmoji-svg-color/1F367.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FCEA2B" d="M52.0703,24.8882c3.9063,3.9043,3.9063,10.2358,0.001,14.1421C48.166,42.9346,39.9053,45.0713,36,41.167 c-3.9053-3.9063-1.9766-12.3745,1.9287-16.2798S48.166,20.9819,52.0703,24.8882z"/>
+    <path fill="#F1B31C" d="M52.0703,24.896c-2.5937-2.5938-6.2578-3.4551-9.5713-2.6016c1.6748,0.4317,3.2608,1.291,4.5713,2.6016 c3.9063,3.9062,3.9063,10.2378,0.001,14.1421c-1.3106,1.3105-2.8975,2.1719-4.5713,2.6015 c3.3135,0.8536,6.9766-0.0078,9.5713-2.6015C55.9766,35.1338,55.9766,28.8022,52.0703,24.896z"/>
+    <ellipse cx="26.9993" cy="32.0427" rx="9.9997" ry="10.0004" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.7497 28.4765)" fill="#FCEA2B"/>
+    <path fill="#F1B31C" d="M34.0703,24.979c-2.5937-2.5937-6.2578-3.4551-9.5713-2.6016c1.6748,0.4317,3.2608,1.2911,4.5713,2.6016 c3.9063,3.9063,3.9063,10.2378,0.001,14.1421c-1.3106,1.3105-2.8975,2.1719-4.5713,2.6016 c3.3135,0.8535,6.9766-0.0079,9.5713-2.6016C37.9766,35.2168,37.9766,28.8853,34.0703,24.979z"/>
+    <path fill="#EA5A47" d="M31,27c1.6436,0,3.0889-0.8037,4-2.0273V30c0,1.6563,1.3428,3,3,3s3-1.3437,3-3v2c0,1.6563,1.3428,3,3,3 s3-1.3437,3-3v-2.1836C47.3145,29.9277,47.6475,30,48,30c1.6572,0,3-1.3437,3-3v-2.9956c-1.4219-1.0684-3.1357-1.769-5.0029-1.9541 C45.9971,22.0332,46,22.0171,46,22c0-5.5229-4.4775-10-10-10s-10,4.4771-10,10C26,24.7612,28.2393,27,31,27z"/>
+    <path fill="#FFFFFF" d="M33,60v-6c0-2.7617-2.2393-5-5-5h-4h-3c-2.7607,0-5-2.2383-5-5v-3c0-1.1045,0.8955-2,2-2h36 c1.1045,0,2,0.8955,2,2v3c0,2.7617-2.2393,5-5,5h-3h-4c-2.7607,0-5,2.2383-5,5v6"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M45.9972,22.0491C51.0516,22.5496,55,26.8137,55,32c0,2.4632-0.8905,4.7183-2.367,6.4609"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36.9674,32.8136c-0.1814,2.2526-1.1093,4.2945-2.5361,5.878"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M19.5982,38.7242C17.9839,36.9483,17,34.589,17,32c0-5.1777,3.935-9.4363,8.9776-9.9484"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M31,27c1.6436,0,3.0889-0.8037,4-2.0273V30c0,1.6563,1.3428,3,3,3s3-1.3437,3-3v2c0,1.6563,1.3428,3,3,3s3-1.3437,3-3v-2.1836 C47.3145,29.9277,47.6475,30,48,30c1.6572,0,3-1.3437,3-3v-2.9956c-1.4219-1.0684-3.1357-1.769-5.0029-1.9541 C45.9971,22.0332,46,22.0171,46,22c0-5.5229-4.4775-10-10-10s-10,4.4771-10,10C26,24.7612,28.2393,27,31,27z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9467" d="M33,60v-6c0-2.7617-2.2393-5-5-5h-4h-3c-2.7607,0-5-2.2383-5-5v-3c0-1.1045,0.8955-2,2-2h36c1.1045,0,2,0.8955,2,2v3 c0,2.7617-2.2393,5-5,5h-3h-4c-2.7607,0-5,2.2383-5,5v6"/>
+    <line x1="29" x2="43" y1="60" y2="60" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9467"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..5c86210
--- /dev/null
+++ b/static/openmoji-svg-color/1F368.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" version="1.1" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <ellipse cx="35.9995" cy="21.0014" rx="9.9997" ry="10.0004" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -4.3062 31.6067)" fill="#FCEA2B"/>
+    <path fill="#F1B31C" d="M43.0703,13.9375c-2.5937-2.5937-6.2578-3.4551-9.5713-2.6016c1.6748,0.4317,3.2608,1.2911,4.5713,2.6016 c3.9063,3.9063,3.9063,10.2378,0.001,14.1421c-1.3106,1.311-2.8975,2.1724-4.5713,2.602c3.3135,0.8536,6.9766-0.0078,9.5713-2.602 C46.9766,24.1753,46.9766,17.8438,43.0703,13.9375z"/>
+    <path fill="#FCEA2B" d="M52.0703,23.9297c3.9063,3.9043,3.9063,10.2363,0.001,14.1426C48.166,41.9766,39.9053,44.9043,36,41 c-3.9053-3.9062-1.9766-13.166,1.9287-17.0713S48.166,20.0234,52.0703,23.9297z"/>
+    <path fill="#F1B31C" d="M52.0703,23.9375c-2.5937-2.5937-6.2578-3.4551-9.5713-2.6016c1.6748,0.4317,3.2608,1.2911,4.5713,2.6016 c3.9063,3.9063,3.9063,10.2383,0.001,14.1426c-1.3106,1.3105-2.8975,2.1719-4.5713,2.6015 c3.3135,0.8536,6.9766-0.0078,9.5713-2.6015C55.9766,34.1758,55.9766,27.8438,52.0703,23.9375z"/>
+    <ellipse cx="26.9992" cy="31.0022" rx="9.9999" ry="10.0006" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.014 28.1716)" fill="#FCEA2B"/>
+    <path fill="#F1B31C" d="M34.0703,23.9375c-2.5937-2.5937-6.2578-3.4551-9.5713-2.6016c1.6748,0.4317,3.2608,1.2911,4.5713,2.6016 c3.9063,3.9063,3.9063,10.2383,0.001,14.1426c-1.3106,1.3105-2.8975,2.1719-4.5713,2.6015 c3.3135,0.8536,6.9766-0.0078,9.5713-2.6015C37.9766,34.1758,37.9766,27.8438,34.0703,23.9375z"/>
+    <path fill="#FFFFFF" d="M33,60v-6c0-2.7617-2.2393-5-5-5h-4h-3c-2.7607,0-5-2.2383-5-5v-3c0-1.1045,0.8955-2,2-2h36 c1.1045,0,2,0.8955,2,2v3c0,2.7617-2.2393,5-5,5h-3h-4c-2.7607,0-5,2.2383-5,5v6"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M26,21c0-5.5228,4.4772-10,10-10s10,4.4772,10,10"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M36.0657,26.5031C37.7119,23.2387,41.0947,21,45,21c5.5225,0,10,4.4766,10,10c0,3.1787-1.4829,6.0107-3.7946,7.8423"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M20.6391,38.7165C18.4166,36.8823,17,34.1066,17,31c0-5.5228,4.4772-10,10-10s10,4.4772,10,10 c0,3.1784-1.4828,6.0105-3.7945,7.8421"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9467" d="M33,60v-6c0-2.7617-2.2393-5-5-5h-4h-3c-2.7607,0-5-2.2383-5-5v-3c0-1.1045,0.8955-2,2-2h36c1.1045,0,2,0.8955,2,2v3 c0,2.7617-2.2393,5-5,5h-3h-4c-2.7607,0-5,2.2383-5,5v6"/>
+    <line x1="29" x2="43" y1="60" y2="60" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9467"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..2044a21
--- /dev/null
+++ b/static/openmoji-svg-color/1F369.svg
@@ -0,0 +1,33 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fcea2b" stroke="none" d="M36,7C19.9834,7,7,19.9839,7,36c0,16.0156,12.9834,29,29,29s29-12.9844,29-29C65,19.9839,52.0166,7,36,7z M36,46c-5.5225,0-10-4.4775-10-10s4.4775-10,10-10c5.5225,0,10,4.4775,10,10S41.5225,46,36,46z"/>
+    <path fill="none" stroke="none" d="M36,46c5.5225,0,10-4.4775,10-10s-4.4775-10-10-10c-5.5225,0-10,4.4775-10,10 c0,2.7266,1.0947,5.1963,2.8652,7h0.4786h-0.4786C30.6797,44.8496,33.2041,46,36,46z"/>
+    <path fill="none" stroke="none" d="M46,36c0-5.5225-4.4775-10-10-10c-5.5225,0-10,4.4775-10,10c0,2.7266,1.0947,5.1963,2.8652,7 c1.8145,1.8496,4.3389,3,7.1348,3C41.5225,46,46,41.5225,46,36z"/>
+    <path fill="#f1b31c" stroke="none" d="M36,7C19.9834,7,7,19.9839,7,36c0,1.7061,0.1563,3.375,0.4385,5H10c2.7607,0,5,2.2383,5,5s2.2393,5,5,5 c2.7607,0,5-2.2383,5-5c0-1.6562,1.3428-3,3-3h0.8652C27.0947,41.1963,26,38.7266,26,36c0-5.5225,4.4775-10,10-10 c5.5225,0,10,4.4775,10,10s-4.4775,10-10,10c2.7607,0,5,2.2383,5,5s2.2393,5,5,5c2.7607,0,5-2.2383,5-5c0-1.6562,1.3428-3,3-3 c1.6572,0,3,1.3438,3,3c0,1.2217,0.8418,2.3213,1.8945,2.7891C62.7168,48.877,65,42.707,65,36C65,19.9839,52.0166,7,36,7z"/>
+    <circle cx="14" cy="31" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="20" cy="39" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="52" cy="40" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="58" cy="32" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="50" cy="25" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="42" cy="14" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="33" cy="20" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="21" cy="20" r="2" fill="#FFFFFF" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="14" cy="31" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="20" cy="39" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="52" cy="40" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="58" cy="32" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="50" cy="25" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="42" cy="14" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="33" cy="20" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="21" cy="20" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="36" cy="36" r="29" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <circle cx="36" cy="36" r="10" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M8,41h2c2.7607,0,5,2.2383,5,5s2.2393,5,5,5c2.7607,0,5-2.2383,5-5c0-1.6562,1.3428-3,3-3h0.667"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M58.8252,53.7607C57.752,53.3047,57,52.2393,57,51c0-1.6562-1.3428-3-3-3c-1.6572,0-3,1.3438-3,3c0,2.7617-2.2393,5-5,5 c-2.7607,0-5-2.2383-5-5s-2.2393-5-5-5"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..bd11f78
--- /dev/null
+++ b/static/openmoji-svg-color/1F36A.svg
@@ -0,0 +1,25 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#a57939" stroke="none" d="M64,36c0.001-1.9424-0.5752-3.7461-1.5576-5.2627c0.3262-1.7754,0.168-3.6606-0.5742-5.4526 c-0.7422-1.7935-1.9649-3.2403-3.4522-4.2652c-0.3779-1.7651-1.2451-3.4463-2.6181-4.8178 c-1.3711-1.3736-3.0547-2.2417-4.8204-2.6197c-1.0244-1.4858-2.4697-2.707-4.2617-3.4497 c-1.7939-0.7431-3.6806-0.9018-5.457-0.5757C39.7422,8.5757,37.9404,8,35.999,8c-1.9404,0-3.7441,0.5762-5.2597,1.5576 c-1.7764-0.3266-3.6622-0.1684-5.4551,0.5737c-1.793,0.7432-3.2393,1.9654-4.2637,3.4532 c-1.7656,0.3779-3.4473,1.2451-4.8203,2.6172c-1.3721,1.3725-2.2402,3.0551-2.6172,4.8217 c-1.4873,1.0245-2.709,2.4693-3.4531,4.2622c-0.7422,1.7935-0.9004,3.6807-0.5723,5.4576C8.5762,32.2598,8.001,34.0615,8,36.002 c0,1.9414,0.5771,3.7451,1.5586,5.2617c-0.3252,1.7754-0.168,3.6611,0.5732,5.4531c0.7442,1.793,1.9668,3.2402,3.4551,4.2646 c0.377,1.7647,1.2442,3.4463,2.6152,4.8194c1.3731,1.373,3.0567,2.2402,4.8223,2.6172c1.0254,1.4863,2.4697,2.709,4.2617,3.4511 c1.794,0.7432,3.6807,0.9004,5.4571,0.5743C32.2588,63.4238,34.0615,64,36.0029,64c1.9405,0,3.7442-0.5762,5.2598-1.5576 c1.7754,0.3262,3.6621,0.168,5.4551-0.5733c1.792-0.7441,3.2392-1.9658,4.2636-3.4541c1.7657-0.3779,3.4473-1.2451,4.8184-2.6162 c1.374-1.373,2.2422-3.0566,2.6191-4.8232c1.4864-1.0244,2.7071-2.4697,3.4502-4.2608c0.7432-1.7939,0.9014-3.6816,0.5752-5.458 C63.4248,39.7402,63.999,37.9395,64,36z"/>
+    <circle cx="19" cy="35" r="2" fill="#6A462F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="32" cy="41" r="2" fill="#6A462F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="30" cy="51" r="2" fill="#6A462F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="46" cy="51" r="2" fill="#6A462F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="52" cy="36" r="2" fill="#6A462F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="48" cy="21" r="2" fill="#6A462F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="32" cy="22" r="2" fill="#6A462F" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394" d="M64,35.875c0.001-1.9414-0.5752-3.7461-1.5576-5.2617c0.3262-1.7759,0.168-3.6612-0.5742-5.4531 c-0.7422-1.7935-1.9649-3.2403-3.4522-4.2652c-0.3779-1.7651-1.2451-3.4463-2.6181-4.8179 c-1.3711-1.3735-3.0547-2.2417-4.8204-2.6196c-1.0244-1.4858-2.4697-2.707-4.2617-3.4497 c-1.7939-0.7432-3.6806-0.9018-5.457-0.5757c-1.5166-0.9809-3.3184-1.5566-5.2598-1.5566c-1.9404,0-3.7441,0.5762-5.2597,1.5576 c-1.7764-0.3267-3.6622-0.1685-5.4551,0.5737c-1.793,0.7432-3.2393,1.9654-4.2637,3.4532 c-1.7656,0.3779-3.4473,1.2451-4.8203,2.6171c-1.3721,1.3726-2.2402,3.0552-2.6172,4.8218 c-1.4873,1.0244-2.709,2.4693-3.4531,4.2622c-0.7422,1.7935-0.9004,3.6807-0.5723,5.458C8.5762,32.1348,8.001,33.9375,8,35.877 c0,1.9414,0.5771,3.746,1.5586,5.2617c-0.3252,1.7754-0.168,3.6621,0.5732,5.4531c0.7442,1.793,1.9668,3.2402,3.4551,4.2656 c0.377,1.7647,1.2442,3.4463,2.6152,4.8184c1.3731,1.373,3.0567,2.2402,4.8223,2.6181c1.0254,1.4854,2.4697,2.7081,4.2617,3.4512 c1.794,0.7432,3.6807,0.9004,5.4571,0.5733c1.5156,0.9804,3.3183,1.5566,5.2597,1.5566c1.9405,0,3.7442-0.5762,5.2598-1.5566 c1.7754,0.3261,3.6621,0.1679,5.4551-0.5743c1.792-0.7431,3.2392-1.9648,4.2636-3.4531c1.7657-0.3779,3.4473-1.2451,4.8184-2.6172 c1.374-1.373,2.2422-3.0556,2.6191-4.8222c1.4864-1.0254,2.7071-2.4698,3.4502-4.2618c0.7432-1.7929,0.9014-3.6806,0.5752-5.457 C63.4248,39.6162,63.999,37.8145,64,35.875z"/>
+    <circle cx="19" cy="35" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="32" cy="41" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="30" cy="51" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="46" cy="51" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="52" cy="36" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="48" cy="21" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+    <circle cx="32" cy="22" r="2" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="1.9394"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..ecdf9c2
--- /dev/null
+++ b/static/openmoji-svg-color/1F36B.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <polyline fill="#a57939" points="53 32.7554 53 5.9063 19 5.9063 19 39.5156"/>
+    <polygon fill="#ea5a47" points="55 25 17 32 17 67 55 67 55 25"/>
+  </g>
+  <g id="line">
+    <rect x="38" y="9" width="11" height="9" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <rect x="23" y="9" width="11" height="9" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <polygon fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="55 25 17 32 17 67 55 67 55 25"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="53 20.9316 53 5 19 5 19 27.541"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="38 23.8472 38 22 47.5029 22"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="23 26.7637 23 22 34 22 34 24.625"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="47.5029 22 38 22 38 23.8472"/>
+    <polyline fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" points="34 24.625 34 22 23 22 23 26.7637"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..69ddeb7
--- /dev/null
+++ b/static/openmoji-svg-color/1F36C.svg
@@ -0,0 +1,14 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#b1cc33" d="m48.0752,26.6725l4.042-.992,10.1779-2.6005c.2381-.0479.8574-.3592,1.0291-.531l1.0194-.781c.6185-.6185.8552-1.5788.4537-2.3559-.6582-1.2738-2.2506-1.4632-3.1867-.5681-.7217.6902-1.8691.8182-2.6599.2083-.96-.7404-1.0406-2.1152-.242-2.9621.6939-.7358.8262-1.9071.1959-2.6981-.7543-.9467-2.1365-1.0078-2.9728-.1829-.7086.6989-1.8889.7849-2.6664.1635-.9348-.7472-1.0047-2.1049-.2095-2.9429.6838-.7206.8245-1.8653.2228-2.6558-.7515-.9873-2.1667-1.058-3.0133-.2115h0c-.9241.9241-1.5701,2.0892-1.8644,3.3625l-2.1126,9.139-.9029,4.1928"/>
+    <path fill="#b1cc33" d="m24.7109,44.707l-4.5625,1.4266-10.2854,2.5512c-.5627.1126-1.0794.3891-1.4852.7949l-.7113.7113c-.7134.7134-.883,1.8665-.2824,2.6773.7375.9955,2.143,1.0838,2.9989.2647.7208-.6897,1.8689-.8156,2.6596-.2073.9598.7384,1.0404,2.1143.2416,2.9618-.6936.736-.8252,1.9075-.1946,2.6981.7441.933,2.098,1.0049,2.9371.2155.7381-.6944,1.91-.8296,2.7014-.1966.9344.7474,1.0042,2.104.2094,2.9423-.6836.7211-.8244,1.8658-.2223,2.6562.7518.9869,2.1662,1.0572,3.0124.2111l.4725-.4725c.614-.614,1.0325-1.3959,1.2029-2.2473l2.4681-9.8381,1.2364-3.489"/>
+    <circle cx="35.9927" cy="36.0001" r="14.9994" fill="#b1cc33"/>
+    <path fill="#5c9e31" d="m51.001,35.9902c.001-5.5019-2.9727-10.3007-7.3916-12.9101,1.3183,2.2324,2.0888,4.8262,2.0888,7.6074.001,8.2852-6.7148,15.002-15,15-2.7793.002-5.375-.7695-7.6074-2.0879,2.6104,4.4199,7.4082,7.3906,12.9112,7.3926,8.2841,0,15.0009-6.7168,14.999-15.002Z"/>
+  </g>
+  <g id="line">
+    <circle cx="35.9992" cy="35.9988" r="15" transform="translate(-14.9111 35.9991) rotate(-45)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m51.9287,25.3564l9.5474-1.9095c.9936-.1987,1.9062-.6871,2.6227-1.4036l.2346-.2346c.7045-.7045.8827-1.839.3022-2.6487-.7318-1.0208-2.1546-1.1183-3.0182-.2923-.7216.6901-1.869.818-2.6597.2084-.9601-.7403-1.0408-2.1154-.2419-2.9625.6938-.7357.8258-1.907.1957-2.6979-.7542-.9466-2.1363-1.0078-2.9728-.1828-.7087.699-1.889.785-2.6665.1634-.9348-.7473-1.0046-2.1049-.2095-2.9428.6838-.7206.8247-1.8654.223-2.6559-.7515-.9873-2.1668-1.0581-3.0133-.2116l-.4865.4865c-.6048.6048-1.0171,1.3751-1.1849,2.2138l-1.9575,9.7845"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m20.0713,46.6426l-10.5459,2.1097c-.3426.0685-.6572.2369-.9043.4838l-.9543.9537c-.7147.7142-.8832,1.8695-.28,2.68.738.9917,2.1388,1.0791,2.9939.2635.7239-.6905,1.8715-.8206,2.6628-.2086.9581.7409,1.0388,2.1113.2422,2.9582-.6944.7382-.8297,1.9101-.1967,2.7016.7465.9334,2.1013,1.0038,2.9399.2135.7362-.6939,1.9074-.8273,2.6978-.1958.9352.7472,1.0048,2.1072.2088,2.9456-.6835.72-.8229,1.8647-.2216,2.6547.7515.9873,2.1675,1.0578,3.0128.2115l1.415-1.4141,2.2158-11.0723"/>
+    <circle cx="36.0006" cy="35.958" r="14.9997" transform="translate(-14.8818 35.9882) rotate(-45)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..581f3a9
--- /dev/null
+++ b/static/openmoji-svg-color/1F36D.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <circle cx="8.627" cy="51.48" r="18" transform="rotate(-45)" fill="#ea5a47" stroke-width="1.2"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <circle cx="8.675" cy="51.41" r="18.22" transform="rotate(-45)" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="12" x2="25.79" y1="60.7" y2="46.91" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.864" d="m42.69 30.99c0.1901-0.7095 1.05-0.09377 1.179 0.316 0.3497 1.11-0.8196 1.996-1.811 2.042-1.774 0.0823-2.992-1.659-2.906-3.306 0.1275-2.417 2.507-4.008 4.801-3.769 3.058 0.3191 5.032 3.357 4.632 6.297-0.5031 3.699-4.208 6.059-7.792 5.495-4.341-0.6831-7.089-5.059-6.359-9.287 0.8609-4.982 5.911-8.12 10.78-7.222 5.624 1.037 9.152 6.763 8.085 12.28-1.213 6.266-7.615 10.18-13.77 8.948-6.907-1.387-11.22-8.467-9.811-15.27 1.562-7.549 9.32-12.25 16.76-10.67"/>
+  </g>
+  <g id="color-foreground">
+    <path fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.864" d="m42.69 30.99c0.1901-0.7095 1.05-0.09377 1.179 0.316 0.3497 1.11-0.8196 1.996-1.811 2.042-1.774 0.0823-2.992-1.659-2.906-3.306 0.1275-2.417 2.507-4.008 4.801-3.769 3.058 0.3191 5.032 3.357 4.632 6.297-0.5031 3.699-4.208 6.059-7.792 5.495-4.341-0.6831-7.089-5.059-6.359-9.287 0.8609-4.982 5.911-8.12 10.78-7.222 5.624 1.037 9.152 6.763 8.085 12.28-1.213 6.266-7.615 10.18-13.77 8.948-6.907-1.387-11.22-8.467-9.811-15.27 1.562-7.549 9.32-12.25 16.76-10.67"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..38ee64f
--- /dev/null
+++ b/static/openmoji-svg-color/1F36E.svg
@@ -0,0 +1,15 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fff" d="M54.2432,41.1414l.6255,3.79a1.0217,1.0217,0,0,1,.0136.1631c0,3.9355-9.4287,5.9941-18.7422,5.9941S17.397,49.03,17.397,45.094a1.0217,1.0217,0,0,1,.0136-.1631l.6416-3.8871C12.8572,42.7519,10,45.1494,10,47.8328c0,6.0048,13.3955,9.2451,26,9.2451s26-3.24,26-9.2451C62,45.1652,59.3164,42.86,54.2432,41.1414Z"/>
+    <path fill="#a57939" d="M54.5487,42.2325l-36.5442-.1381c-2.362,1.1686-3.5952,2.57-3.5952,4.136,0,4.721,11.1966,7.2684,21.7305,7.2684S57.87,50.9514,57.87,46.23C57.87,44.7265,56.7328,43.373,54.5487,42.2325Z"/>
+    <path fill="#fcea2b" d="M54.8687,44.9312,52.2256,28.919l.0015-.01a.3176.3176,0,0,0-.0171-.0851l-.5327-3.2269c-.0042-.0251-.0188-.0451-.0247-.07-.37-3.33-8.2014-4.8559-15.5124-4.8559S20.9969,22.1975,20.627,25.5275c-.0061.0244-.0208.0446-.0249.07l-.5327,3.2269a.3176.3176,0,0,0-.0171.0851l.0014.01-2.643,16.0122a1.01,1.01,0,0,0-.0137.1631c0,3.9355,9.4287,5.9941,18.7432,5.9941S54.8824,49.03,54.8824,45.0943A1.01,1.01,0,0,0,54.8687,44.9312Z"/>
+    <path fill="#a57939" d="M52.1956,28.753l0-.0069-.5185-3.1406c-.0027-.0162-.0132-.0284-.0166-.0443-.3191-3.3542-8.1844-4.8893-15.52-4.8893s-15.2027,1.5352-15.5215,4.8895c-.0034.0158-.0139.028-.0166.0441l-.5186,3.1406,0,.0069a.9521.9521,0,0,0-.0315.1562c0,3.5137,8.34,5.1133,16.0879,5.1133s16.0869-1.6,16.0869-5.1133A.9627.9627,0,0,0,52.1956,28.753Z"/>
+    <path fill="#6a462f" d="M52.1956,28.753l0-.0069-.5185-3.1406a.9272.9272,0,0,0-.0418-.1115.9376.9376,0,0,0-.4807-.5969.9645.9645,0,0,0-.1362-.0625.9513.9513,0,0,0-.2222-.0448.938.938,0,0,0-.1055-.0212c-.0283,0-.0517.0138-.0795.016s-.0547-.0074-.0835-.0024a.9328.9328,0,0,0-.1079.041.971.971,0,0,0-.19.0721.9422.9422,0,0,0-.1528.103.9608.9608,0,0,0-.1406.1328.9707.9707,0,0,0-.1033.1533.9526.9526,0,0,0-.08.1747.9642.9642,0,0,0-.0388.1923.9076.9076,0,0,0-.0237.1172c0,.9258-4.61,3.0966-13.5507,3.0966s-13.5518-2.1708-13.5518-3.0966a.8892.8892,0,0,0-.0237-.1173.841.841,0,0,0-.1186-.367.9285.9285,0,0,0-.5867-.4611.9469.9469,0,0,0-.1079-.041c-.0291-.0051-.0554.0049-.0842.0022s-.0511-.0158-.0789-.0158a.9261.9261,0,0,0-.1023.0206.94.94,0,0,0-.2278.046,1.32,1.32,0,0,0-.6562.77l-.5186,3.1406,0,.0069a.9521.9521,0,0,0-.0315.1562c0,3.5137,8.34,5.1133,16.0879,5.1133s16.0869-1.6,16.0869-5.1133A.9627.9627,0,0,0,52.1956,28.753Z"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M41.8071,29.5342c5.2209-.622,8.8839-2.0776,8.8839-3.774,0-2.2624-6.5149-4.0964-14.5513-4.0964S22.0075,23.0787,21.5884,25.76L18.3975,45.094"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M51.2093,28.9006c0,2.2624-6.7469,4.0964-15.07,4.0964s-15.07-1.834-15.07-4.0964"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.8819,45.094,50.691,25.76"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M53.3545,41.8986C58.0682,43.3981,61,45.5027,61,47.8332c0,4.5534-11.1929,8.2446-25,8.2446s-25-3.6912-25-8.2446c0-2.3786,3.0543-4.522,7.94-6.0268"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..1e6798c
--- /dev/null
+++ b/static/openmoji-svg-color/1F36F.svg
@@ -0,0 +1,21 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <polyline fill="#f4aa41" stroke="none" points="55,17 55,11 17,11 17,17"/>
+    <path fill="#f4aa41" stroke="none" d="M45,60c8.2842,0,15-6.7158,15-15V22c0-2.7612-2.2383-5-5-5H17c-2.7617,0-5,2.2388-5,5v23 c0,8.2842,6.7158,15,15,15H45z"/>
+    <path fill="#fcea2b" stroke="none" d="M35,17v14c0,2.7617,2.2393,5,5,5c2.7617,0,5-2.2383,5-5v11c0,1.6563,1.3428,3,3,3c1.6572,0,3-1.3437,3-3V23 c0,1.6567,1.3428,3,3,3c1.6563,0,3-1.3433,3-3v-5.5781C56.3867,17.1538,55.7119,17,55,17H35h-2v-6h22v6"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="55,17 55,11 17,11 17,17"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51,42c0,1.6563-1.3428,3-3,3c-1.6572,0-3-1.3437-3-3"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51,23c0,1.6567,1.3428,3,3,3c1.6563,0,3-1.3433,3-3v-5"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M45,31c0,2.7617-2.2383,5-5,5c-2.7607,0-5-2.2383-5-5"/>
+    <line x1="45" x2="45" y1="42" y2="31" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="51" x2="51" y1="42" y2="23" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="35" x2="35" y1="31" y2="17" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="33" x2="33" y1="17" y2="11" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M45,60c8.2842,0,15-6.7158,15-15V22c0-2.7612-2.2383-5-5-5H17c-2.7617,0-5,2.2388-5,5v23c0,8.2842,6.7158,15,15,15H45z"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..8440c43
--- /dev/null
+++ b/static/openmoji-svg-color/1F370.svg
@@ -0,0 +1,17 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#fff" d="m57.5367,18.0513l-16.5406,2.5102-2.0738.4311-31.9223,5.0074c-1.1045,0-2,.8965-2,2v12h1c2.7617,0,5-2.2383,5-4.999s2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999h1v-12c0-4.7112-3.2599-8.6632-7.647-9.7215-.4344-.1048-1.3618-.1812-1.8163-.2272"/>
+    <circle cx="49.5" cy="18.0005" r="5" fill="#ea5a47"/>
+    <path fill="#fcea2b" d="m67,39v20c0,1.1055-.8955,2-2,2H7c-1.1045,0-2-.8945-2-2v-20"/>
+    <path fill="#fcea2b" d="m67,40h-1c-2.7607,0-5-2.2383-5-5s-2.2393-5-5-5-5,2.2383-5,5-2.2393,5-5,5-5-2.2383-5-5-2.2393-5-5-5-5,2.2383-5,5-2.2393,5-5,5-5-2.2383-5-5-2.2393-5-5-5-5,2.2383-5,5-2.2393,5-5,5h-1"/>
+  </g>
+  <g id="line">
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m67,28v31c0,1.1055-.8955,2-2,2H7c-1.1045,0-2-.8945-2-2v-31c0-1.1035.8955-2,2-2l33.9961-5.4385"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m58.0186,18.0513c5.0439.5102,8.9814,4.771,8.9814,9.9487"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m5,40h1c2.7617,0,5-2.2383,5-4.999s2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999,5-2.2383,5-4.999,2.2383-5.001,5-5.001,5,2.2393,5,5.001,2.2383,4.999,5,4.999h1"/>
+    <line x1="5" x2="67" y1="48" y2="48" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <line x1="5" x2="67" y1="52" y2="52" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <circle cx="49.5" cy="18.0005" r="5" fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
+    <path fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m49.5,16c0-5.5229,4.4766-10,10-10"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..6aafa34
--- /dev/null
+++ b/static/openmoji-svg-color/1F371.svg
@@ -0,0 +1,34 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FFFFFF" stroke="none" d="M5,19c0-1.1045,0.8955-2,2-2h58c1.1045,0,2,0.8955,2,2v34c0,1.1045-0.8955,2-2,2H7c-1.1045,0-2-0.8955-2-2 V19z"/>
+    <path fill="#d0cfce" stroke="none" d="M44.0713,21c1.9521,1.9521,1.9521,5.1182,0,7.0713c-1.9522,1.9531-5.1182,1.9531-7.0713,0L44.0713,21z"/>
+    <path fill="#d0cfce" stroke="none" d="M56.6074,21c1.9522,1.9521,1.9522,5.1182,0,7.0713c-1.9531,1.9531-5.1191,1.9531-7.0722,0L56.6074,21z"/>
+    <path fill="#ea5a47" stroke="none" d="M39,40c0-1.1045-0.8955-2-2-2h-4c-1.1045,0-2,0.8955-2,2v9c0,1.1045,0.8955,2,2,2h4c1.1045,0,2-0.8955,2-2 V40z"/>
+    <path fill="#ea5a47" stroke="none" d="M51,40c0-1.1045-0.8955-2-2-2h-4c-1.1045,0-2,0.8955-2,2v9c0,1.1045,0.8955,2,2,2h4c1.1045,0,2-0.8955,2-2 V40z"/>
+    <path fill="#ea5a47" stroke="none" d="M63,40c0-1.1045-0.8955-2-2-2h-4c-1.1045,0-2,0.8955-2,2v9c0,1.1045,0.8955,2,2,2h4c1.1045,0,2-0.8955,2-2 V40z"/>
+    <polyline fill="#61b2e4" stroke="none" points="12.998,42.2129 11.998,51 15.998,47 15.998,47 19.998,51 18.6045,42.2129"/>
+    <path fill="#92d3f5" stroke="none" d="M17.6045,43.2129c5.8574-5.8574,5.8574-15.355,0-21.2129H13.998c-5.8574,5.8579-5.8574,15.3555,0,21.2129 H17.6045z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M5,19c0-1.1045,0.8955-2,2-2h58c1.1045,0,2,0.8955,2,2v34c0,1.1045-0.8955,2-2,2H7c-1.1045,0-2-0.8955-2-2V19z"/>
+    <line x1="27" x2="27" y1="17" y2="55" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <line x1="27" x2="67" y1="34" y2="34" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M17.6064,43.2129c5.8575-5.8574,5.8575-15.355,0-21.2129H14c-5.8574,5.8579-5.8574,15.3555,0,21.2129H17.6064z"/>
+    <line x1="11" x2="21" y1="28" y2="28" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <polyline fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" points="13,42.2129 12,51 16,47 16,47 20,51 18.6064,42.2129"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M39,40c0-1.1045-0.8955-2-2-2h-4c-1.1045,0-2,0.8955-2,2v9c0,1.1045,0.8955,2,2,2h4c1.1045,0,2-0.8955,2-2V40z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51,40c0-1.1045-0.8955-2-2-2h-4c-1.1045,0-2,0.8955-2,2v9c0,1.1045,0.8955,2,2,2h4c1.1045,0,2-0.8955,2-2V40z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M63,40c0-1.1045-0.8955-2-2-2h-4c-1.1045,0-2,0.8955-2,2v9c0,1.1045,0.8955,2,2,2h4c1.1045,0,2-0.8955,2-2V40z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M44,21c1.9521,1.9521,1.9521,5.1182,0,7.0713c-1.9521,1.9531-5.1182,1.9531-7.0713,0L44,21z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M56.5361,21c1.9522,1.9521,1.9522,5.1182,0,7.0713c-1.9531,1.9531-5.1191,1.9531-7.0722,0L56.5361,21z"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M39,44.334c0,1.1035-0.8955,2-2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M39,40c0,1.1045-0.8955,2-2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51,44.334c0,1.1035-0.8955,2-2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M51,40c0,1.1045-0.8955,2-2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M63,44.334c0,1.1035-0.8955,2-2,2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M63,40c0,1.1045-0.8955,2-2,2"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..4fb72f7
--- /dev/null
+++ b/static/openmoji-svg-color/1F372.svg
@@ -0,0 +1,16 @@
+<svg id="emoji" viewBox="0 0 72 72" xmlns="http://www.w3.org/2000/svg">
+  <g id="color">
+    <path fill="#FFFFFF" stroke="none" d="M7,36c0,16.0166,12.9834,29,29,29s29-12.9834,29-29H7z"/>
+    <path fill="#d0cfce" stroke="none" d="M49,36c0,16.0156-4,29-13,29c16.0166,0,29-12.9844,29-29H49z"/>
+  </g>
+  <g id="hair"/>
+  <g id="skin"/>
+  <g id="skin-shadow"/>
+  <g id="line">
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M7,36c0,16.0166,12.9834,29,29,29s29-12.9834,29-29H7z"/>
+    <line x1="7" x2="14" y1="25.1406" y2="32.1406" fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M29.043,7.8457c0.1015,1.125,0.5605,2.2236,1.4209,3.084c1.9521,1.9512,1.9521,5.1172,0,7.0703 c-1.9522,1.9531-1.9522,5.1191,0,7.0703c1.9521,1.9512,1.9521,5.1172,0,7.0703"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M34.5703,7.0361C34.4697,8.4336,34.9316,9.8623,36,10.9297c1.9521,1.9512,1.9521,5.1172,0,7.0703 c-1.9521,1.9531-1.9521,5.1191,0,7.0703c1.9521,1.9512,1.9521,5.1172,0,7.0703"/>
+    <path fill="none" stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2" d="M40.0107,7.2832c-0.0302,1.3164,0.4483,2.6426,1.4532,3.6465c1.9521,1.9512,1.9521,5.1172,0,7.0703 c-1.9522,1.9531-1.9522,5.1191,0,7.0703c1.9521,1.9512,1.9521,5.1172,0,7.0703"/>
+  </g>
+</svg>
new file mode 100644
index 0000000..36ba74f
--- /dev/null
+++ b/static/openmoji-svg-color/1F373.svg
@@