diff --git a/CHANGELOG.md b/CHANGELOG.md index 79b669782d..9e772de0ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## Unreleased -### Removed - -- MastoFE - ### Changed - Allow users to remove their emails if instance does not need email to register diff --git a/config/config.exs b/config/config.exs index 2bde5b8268..5cd085fe5f 100644 --- a/config/config.exs +++ b/config/config.exs @@ -326,6 +326,9 @@ config :pleroma, :frontend_configurations, subjectLineBehavior: "email", theme: "pleroma-dark", webPushNotifications: false + }, + masto_fe: %{ + showInstanceSpecificPanel: true } config :pleroma, :assets, diff --git a/config/description.exs b/config/description.exs index ea3f34abe6..48e0c59a85 100644 --- a/config/description.exs +++ b/config/description.exs @@ -1175,7 +1175,7 @@ config :pleroma, :config_description, [ type: :group, description: "This form can be used to configure a keyword list that keeps the configuration data for any " <> - "kind of frontend. By default, settings for pleroma_fe are configured. If you want to " <> + "kind of frontend. By default, settings for pleroma_fe and masto_fe are configured. If you want to " <> "add your own configuration your settings all fields must be complete.", children: [ %{ @@ -1375,6 +1375,25 @@ config :pleroma, :config_description, [ suggestions: ["pleroma-dark"] } ] + }, + %{ + key: :masto_fe, + label: "Masto FE", + type: :map, + description: "Settings for Masto FE", + suggestions: [ + %{ + showInstanceSpecificPanel: true + } + ], + children: [ + %{ + key: :showInstanceSpecificPanel, + label: "Show instance specific panel", + type: :boolean, + description: "Whenether to show the instance's specific panel" + } + ] } ] }, diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 40e81cffbe..7700bf65a1 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -248,7 +248,7 @@ Notes: ### :frontend_configurations -This can be used to configure a keyword list that keeps the configuration data for any kind of frontend. By default, settings for `pleroma_fe` are configured. You can find the documentation for `pleroma_fe` configuration into [Pleroma-FE configuration and customization for instance administrators](/frontend/CONFIGURATION/#options). +This can be used to configure a keyword list that keeps the configuration data for any kind of frontend. By default, settings for `pleroma_fe` and `masto_fe` are configured. You can find the documentation for `pleroma_fe` configuration into [Pleroma-FE configuration and customization for instance administrators](/frontend/CONFIGURATION/#options). Frontends can access these settings at `/api/v1/pleroma/frontend_configurations` @@ -259,7 +259,10 @@ config :pleroma, :frontend_configurations, pleroma_fe: %{ theme: "pleroma-dark", # ... see /priv/static/static/config.json for the available keys. -} +}, + masto_fe: %{ + showInstanceSpecificPanel: true + } ``` These settings **need to be complete**, they will override the defaults. diff --git a/docs/index.md b/docs/index.md index 3799a0099d..80c5d2631f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -16,4 +16,11 @@ Installation instructions can be found in the installation section of these docs Great! Now you can explore the fediverse! Open the login page for your Pleroma instance (e.g. ) and login with your username and password. (If you don't have an account yet, click on Register) ### Pleroma-FE -The default front-end used by Pleroma is Pleroma-FE. You can find more information on what it is and how to use it in the [Introduction to Pleroma-FE](../frontend). \ No newline at end of file +The default front-end used by Pleroma is Pleroma-FE. You can find more information on what it is and how to use it in the [Introduction to Pleroma-FE](../frontend). + +### Mastodon interface +If the Pleroma interface isn't your thing, or you're just trying something new but you want to keep using the familiar Mastodon interface, we got that too! +Just add a "/web" after your instance url (e.g. ) and you'll end on the Mastodon web interface, but with a Pleroma backend! MAGIC! +The Mastodon interface is from the Glitch-soc fork. For more information on the Mastodon interface you can check the [Mastodon](https://docs.joinmastodon.org/) and [Glitch-soc](https://glitch-soc.github.io/docs/) documentation. + +Remember, what you see is only the frontend part of Mastodon, the backend is still Pleroma. diff --git a/installation/download-mastofe-build.sh b/installation/download-mastofe-build.sh new file mode 100755 index 0000000000..ee353c48c1 --- /dev/null +++ b/installation/download-mastofe-build.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# Pleroma: A lightweight social networking server +# Copyright © 2017-2021 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only +project_id="74" +project_branch="rebase/glitch-soc" +static_dir="instance/static" +# For bundling: +# project_branch="pleroma" +# static_dir="priv/static" + +if [ ! -d "${static_dir}" ] +then + echo "Error: ${static_dir} directory is missing, are you sure you are running this script at the root of pleroma’s repository?" + exit 1 +fi + +last_modified="$(curl --fail -s -I 'https://git.pleroma.social/api/v4/projects/'${project_id}'/jobs/artifacts/'${project_branch}'/download?job=build' | grep '^Last-Modified:' | cut -d: -f2-)" + +echo "branch:${project_branch}" +echo "Last-Modified:${last_modified}" + +artifact="mastofe.zip" + +if [ "${last_modified}x" = "x" ] +then + echo "ERROR: Couldn't get the modification date of the latest build archive, maybe it expired, exiting..." + exit 1 +fi + +if [ -e mastofe.timestamp ] && [ "$(cat mastofe.timestamp)" = "${last_modified}" ] +then + echo "MastoFE is up-to-date, exiting..." + exit 0 +fi + +curl --fail -c - "https://git.pleroma.social/api/v4/projects/${project_id}/jobs/artifacts/${project_branch}/download?job=build" -o "${artifact}" || exit + +# TODO: Update the emoji as well +rm -fr "${static_dir}/sw.js" "${static_dir}/packs" || exit +unzip -q "${artifact}" || exit + +cp public/assets/sw.js "${static_dir}/sw.js" || exit +cp -r public/packs "${static_dir}/packs" || exit + +echo "${last_modified}" > mastofe.timestamp +rm -fr public +rm -i "${artifact}" diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 390de1e2d9..6a22624427 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -124,6 +124,7 @@ defmodule Pleroma.User do field(:is_moderator, :boolean, default: false) field(:is_admin, :boolean, default: false) field(:show_role, :boolean, default: true) + field(:mastofe_settings, :map, default: nil) field(:uri, ObjectValidators.Uri, default: nil) field(:hide_followers_count, :boolean, default: false) field(:hide_follows_count, :boolean, default: false) @@ -1730,6 +1731,7 @@ defmodule Pleroma.User do ap_enabled: false, is_moderator: false, is_admin: false, + mastofe_settings: nil, mascot: nil, emoji: %{}, pleroma_settings_store: %{}, @@ -2347,6 +2349,13 @@ defmodule Pleroma.User do |> update_and_set_cache() end + def mastodon_settings_update(user, settings) do + user + |> cast(%{mastofe_settings: settings}, [:mastofe_settings]) + |> validate_required([:mastofe_settings]) + |> update_and_set_cache() + end + @spec confirmation_changeset(User.t(), keyword()) :: Changeset.t() def confirmation_changeset(user, set_confirmation: confirmed?) do params = diff --git a/lib/pleroma/web/masto_fe_controller.ex b/lib/pleroma/web/masto_fe_controller.ex new file mode 100644 index 0000000000..d2460f51d9 --- /dev/null +++ b/lib/pleroma/web/masto_fe_controller.ex @@ -0,0 +1,61 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2021 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.Web.MastoFEController do + use Pleroma.Web, :controller + + alias Pleroma.User + alias Pleroma.Web.MastodonAPI.AuthController + alias Pleroma.Web.OAuth.Token + alias Pleroma.Web.Plugs.OAuthScopesPlug + + plug(OAuthScopesPlug, %{scopes: ["write:accounts"]} when action == :put_settings) + + # Note: :index action handles attempt of unauthenticated access to private instance with redirect + plug(:skip_public_check when action == :index) + + plug( + OAuthScopesPlug, + %{scopes: ["read"], fallback: :proceed_unauthenticated} + when action == :index + ) + + plug(:skip_auth when action == :manifest) + + @doc "GET /web/*path" + def index(conn, _params) do + with %{assigns: %{user: %User{} = user, token: %Token{app_id: token_app_id} = token}} <- conn, + {:ok, %{id: ^token_app_id}} <- AuthController.local_mastofe_app() do + conn + |> put_layout(false) + |> render("index.html", + token: token.token, + user: user, + custom_emojis: Pleroma.Emoji.get_all() + ) + else + _ -> + conn + |> put_session(:return_to, conn.request_path) + |> redirect(to: "/web/login") + end + end + + @doc "GET /web/manifest.json" + def manifest(conn, _params) do + render(conn, "manifest.json") + end + + @doc "PUT /api/web/settings: Backend-obscure settings blob for MastoFE, don't parse/reuse elsewhere" + def put_settings(%{assigns: %{user: user}} = conn, %{"data" => settings} = _params) do + with {:ok, _} <- User.mastodon_settings_update(user, settings) do + json(conn, %{}) + else + e -> + conn + |> put_status(:internal_server_error) + |> json(%{error: inspect(e)}) + end + end +end diff --git a/lib/pleroma/web/mastodon_api/controllers/app_controller.ex b/lib/pleroma/web/mastodon_api/controllers/app_controller.ex index 8d18140add..499ccf056d 100644 --- a/lib/pleroma/web/mastodon_api/controllers/app_controller.ex +++ b/lib/pleroma/web/mastodon_api/controllers/app_controller.ex @@ -23,6 +23,8 @@ defmodule Pleroma.Web.MastodonAPI.AppController do plug(Pleroma.Web.ApiSpec.CastAndValidate) + @local_mastodon_name "Mastodon-Local" + defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.AppOperation @doc "POST /api/v1/apps" @@ -37,6 +39,7 @@ defmodule Pleroma.Web.MastodonAPI.AppController do |> Maps.put_if_present(:user_id, user_id) with cs <- App.register_changeset(%App{}, app_attrs), + false <- cs.changes[:client_name] == @local_mastodon_name, {:ok, app} <- Repo.insert(cs) do render(conn, "show.json", app: app) end diff --git a/lib/pleroma/web/mastodon_api/controllers/auth_controller.ex b/lib/pleroma/web/mastodon_api/controllers/auth_controller.ex index 08943f6f17..4920d65dae 100644 --- a/lib/pleroma/web/mastodon_api/controllers/auth_controller.ex +++ b/lib/pleroma/web/mastodon_api/controllers/auth_controller.ex @@ -7,12 +7,77 @@ defmodule Pleroma.Web.MastodonAPI.AuthController do import Pleroma.Web.ControllerHelper, only: [json_response: 3] + alias Pleroma.Helpers.AuthHelper + alias Pleroma.Helpers.UriHelper + alias Pleroma.User + alias Pleroma.Web.OAuth.App + alias Pleroma.Web.OAuth.Authorization + alias Pleroma.Web.OAuth.Token + alias Pleroma.Web.OAuth.Token.Strategy.Revoke, as: RevokeToken alias Pleroma.Web.TwitterAPI.TwitterAPI action_fallback(Pleroma.Web.MastodonAPI.FallbackController) plug(Pleroma.Web.Plugs.RateLimiter, [name: :password_reset] when action == :password_reset) + @local_mastodon_name "Mastodon-Local" + + @doc "GET /web/login" + # Local Mastodon FE login callback action + def login(conn, %{"code" => auth_token} = params) do + with {:ok, app} <- local_mastofe_app(), + {:ok, auth} <- Authorization.get_by_token(app, auth_token), + {:ok, oauth_token} <- Token.exchange_token(app, auth) do + redirect_to = + conn + |> local_mastodon_post_login_path() + |> UriHelper.modify_uri_params(%{"access_token" => oauth_token.token}) + + conn + |> AuthHelper.put_session_token(oauth_token.token) + |> redirect(to: redirect_to) + else + _ -> redirect_to_oauth_form(conn, params) + end + end + + def login(conn, params) do + with %{assigns: %{user: %User{}, token: %Token{app_id: app_id}}} <- conn, + {:ok, %{id: ^app_id}} <- local_mastofe_app() do + redirect(conn, to: local_mastodon_post_login_path(conn)) + else + _ -> redirect_to_oauth_form(conn, params) + end + end + + defp redirect_to_oauth_form(conn, _params) do + with {:ok, app} <- local_mastofe_app() do + path = + Routes.o_auth_path(conn, :authorize, + response_type: "code", + client_id: app.client_id, + redirect_uri: ".", + scope: Enum.join(app.scopes, " ") + ) + + redirect(conn, to: path) + end + end + + @doc "DELETE /auth/sign_out" + def logout(conn, _) do + conn = + with %{assigns: %{token: %Token{} = oauth_token}} <- conn, + session_token = AuthHelper.get_session_token(conn), + {:ok, %Token{token: ^session_token}} <- RevokeToken.revoke(oauth_token) do + AuthHelper.delete_session_token(conn) + else + _ -> conn + end + + redirect(conn, to: "/") + end + @doc "POST /auth/password" def password_reset(conn, params) do nickname_or_email = params["email"] || params["nickname"] @@ -21,4 +86,23 @@ defmodule Pleroma.Web.MastodonAPI.AuthController do json_response(conn, :no_content, "") end + + defp local_mastodon_post_login_path(conn) do + case get_session(conn, :return_to) do + nil -> + Routes.masto_fe_path(conn, :index, ["getting-started"]) + + return_to -> + delete_session(conn, :return_to) + return_to + end + end + + @spec local_mastofe_app() :: {:ok, App.t()} | {:error, Ecto.Changeset.t()} + def local_mastofe_app do + App.get_or_make( + %{client_name: @local_mastodon_name, redirect_uris: "."}, + ["read", "write", "follow", "push", "admin"] + ) + end end diff --git a/lib/pleroma/web/o_auth/o_auth_controller.ex b/lib/pleroma/web/o_auth/o_auth_controller.ex index 0d7d17b8a1..247d8399ce 100644 --- a/lib/pleroma/web/o_auth/o_auth_controller.ex +++ b/lib/pleroma/web/o_auth/o_auth_controller.ex @@ -597,6 +597,9 @@ defmodule Pleroma.Web.OAuth.OAuthController do end end + # Special case: Local MastodonFE + defp redirect_uri(%Plug.Conn{} = conn, "."), do: Routes.auth_url(conn, :login) + defp redirect_uri(%Plug.Conn{}, redirect_uri), do: redirect_uri defp get_session_registration_id(%Plug.Conn{} = conn), do: get_session(conn, :registration_id) diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index b9b52b1e54..7977fa6194 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -109,6 +109,12 @@ defmodule Pleroma.Web.Router do plug(Pleroma.Web.Plugs.UserIsAdminPlug) end + pipeline :mastodon_html do + plug(:browser) + plug(:authenticate) + plug(:after_auth) + end + pipeline :pleroma_html do plug(:browser) plug(:authenticate) @@ -572,6 +578,13 @@ defmodule Pleroma.Web.Router do get("/timelines/list/:list_id", TimelineController, :list) end + scope "/api/web", Pleroma.Web do + pipe_through(:authenticated_api) + + # Backend-obscure settings blob for MastoFE, don't parse/reuse elsewhere + put("/settings", MastoFEController, :put_settings) + end + scope "/api/v1", Pleroma.Web.MastodonAPI do pipe_through(:app_api) @@ -782,12 +795,20 @@ defmodule Pleroma.Web.Router do pipe_through(:api) get("/manifest.json", ManifestController, :show) + get("/web/manifest.json", MastoFEController, :manifest) end scope "/", Pleroma.Web do - pipe_through(:pleroma_html) + pipe_through(:mastodon_html) - post("/auth/password", TwitterAPI.PasswordController, :request) + get("/web/login", MastodonAPI.AuthController, :login) + delete("/auth/sign_out", MastodonAPI.AuthController, :logout) + + post("/auth/password", MastodonAPI.AuthController, :password_reset) + + get("/web/*path", MastoFEController, :index) + + get("/embed/:id", EmbedController, :show) end scope "/proxy/", Pleroma.Web do diff --git a/lib/pleroma/web/templates/masto_fe/index.html.eex b/lib/pleroma/web/templates/masto_fe/index.html.eex new file mode 100644 index 0000000000..6f2b989570 --- /dev/null +++ b/lib/pleroma/web/templates/masto_fe/index.html.eex @@ -0,0 +1,35 @@ + + + + + + +<%= Config.get([:instance, :name]) %> + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + diff --git a/lib/pleroma/web/views/masto_fe_view.ex b/lib/pleroma/web/views/masto_fe_view.ex new file mode 100644 index 0000000000..63a9c8179e --- /dev/null +++ b/lib/pleroma/web/views/masto_fe_view.ex @@ -0,0 +1,91 @@ +# Pleroma: A lightweight social networking server +# Copyright © 2017-2021 Pleroma Authors +# SPDX-License-Identifier: AGPL-3.0-only + +defmodule Pleroma.Web.MastoFEView do + use Pleroma.Web, :view + alias Pleroma.Config + alias Pleroma.User + alias Pleroma.Web.MastodonAPI.AccountView + alias Pleroma.Web.MastodonAPI.CustomEmojiView + + def initial_state(token, user, custom_emojis) do + limit = Config.get([:instance, :limit]) + + %{ + meta: %{ + streaming_api_base_url: Pleroma.Web.Endpoint.websocket_url(), + access_token: token, + locale: "en", + domain: Pleroma.Web.Endpoint.host(), + admin: "1", + me: "#{user.id}", + unfollow_modal: false, + boost_modal: false, + delete_modal: true, + auto_play_gif: false, + display_sensitive_media: false, + reduce_motion: false, + max_toot_chars: limit, + mascot: User.get_mascot(user)["url"] + }, + poll_limits: Config.get([:instance, :poll_limits]), + rights: %{ + delete_others_notice: present?(user.is_moderator), + admin: present?(user.is_admin) + }, + compose: %{ + me: "#{user.id}", + default_privacy: user.default_scope, + default_sensitive: false, + allow_content_types: Config.get([:instance, :allowed_post_formats]) + }, + media_attachments: %{ + accept_content_types: [ + ".jpg", + ".jpeg", + ".png", + ".gif", + ".webm", + ".mp4", + ".m4v", + "image\/jpeg", + "image\/png", + "image\/gif", + "video\/webm", + "video\/mp4" + ] + }, + settings: user.mastofe_settings || %{}, + push_subscription: nil, + accounts: %{user.id => render(AccountView, "show.json", user: user, for: user)}, + custom_emojis: render(CustomEmojiView, "index.json", custom_emojis: custom_emojis), + char_limit: limit + } + |> Jason.encode!() + |> Phoenix.HTML.raw() + end + + defp present?(nil), do: false + defp present?(false), do: false + defp present?(_), do: true + + def render("manifest.json", _params) do + %{ + name: Config.get([:instance, :name]), + description: Config.get([:instance, :description]), + icons: Config.get([:manifest, :icons]), + theme_color: Config.get([:manifest, :theme_color]), + background_color: Config.get([:manifest, :background_color]), + display: "standalone", + scope: Pleroma.Web.Endpoint.url(), + start_url: Routes.masto_fe_path(Pleroma.Web.Endpoint, :index, ["getting-started"]), + categories: [ + "social" + ], + serviceworker: %{ + src: "/sw.js" + } + } + end +end diff --git a/priv/repo/migrations/20210416051708_remove_mastofe_settings_from_users.exs b/priv/repo/migrations/20210416051708_remove_mastofe_settings_from_users.exs deleted file mode 100644 index a8d7306bd9..0000000000 --- a/priv/repo/migrations/20210416051708_remove_mastofe_settings_from_users.exs +++ /dev/null @@ -1,9 +0,0 @@ -defmodule Pleroma.Repo.Migrations.RemoveMastofeSettingsFromUsers do - use Ecto.Migration - - def change do - alter table(:users) do - remove_if_exists(:mastofe_settings, :map) - end - end -end diff --git a/priv/static/emoji/1f004.svg b/priv/static/emoji/1f004.svg new file mode 100644 index 0000000000..f4fa5844cf --- /dev/null +++ b/priv/static/emoji/1f004.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f0cf.svg b/priv/static/emoji/1f0cf.svg new file mode 100644 index 0000000000..0d05191cbf --- /dev/null +++ b/priv/static/emoji/1f0cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f170.svg b/priv/static/emoji/1f170.svg new file mode 100644 index 0000000000..5555b84a9a --- /dev/null +++ b/priv/static/emoji/1f170.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f171.svg b/priv/static/emoji/1f171.svg new file mode 100644 index 0000000000..f77618af16 --- /dev/null +++ b/priv/static/emoji/1f171.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f17e.svg b/priv/static/emoji/1f17e.svg new file mode 100644 index 0000000000..62f2f6d398 --- /dev/null +++ b/priv/static/emoji/1f17e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f17f.svg b/priv/static/emoji/1f17f.svg new file mode 100644 index 0000000000..8a494b8f77 --- /dev/null +++ b/priv/static/emoji/1f17f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f18e.svg b/priv/static/emoji/1f18e.svg new file mode 100644 index 0000000000..d19a2a439a --- /dev/null +++ b/priv/static/emoji/1f18e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f191.svg b/priv/static/emoji/1f191.svg new file mode 100644 index 0000000000..eaebb55876 --- /dev/null +++ b/priv/static/emoji/1f191.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f192.svg b/priv/static/emoji/1f192.svg new file mode 100644 index 0000000000..3207dcf61e --- /dev/null +++ b/priv/static/emoji/1f192.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f193.svg b/priv/static/emoji/1f193.svg new file mode 100644 index 0000000000..2dc2d6aaf1 --- /dev/null +++ b/priv/static/emoji/1f193.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f194.svg b/priv/static/emoji/1f194.svg new file mode 100644 index 0000000000..579625992a --- /dev/null +++ b/priv/static/emoji/1f194.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f195.svg b/priv/static/emoji/1f195.svg new file mode 100644 index 0000000000..dcf5702a33 --- /dev/null +++ b/priv/static/emoji/1f195.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f196.svg b/priv/static/emoji/1f196.svg new file mode 100644 index 0000000000..ccd7c36d1f --- /dev/null +++ b/priv/static/emoji/1f196.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f197.svg b/priv/static/emoji/1f197.svg new file mode 100644 index 0000000000..1c42dae356 --- /dev/null +++ b/priv/static/emoji/1f197.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f198.svg b/priv/static/emoji/1f198.svg new file mode 100644 index 0000000000..6fe35a172d --- /dev/null +++ b/priv/static/emoji/1f198.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f199.svg b/priv/static/emoji/1f199.svg new file mode 100644 index 0000000000..19ab1844d9 --- /dev/null +++ b/priv/static/emoji/1f199.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f19a.svg b/priv/static/emoji/1f19a.svg new file mode 100644 index 0000000000..2d36646ac5 --- /dev/null +++ b/priv/static/emoji/1f19a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1e8.svg b/priv/static/emoji/1f1e6-1f1e8.svg new file mode 100644 index 0000000000..53f90dc480 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1e9.svg b/priv/static/emoji/1f1e6-1f1e9.svg new file mode 100644 index 0000000000..be10594767 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1ea.svg b/priv/static/emoji/1f1e6-1f1ea.svg new file mode 100644 index 0000000000..be8e114a9f --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1eb.svg b/priv/static/emoji/1f1e6-1f1eb.svg new file mode 100644 index 0000000000..769efcadf3 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1ec.svg b/priv/static/emoji/1f1e6-1f1ec.svg new file mode 100644 index 0000000000..271661726c --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1ee.svg b/priv/static/emoji/1f1e6-1f1ee.svg new file mode 100644 index 0000000000..6a91dd9d78 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1f1.svg b/priv/static/emoji/1f1e6-1f1f1.svg new file mode 100644 index 0000000000..2c8655ddda --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1f2.svg b/priv/static/emoji/1f1e6-1f1f2.svg new file mode 100644 index 0000000000..0a966ab8bd --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1f4.svg b/priv/static/emoji/1f1e6-1f1f4.svg new file mode 100644 index 0000000000..65803b64a5 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1f6.svg b/priv/static/emoji/1f1e6-1f1f6.svg new file mode 100644 index 0000000000..fd29680f5b --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1f7.svg b/priv/static/emoji/1f1e6-1f1f7.svg new file mode 100644 index 0000000000..e8e60efdf7 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1f8.svg b/priv/static/emoji/1f1e6-1f1f8.svg new file mode 100644 index 0000000000..8b275322a5 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1f9.svg b/priv/static/emoji/1f1e6-1f1f9.svg new file mode 100644 index 0000000000..bfe1ec7f11 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1fa.svg b/priv/static/emoji/1f1e6-1f1fa.svg new file mode 100644 index 0000000000..989da76df5 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1fc.svg b/priv/static/emoji/1f1e6-1f1fc.svg new file mode 100644 index 0000000000..f383951260 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1fd.svg b/priv/static/emoji/1f1e6-1f1fd.svg new file mode 100644 index 0000000000..03bc680c75 --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6-1f1ff.svg b/priv/static/emoji/1f1e6-1f1ff.svg new file mode 100644 index 0000000000..b5848545bb --- /dev/null +++ b/priv/static/emoji/1f1e6-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e6.svg b/priv/static/emoji/1f1e6.svg new file mode 100644 index 0000000000..d3753d4a7b --- /dev/null +++ b/priv/static/emoji/1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1e6.svg b/priv/static/emoji/1f1e7-1f1e6.svg new file mode 100644 index 0000000000..bbcd3b5e60 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1e7.svg b/priv/static/emoji/1f1e7-1f1e7.svg new file mode 100644 index 0000000000..7f9e8c9d1a --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1e9.svg b/priv/static/emoji/1f1e7-1f1e9.svg new file mode 100644 index 0000000000..6edc844305 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1ea.svg b/priv/static/emoji/1f1e7-1f1ea.svg new file mode 100644 index 0000000000..e956194340 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1eb.svg b/priv/static/emoji/1f1e7-1f1eb.svg new file mode 100644 index 0000000000..8bceec74b3 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1ec.svg b/priv/static/emoji/1f1e7-1f1ec.svg new file mode 100644 index 0000000000..6e81fba54d --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1ed.svg b/priv/static/emoji/1f1e7-1f1ed.svg new file mode 100644 index 0000000000..73de5829e8 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1ee.svg b/priv/static/emoji/1f1e7-1f1ee.svg new file mode 100644 index 0000000000..e53644c54f --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1ef.svg b/priv/static/emoji/1f1e7-1f1ef.svg new file mode 100644 index 0000000000..133d711241 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f1.svg b/priv/static/emoji/1f1e7-1f1f1.svg new file mode 100644 index 0000000000..9d4904dd4c --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f2.svg b/priv/static/emoji/1f1e7-1f1f2.svg new file mode 100644 index 0000000000..5e7b7f6974 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f3.svg b/priv/static/emoji/1f1e7-1f1f3.svg new file mode 100644 index 0000000000..3c20edb284 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f4.svg b/priv/static/emoji/1f1e7-1f1f4.svg new file mode 100644 index 0000000000..ad0a8c9a21 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f6.svg b/priv/static/emoji/1f1e7-1f1f6.svg new file mode 100644 index 0000000000..bde4921702 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f7.svg b/priv/static/emoji/1f1e7-1f1f7.svg new file mode 100644 index 0000000000..956e39d071 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f8.svg b/priv/static/emoji/1f1e7-1f1f8.svg new file mode 100644 index 0000000000..a75f68bb60 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1f9.svg b/priv/static/emoji/1f1e7-1f1f9.svg new file mode 100644 index 0000000000..e822f94f3a --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1fb.svg b/priv/static/emoji/1f1e7-1f1fb.svg new file mode 100644 index 0000000000..3d104a6113 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1fc.svg b/priv/static/emoji/1f1e7-1f1fc.svg new file mode 100644 index 0000000000..5edeb5d5f7 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1fe.svg b/priv/static/emoji/1f1e7-1f1fe.svg new file mode 100644 index 0000000000..3fef573be8 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7-1f1ff.svg b/priv/static/emoji/1f1e7-1f1ff.svg new file mode 100644 index 0000000000..6f43e4a7e1 --- /dev/null +++ b/priv/static/emoji/1f1e7-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e7.svg b/priv/static/emoji/1f1e7.svg new file mode 100644 index 0000000000..52dcf7e915 --- /dev/null +++ b/priv/static/emoji/1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1e6.svg b/priv/static/emoji/1f1e8-1f1e6.svg new file mode 100644 index 0000000000..d9c386dbe8 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1e8.svg b/priv/static/emoji/1f1e8-1f1e8.svg new file mode 100644 index 0000000000..ce130d70b9 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1e9.svg b/priv/static/emoji/1f1e8-1f1e9.svg new file mode 100644 index 0000000000..d1b15c995f --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1eb.svg b/priv/static/emoji/1f1e8-1f1eb.svg new file mode 100644 index 0000000000..72166cbe0b --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1ec.svg b/priv/static/emoji/1f1e8-1f1ec.svg new file mode 100644 index 0000000000..3d466e3da2 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1ed.svg b/priv/static/emoji/1f1e8-1f1ed.svg new file mode 100644 index 0000000000..741b52144d --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1ee.svg b/priv/static/emoji/1f1e8-1f1ee.svg new file mode 100644 index 0000000000..bd2c3e0620 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1f0.svg b/priv/static/emoji/1f1e8-1f1f0.svg new file mode 100644 index 0000000000..04e034448c --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1f1.svg b/priv/static/emoji/1f1e8-1f1f1.svg new file mode 100644 index 0000000000..52b3a007d3 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1f2.svg b/priv/static/emoji/1f1e8-1f1f2.svg new file mode 100644 index 0000000000..7da7b66a7d --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1f3.svg b/priv/static/emoji/1f1e8-1f1f3.svg new file mode 100644 index 0000000000..c10116d0a2 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1f4.svg b/priv/static/emoji/1f1e8-1f1f4.svg new file mode 100644 index 0000000000..dc825d2463 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1f5.svg b/priv/static/emoji/1f1e8-1f1f5.svg new file mode 100644 index 0000000000..4eafe7aa5b --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1f7.svg b/priv/static/emoji/1f1e8-1f1f7.svg new file mode 100644 index 0000000000..acecc89523 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1fa.svg b/priv/static/emoji/1f1e8-1f1fa.svg new file mode 100644 index 0000000000..13b637014b --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1fb.svg b/priv/static/emoji/1f1e8-1f1fb.svg new file mode 100644 index 0000000000..9b2cc18dfd --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1fc.svg b/priv/static/emoji/1f1e8-1f1fc.svg new file mode 100644 index 0000000000..c53d09f79e --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1fd.svg b/priv/static/emoji/1f1e8-1f1fd.svg new file mode 100644 index 0000000000..6a322f5774 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1fe.svg b/priv/static/emoji/1f1e8-1f1fe.svg new file mode 100644 index 0000000000..19bead4dd0 --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8-1f1ff.svg b/priv/static/emoji/1f1e8-1f1ff.svg new file mode 100644 index 0000000000..fd3b47061b --- /dev/null +++ b/priv/static/emoji/1f1e8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e8.svg b/priv/static/emoji/1f1e8.svg new file mode 100644 index 0000000000..80b6405c2a --- /dev/null +++ b/priv/static/emoji/1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9-1f1ea.svg b/priv/static/emoji/1f1e9-1f1ea.svg new file mode 100644 index 0000000000..10a539990c --- /dev/null +++ b/priv/static/emoji/1f1e9-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9-1f1ec.svg b/priv/static/emoji/1f1e9-1f1ec.svg new file mode 100644 index 0000000000..565a7aa4f1 --- /dev/null +++ b/priv/static/emoji/1f1e9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9-1f1ef.svg b/priv/static/emoji/1f1e9-1f1ef.svg new file mode 100644 index 0000000000..42cbb243db --- /dev/null +++ b/priv/static/emoji/1f1e9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9-1f1f0.svg b/priv/static/emoji/1f1e9-1f1f0.svg new file mode 100644 index 0000000000..5ab629ba13 --- /dev/null +++ b/priv/static/emoji/1f1e9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9-1f1f2.svg b/priv/static/emoji/1f1e9-1f1f2.svg new file mode 100644 index 0000000000..750424f7b3 --- /dev/null +++ b/priv/static/emoji/1f1e9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9-1f1f4.svg b/priv/static/emoji/1f1e9-1f1f4.svg new file mode 100644 index 0000000000..c627c34ee0 --- /dev/null +++ b/priv/static/emoji/1f1e9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9-1f1ff.svg b/priv/static/emoji/1f1e9-1f1ff.svg new file mode 100644 index 0000000000..c29a7e2998 --- /dev/null +++ b/priv/static/emoji/1f1e9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1e9.svg b/priv/static/emoji/1f1e9.svg new file mode 100644 index 0000000000..24d64af38c --- /dev/null +++ b/priv/static/emoji/1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1e6.svg b/priv/static/emoji/1f1ea-1f1e6.svg new file mode 100644 index 0000000000..d1fd565cd1 --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1e8.svg b/priv/static/emoji/1f1ea-1f1e8.svg new file mode 100644 index 0000000000..c035be7a90 --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1ea.svg b/priv/static/emoji/1f1ea-1f1ea.svg new file mode 100644 index 0000000000..47a55895cd --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1ec.svg b/priv/static/emoji/1f1ea-1f1ec.svg new file mode 100644 index 0000000000..2034a3e510 --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1ed.svg b/priv/static/emoji/1f1ea-1f1ed.svg new file mode 100644 index 0000000000..9b8dc5a64a --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1f7.svg b/priv/static/emoji/1f1ea-1f1f7.svg new file mode 100644 index 0000000000..8e1e510fee --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1f8.svg b/priv/static/emoji/1f1ea-1f1f8.svg new file mode 100644 index 0000000000..d1fd565cd1 --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1f9.svg b/priv/static/emoji/1f1ea-1f1f9.svg new file mode 100644 index 0000000000..762cc1fb99 --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea-1f1fa.svg b/priv/static/emoji/1f1ea-1f1fa.svg new file mode 100644 index 0000000000..045024a339 --- /dev/null +++ b/priv/static/emoji/1f1ea-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ea.svg b/priv/static/emoji/1f1ea.svg new file mode 100644 index 0000000000..352b75e7bb --- /dev/null +++ b/priv/static/emoji/1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1eb-1f1ee.svg b/priv/static/emoji/1f1eb-1f1ee.svg new file mode 100644 index 0000000000..e07328edd5 --- /dev/null +++ b/priv/static/emoji/1f1eb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1eb-1f1ef.svg b/priv/static/emoji/1f1eb-1f1ef.svg new file mode 100644 index 0000000000..190134b5d0 --- /dev/null +++ b/priv/static/emoji/1f1eb-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1eb-1f1f0.svg b/priv/static/emoji/1f1eb-1f1f0.svg new file mode 100644 index 0000000000..0091bc78b0 --- /dev/null +++ b/priv/static/emoji/1f1eb-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1eb-1f1f2.svg b/priv/static/emoji/1f1eb-1f1f2.svg new file mode 100644 index 0000000000..b49556b567 --- /dev/null +++ b/priv/static/emoji/1f1eb-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1eb-1f1f4.svg b/priv/static/emoji/1f1eb-1f1f4.svg new file mode 100644 index 0000000000..93a1272851 --- /dev/null +++ b/priv/static/emoji/1f1eb-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1eb-1f1f7.svg b/priv/static/emoji/1f1eb-1f1f7.svg new file mode 100644 index 0000000000..4eafe7aa5b --- /dev/null +++ b/priv/static/emoji/1f1eb-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1eb.svg b/priv/static/emoji/1f1eb.svg new file mode 100644 index 0000000000..22f9d3d74c --- /dev/null +++ b/priv/static/emoji/1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1e6.svg b/priv/static/emoji/1f1ec-1f1e6.svg new file mode 100644 index 0000000000..a8c6fa417d --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1e7.svg b/priv/static/emoji/1f1ec-1f1e7.svg new file mode 100644 index 0000000000..21b97e9fcb --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1e9.svg b/priv/static/emoji/1f1ec-1f1e9.svg new file mode 100644 index 0000000000..e4f37f95a7 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1ea.svg b/priv/static/emoji/1f1ec-1f1ea.svg new file mode 100644 index 0000000000..8c2bd5a635 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1eb.svg b/priv/static/emoji/1f1ec-1f1eb.svg new file mode 100644 index 0000000000..2f10cee3c8 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1ec.svg b/priv/static/emoji/1f1ec-1f1ec.svg new file mode 100644 index 0000000000..84f6043947 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1ed.svg b/priv/static/emoji/1f1ec-1f1ed.svg new file mode 100644 index 0000000000..33302188d6 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1ee.svg b/priv/static/emoji/1f1ec-1f1ee.svg new file mode 100644 index 0000000000..432a7272b4 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f1.svg b/priv/static/emoji/1f1ec-1f1f1.svg new file mode 100644 index 0000000000..8a2ba3e4fe --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f2.svg b/priv/static/emoji/1f1ec-1f1f2.svg new file mode 100644 index 0000000000..383cf9d3c2 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f3.svg b/priv/static/emoji/1f1ec-1f1f3.svg new file mode 100644 index 0000000000..16f4a9027c --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f5.svg b/priv/static/emoji/1f1ec-1f1f5.svg new file mode 100644 index 0000000000..ca9e4c6a64 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f6.svg b/priv/static/emoji/1f1ec-1f1f6.svg new file mode 100644 index 0000000000..d4e7119f85 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f7.svg b/priv/static/emoji/1f1ec-1f1f7.svg new file mode 100644 index 0000000000..74d842d61d --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f8.svg b/priv/static/emoji/1f1ec-1f1f8.svg new file mode 100644 index 0000000000..d8b1e5febe --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1f9.svg b/priv/static/emoji/1f1ec-1f1f9.svg new file mode 100644 index 0000000000..fea623c97d --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1fa.svg b/priv/static/emoji/1f1ec-1f1fa.svg new file mode 100644 index 0000000000..2098ecca22 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1fc.svg b/priv/static/emoji/1f1ec-1f1fc.svg new file mode 100644 index 0000000000..6e01b9e216 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec-1f1fe.svg b/priv/static/emoji/1f1ec-1f1fe.svg new file mode 100644 index 0000000000..1edc6ef473 --- /dev/null +++ b/priv/static/emoji/1f1ec-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ec.svg b/priv/static/emoji/1f1ec.svg new file mode 100644 index 0000000000..3d7d62060e --- /dev/null +++ b/priv/static/emoji/1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ed-1f1f0.svg b/priv/static/emoji/1f1ed-1f1f0.svg new file mode 100644 index 0000000000..ef5ca3bcef --- /dev/null +++ b/priv/static/emoji/1f1ed-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ed-1f1f2.svg b/priv/static/emoji/1f1ed-1f1f2.svg new file mode 100644 index 0000000000..989da76df5 --- /dev/null +++ b/priv/static/emoji/1f1ed-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ed-1f1f3.svg b/priv/static/emoji/1f1ed-1f1f3.svg new file mode 100644 index 0000000000..298ec95afb --- /dev/null +++ b/priv/static/emoji/1f1ed-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ed-1f1f7.svg b/priv/static/emoji/1f1ed-1f1f7.svg new file mode 100644 index 0000000000..7b8740c958 --- /dev/null +++ b/priv/static/emoji/1f1ed-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ed-1f1f9.svg b/priv/static/emoji/1f1ed-1f1f9.svg new file mode 100644 index 0000000000..8ccca42820 --- /dev/null +++ b/priv/static/emoji/1f1ed-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ed-1f1fa.svg b/priv/static/emoji/1f1ed-1f1fa.svg new file mode 100644 index 0000000000..206baa15bf --- /dev/null +++ b/priv/static/emoji/1f1ed-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ed.svg b/priv/static/emoji/1f1ed.svg new file mode 100644 index 0000000000..20e48f86c9 --- /dev/null +++ b/priv/static/emoji/1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1e8.svg b/priv/static/emoji/1f1ee-1f1e8.svg new file mode 100644 index 0000000000..46b0949799 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1e9.svg b/priv/static/emoji/1f1ee-1f1e9.svg new file mode 100644 index 0000000000..de31273f8c --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1ea.svg b/priv/static/emoji/1f1ee-1f1ea.svg new file mode 100644 index 0000000000..3c502571ee --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f1.svg b/priv/static/emoji/1f1ee-1f1f1.svg new file mode 100644 index 0000000000..5cf3241556 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f2.svg b/priv/static/emoji/1f1ee-1f1f2.svg new file mode 100644 index 0000000000..7fc9d465a8 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f3.svg b/priv/static/emoji/1f1ee-1f1f3.svg new file mode 100644 index 0000000000..7af1dafe43 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f4.svg b/priv/static/emoji/1f1ee-1f1f4.svg new file mode 100644 index 0000000000..565a7aa4f1 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f6.svg b/priv/static/emoji/1f1ee-1f1f6.svg new file mode 100644 index 0000000000..06cfe31927 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f7.svg b/priv/static/emoji/1f1ee-1f1f7.svg new file mode 100644 index 0000000000..e8ae7b1776 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f8.svg b/priv/static/emoji/1f1ee-1f1f8.svg new file mode 100644 index 0000000000..c8e918c34e --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee-1f1f9.svg b/priv/static/emoji/1f1ee-1f1f9.svg new file mode 100644 index 0000000000..6c38017668 --- /dev/null +++ b/priv/static/emoji/1f1ee-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ee.svg b/priv/static/emoji/1f1ee.svg new file mode 100644 index 0000000000..18b634ca21 --- /dev/null +++ b/priv/static/emoji/1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ef-1f1ea.svg b/priv/static/emoji/1f1ef-1f1ea.svg new file mode 100644 index 0000000000..a17c379d18 --- /dev/null +++ b/priv/static/emoji/1f1ef-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ef-1f1f2.svg b/priv/static/emoji/1f1ef-1f1f2.svg new file mode 100644 index 0000000000..dd82d4fad8 --- /dev/null +++ b/priv/static/emoji/1f1ef-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ef-1f1f4.svg b/priv/static/emoji/1f1ef-1f1f4.svg new file mode 100644 index 0000000000..40710a56a8 --- /dev/null +++ b/priv/static/emoji/1f1ef-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ef-1f1f5.svg b/priv/static/emoji/1f1ef-1f1f5.svg new file mode 100644 index 0000000000..3a724e9fd2 --- /dev/null +++ b/priv/static/emoji/1f1ef-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ef.svg b/priv/static/emoji/1f1ef.svg new file mode 100644 index 0000000000..e0a8072363 --- /dev/null +++ b/priv/static/emoji/1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1ea.svg b/priv/static/emoji/1f1f0-1f1ea.svg new file mode 100644 index 0000000000..5bee37fd7f --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1ec.svg b/priv/static/emoji/1f1f0-1f1ec.svg new file mode 100644 index 0000000000..2616d9e057 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1ed.svg b/priv/static/emoji/1f1f0-1f1ed.svg new file mode 100644 index 0000000000..54f6e90471 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1ee.svg b/priv/static/emoji/1f1f0-1f1ee.svg new file mode 100644 index 0000000000..233cce8d74 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1f2.svg b/priv/static/emoji/1f1f0-1f1f2.svg new file mode 100644 index 0000000000..91c12b8003 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1f3.svg b/priv/static/emoji/1f1f0-1f1f3.svg new file mode 100644 index 0000000000..461e0f263b --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1f5.svg b/priv/static/emoji/1f1f0-1f1f5.svg new file mode 100644 index 0000000000..d530523c77 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1f7.svg b/priv/static/emoji/1f1f0-1f1f7.svg new file mode 100644 index 0000000000..7b5ee2334f --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1fc.svg b/priv/static/emoji/1f1f0-1f1fc.svg new file mode 100644 index 0000000000..db949b2873 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1fe.svg b/priv/static/emoji/1f1f0-1f1fe.svg new file mode 100644 index 0000000000..57323f8967 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0-1f1ff.svg b/priv/static/emoji/1f1f0-1f1ff.svg new file mode 100644 index 0000000000..d2101ab545 --- /dev/null +++ b/priv/static/emoji/1f1f0-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f0.svg b/priv/static/emoji/1f1f0.svg new file mode 100644 index 0000000000..21484bf65a --- /dev/null +++ b/priv/static/emoji/1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1e6.svg b/priv/static/emoji/1f1f1-1f1e6.svg new file mode 100644 index 0000000000..0ea005dbe4 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1e7.svg b/priv/static/emoji/1f1f1-1f1e7.svg new file mode 100644 index 0000000000..4271b73a4c --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1e8.svg b/priv/static/emoji/1f1f1-1f1e8.svg new file mode 100644 index 0000000000..12b2237e33 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1ee.svg b/priv/static/emoji/1f1f1-1f1ee.svg new file mode 100644 index 0000000000..9e474bc1f4 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1f0.svg b/priv/static/emoji/1f1f1-1f1f0.svg new file mode 100644 index 0000000000..a2fe8143e0 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1f7.svg b/priv/static/emoji/1f1f1-1f1f7.svg new file mode 100644 index 0000000000..dd4a1e47b3 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1f8.svg b/priv/static/emoji/1f1f1-1f1f8.svg new file mode 100644 index 0000000000..ec06e4fcc5 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1f9.svg b/priv/static/emoji/1f1f1-1f1f9.svg new file mode 100644 index 0000000000..5fcfd8bf19 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1fa.svg b/priv/static/emoji/1f1f1-1f1fa.svg new file mode 100644 index 0000000000..e66c904e78 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1fb.svg b/priv/static/emoji/1f1f1-1f1fb.svg new file mode 100644 index 0000000000..f5f39223b3 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1-1f1fe.svg b/priv/static/emoji/1f1f1-1f1fe.svg new file mode 100644 index 0000000000..c6c12ed669 --- /dev/null +++ b/priv/static/emoji/1f1f1-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f1.svg b/priv/static/emoji/1f1f1.svg new file mode 100644 index 0000000000..d76ecd5d42 --- /dev/null +++ b/priv/static/emoji/1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1e6.svg b/priv/static/emoji/1f1f2-1f1e6.svg new file mode 100644 index 0000000000..d6d689a31b --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1e8.svg b/priv/static/emoji/1f1f2-1f1e8.svg new file mode 100644 index 0000000000..8604a1c451 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1e9.svg b/priv/static/emoji/1f1f2-1f1e9.svg new file mode 100644 index 0000000000..eb2d4a2062 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1ea.svg b/priv/static/emoji/1f1f2-1f1ea.svg new file mode 100644 index 0000000000..47c5b2e526 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1eb.svg b/priv/static/emoji/1f1f2-1f1eb.svg new file mode 100644 index 0000000000..4eafe7aa5b --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1ec.svg b/priv/static/emoji/1f1f2-1f1ec.svg new file mode 100644 index 0000000000..becf2f4618 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1ed.svg b/priv/static/emoji/1f1f2-1f1ed.svg new file mode 100644 index 0000000000..6774f9b34f --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f0.svg b/priv/static/emoji/1f1f2-1f1f0.svg new file mode 100644 index 0000000000..371b2358f6 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f1.svg b/priv/static/emoji/1f1f2-1f1f1.svg new file mode 100644 index 0000000000..3a522a0fd4 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f2.svg b/priv/static/emoji/1f1f2-1f1f2.svg new file mode 100644 index 0000000000..69db533a9f --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f3.svg b/priv/static/emoji/1f1f2-1f1f3.svg new file mode 100644 index 0000000000..b9635cf7bb --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f4.svg b/priv/static/emoji/1f1f2-1f1f4.svg new file mode 100644 index 0000000000..790900e40e --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f5.svg b/priv/static/emoji/1f1f2-1f1f5.svg new file mode 100644 index 0000000000..f0a5fb45dc --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f6.svg b/priv/static/emoji/1f1f2-1f1f6.svg new file mode 100644 index 0000000000..f7053092c3 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f7.svg b/priv/static/emoji/1f1f2-1f1f7.svg new file mode 100644 index 0000000000..8335c8b5cb --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f8.svg b/priv/static/emoji/1f1f2-1f1f8.svg new file mode 100644 index 0000000000..04a1cc1e5c --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1f9.svg b/priv/static/emoji/1f1f2-1f1f9.svg new file mode 100644 index 0000000000..553810216b --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1fa.svg b/priv/static/emoji/1f1f2-1f1fa.svg new file mode 100644 index 0000000000..6c24981264 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1fb.svg b/priv/static/emoji/1f1f2-1f1fb.svg new file mode 100644 index 0000000000..b57be9c6fb --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1fc.svg b/priv/static/emoji/1f1f2-1f1fc.svg new file mode 100644 index 0000000000..9b8ddf52c7 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1fd.svg b/priv/static/emoji/1f1f2-1f1fd.svg new file mode 100644 index 0000000000..93d54c46f0 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1fe.svg b/priv/static/emoji/1f1f2-1f1fe.svg new file mode 100644 index 0000000000..0480330cd0 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2-1f1ff.svg b/priv/static/emoji/1f1f2-1f1ff.svg new file mode 100644 index 0000000000..cfa95772e3 --- /dev/null +++ b/priv/static/emoji/1f1f2-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f2.svg b/priv/static/emoji/1f1f2.svg new file mode 100644 index 0000000000..cc6f136e0d --- /dev/null +++ b/priv/static/emoji/1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1e6.svg b/priv/static/emoji/1f1f3-1f1e6.svg new file mode 100644 index 0000000000..d2a79fd2cd --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1e8.svg b/priv/static/emoji/1f1f3-1f1e8.svg new file mode 100644 index 0000000000..e5dff93453 --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1ea.svg b/priv/static/emoji/1f1f3-1f1ea.svg new file mode 100644 index 0000000000..53f25f5012 --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1eb.svg b/priv/static/emoji/1f1f3-1f1eb.svg new file mode 100644 index 0000000000..990687f09e --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1ec.svg b/priv/static/emoji/1f1f3-1f1ec.svg new file mode 100644 index 0000000000..6c6e31ca06 --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1ee.svg b/priv/static/emoji/1f1f3-1f1ee.svg new file mode 100644 index 0000000000..990868aa7f --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1f1.svg b/priv/static/emoji/1f1f3-1f1f1.svg new file mode 100644 index 0000000000..65e8be9abd --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1f4.svg b/priv/static/emoji/1f1f3-1f1f4.svg new file mode 100644 index 0000000000..4f5260a686 --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1f5.svg b/priv/static/emoji/1f1f3-1f1f5.svg new file mode 100644 index 0000000000..5e5faaf26f --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1f7.svg b/priv/static/emoji/1f1f3-1f1f7.svg new file mode 100644 index 0000000000..72485e7079 --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1fa.svg b/priv/static/emoji/1f1f3-1f1fa.svg new file mode 100644 index 0000000000..dd50901aff --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3-1f1ff.svg b/priv/static/emoji/1f1f3-1f1ff.svg new file mode 100644 index 0000000000..956a9d2158 --- /dev/null +++ b/priv/static/emoji/1f1f3-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f3.svg b/priv/static/emoji/1f1f3.svg new file mode 100644 index 0000000000..f8d0bbd53a --- /dev/null +++ b/priv/static/emoji/1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f4-1f1f2.svg b/priv/static/emoji/1f1f4-1f1f2.svg new file mode 100644 index 0000000000..29af825894 --- /dev/null +++ b/priv/static/emoji/1f1f4-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f4.svg b/priv/static/emoji/1f1f4.svg new file mode 100644 index 0000000000..9a56c51bf6 --- /dev/null +++ b/priv/static/emoji/1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1e6.svg b/priv/static/emoji/1f1f5-1f1e6.svg new file mode 100644 index 0000000000..4fc55f5b08 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1ea.svg b/priv/static/emoji/1f1f5-1f1ea.svg new file mode 100644 index 0000000000..fc93b299aa --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1eb.svg b/priv/static/emoji/1f1f5-1f1eb.svg new file mode 100644 index 0000000000..333c6d0abd --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1ec.svg b/priv/static/emoji/1f1f5-1f1ec.svg new file mode 100644 index 0000000000..2d20ed8e79 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1ed.svg b/priv/static/emoji/1f1f5-1f1ed.svg new file mode 100644 index 0000000000..e9f011d360 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1f0.svg b/priv/static/emoji/1f1f5-1f1f0.svg new file mode 100644 index 0000000000..a718df6c23 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1f1.svg b/priv/static/emoji/1f1f5-1f1f1.svg new file mode 100644 index 0000000000..8169875a70 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1f2.svg b/priv/static/emoji/1f1f5-1f1f2.svg new file mode 100644 index 0000000000..dc55c02f1f --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1f3.svg b/priv/static/emoji/1f1f5-1f1f3.svg new file mode 100644 index 0000000000..234f53f413 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1f7.svg b/priv/static/emoji/1f1f5-1f1f7.svg new file mode 100644 index 0000000000..f4c2ace367 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1f8.svg b/priv/static/emoji/1f1f5-1f1f8.svg new file mode 100644 index 0000000000..6ce8ec769d --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1f9.svg b/priv/static/emoji/1f1f5-1f1f9.svg new file mode 100644 index 0000000000..78b29a89f3 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1fc.svg b/priv/static/emoji/1f1f5-1f1fc.svg new file mode 100644 index 0000000000..043f7a518c --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5-1f1fe.svg b/priv/static/emoji/1f1f5-1f1fe.svg new file mode 100644 index 0000000000..c8e83dc3f6 --- /dev/null +++ b/priv/static/emoji/1f1f5-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f5.svg b/priv/static/emoji/1f1f5.svg new file mode 100644 index 0000000000..90d45e851e --- /dev/null +++ b/priv/static/emoji/1f1f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f6-1f1e6.svg b/priv/static/emoji/1f1f6-1f1e6.svg new file mode 100644 index 0000000000..f3e91d043d --- /dev/null +++ b/priv/static/emoji/1f1f6-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f6.svg b/priv/static/emoji/1f1f6.svg new file mode 100644 index 0000000000..e202fc225a --- /dev/null +++ b/priv/static/emoji/1f1f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f7-1f1ea.svg b/priv/static/emoji/1f1f7-1f1ea.svg new file mode 100644 index 0000000000..ab1399fc14 --- /dev/null +++ b/priv/static/emoji/1f1f7-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f7-1f1f4.svg b/priv/static/emoji/1f1f7-1f1f4.svg new file mode 100644 index 0000000000..33ac6edf7a --- /dev/null +++ b/priv/static/emoji/1f1f7-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f7-1f1f8.svg b/priv/static/emoji/1f1f7-1f1f8.svg new file mode 100644 index 0000000000..5c6c69e459 --- /dev/null +++ b/priv/static/emoji/1f1f7-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f7-1f1fa.svg b/priv/static/emoji/1f1f7-1f1fa.svg new file mode 100644 index 0000000000..46f74d591c --- /dev/null +++ b/priv/static/emoji/1f1f7-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f7-1f1fc.svg b/priv/static/emoji/1f1f7-1f1fc.svg new file mode 100644 index 0000000000..6175c02fd1 --- /dev/null +++ b/priv/static/emoji/1f1f7-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f7.svg b/priv/static/emoji/1f1f7.svg new file mode 100644 index 0000000000..8d72d9910e --- /dev/null +++ b/priv/static/emoji/1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1e6.svg b/priv/static/emoji/1f1f8-1f1e6.svg new file mode 100644 index 0000000000..d0d95800c6 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1e7.svg b/priv/static/emoji/1f1f8-1f1e7.svg new file mode 100644 index 0000000000..a55ff606a5 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1e8.svg b/priv/static/emoji/1f1f8-1f1e8.svg new file mode 100644 index 0000000000..40e42eaa34 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1e9.svg b/priv/static/emoji/1f1f8-1f1e9.svg new file mode 100644 index 0000000000..ddb60bae3d --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1ea.svg b/priv/static/emoji/1f1f8-1f1ea.svg new file mode 100644 index 0000000000..a039dc2ded --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1ec.svg b/priv/static/emoji/1f1f8-1f1ec.svg new file mode 100644 index 0000000000..199e54e18f --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1ed.svg b/priv/static/emoji/1f1f8-1f1ed.svg new file mode 100644 index 0000000000..57d004da3b --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1ee.svg b/priv/static/emoji/1f1f8-1f1ee.svg new file mode 100644 index 0000000000..e25c04c83b --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1ef.svg b/priv/static/emoji/1f1f8-1f1ef.svg new file mode 100644 index 0000000000..4f5260a686 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f0.svg b/priv/static/emoji/1f1f8-1f1f0.svg new file mode 100644 index 0000000000..c4f7cafdfb --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f1.svg b/priv/static/emoji/1f1f8-1f1f1.svg new file mode 100644 index 0000000000..b08dd1d736 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f2.svg b/priv/static/emoji/1f1f8-1f1f2.svg new file mode 100644 index 0000000000..b53d00dbc5 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f3.svg b/priv/static/emoji/1f1f8-1f1f3.svg new file mode 100644 index 0000000000..c2334722b2 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f4.svg b/priv/static/emoji/1f1f8-1f1f4.svg new file mode 100644 index 0000000000..293dd348f1 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f7.svg b/priv/static/emoji/1f1f8-1f1f7.svg new file mode 100644 index 0000000000..c483fb95ea --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f8.svg b/priv/static/emoji/1f1f8-1f1f8.svg new file mode 100644 index 0000000000..0aa63d752a --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1f9.svg b/priv/static/emoji/1f1f8-1f1f9.svg new file mode 100644 index 0000000000..f2bb52a3cf --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1fb.svg b/priv/static/emoji/1f1f8-1f1fb.svg new file mode 100644 index 0000000000..873310c096 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1fd.svg b/priv/static/emoji/1f1f8-1f1fd.svg new file mode 100644 index 0000000000..20472431e5 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1fe.svg b/priv/static/emoji/1f1f8-1f1fe.svg new file mode 100644 index 0000000000..5e32d2cd27 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8-1f1ff.svg b/priv/static/emoji/1f1f8-1f1ff.svg new file mode 100644 index 0000000000..cb7f84a839 --- /dev/null +++ b/priv/static/emoji/1f1f8-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f8.svg b/priv/static/emoji/1f1f8.svg new file mode 100644 index 0000000000..e596113c3b --- /dev/null +++ b/priv/static/emoji/1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1e6.svg b/priv/static/emoji/1f1f9-1f1e6.svg new file mode 100644 index 0000000000..547fa056f8 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1e8.svg b/priv/static/emoji/1f1f9-1f1e8.svg new file mode 100644 index 0000000000..3c61bc79e7 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1e9.svg b/priv/static/emoji/1f1f9-1f1e9.svg new file mode 100644 index 0000000000..d106ba84d5 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1eb.svg b/priv/static/emoji/1f1f9-1f1eb.svg new file mode 100644 index 0000000000..cf4bfacfcd --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1ec.svg b/priv/static/emoji/1f1f9-1f1ec.svg new file mode 100644 index 0000000000..4a05a3037e --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1ed.svg b/priv/static/emoji/1f1f9-1f1ed.svg new file mode 100644 index 0000000000..ff2a66f932 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1ef.svg b/priv/static/emoji/1f1f9-1f1ef.svg new file mode 100644 index 0000000000..6045f46576 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1f0.svg b/priv/static/emoji/1f1f9-1f1f0.svg new file mode 100644 index 0000000000..bfa93625b2 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1f1.svg b/priv/static/emoji/1f1f9-1f1f1.svg new file mode 100644 index 0000000000..6030072a3a --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1f2.svg b/priv/static/emoji/1f1f9-1f1f2.svg new file mode 100644 index 0000000000..a57c35ccf4 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1f3.svg b/priv/static/emoji/1f1f9-1f1f3.svg new file mode 100644 index 0000000000..c13e730248 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1f4.svg b/priv/static/emoji/1f1f9-1f1f4.svg new file mode 100644 index 0000000000..20a9555ba8 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1f7.svg b/priv/static/emoji/1f1f9-1f1f7.svg new file mode 100644 index 0000000000..861da57e37 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1f9.svg b/priv/static/emoji/1f1f9-1f1f9.svg new file mode 100644 index 0000000000..578c8eb406 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1fb.svg b/priv/static/emoji/1f1f9-1f1fb.svg new file mode 100644 index 0000000000..6558df605c --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1fc.svg b/priv/static/emoji/1f1f9-1f1fc.svg new file mode 100644 index 0000000000..4cd304e16a --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9-1f1ff.svg b/priv/static/emoji/1f1f9-1f1ff.svg new file mode 100644 index 0000000000..a9ddb8ed06 --- /dev/null +++ b/priv/static/emoji/1f1f9-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1f9.svg b/priv/static/emoji/1f1f9.svg new file mode 100644 index 0000000000..fa3677ea4e --- /dev/null +++ b/priv/static/emoji/1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa-1f1e6.svg b/priv/static/emoji/1f1fa-1f1e6.svg new file mode 100644 index 0000000000..989b5c28f2 --- /dev/null +++ b/priv/static/emoji/1f1fa-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa-1f1ec.svg b/priv/static/emoji/1f1fa-1f1ec.svg new file mode 100644 index 0000000000..6602ca9ca9 --- /dev/null +++ b/priv/static/emoji/1f1fa-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa-1f1f2.svg b/priv/static/emoji/1f1fa-1f1f2.svg new file mode 100644 index 0000000000..d51f600ab1 --- /dev/null +++ b/priv/static/emoji/1f1fa-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa-1f1f3.svg b/priv/static/emoji/1f1fa-1f1f3.svg new file mode 100644 index 0000000000..a035a767cd --- /dev/null +++ b/priv/static/emoji/1f1fa-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa-1f1f8.svg b/priv/static/emoji/1f1fa-1f1f8.svg new file mode 100644 index 0000000000..d51f600ab1 --- /dev/null +++ b/priv/static/emoji/1f1fa-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa-1f1fe.svg b/priv/static/emoji/1f1fa-1f1fe.svg new file mode 100644 index 0000000000..796244c9d1 --- /dev/null +++ b/priv/static/emoji/1f1fa-1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa-1f1ff.svg b/priv/static/emoji/1f1fa-1f1ff.svg new file mode 100644 index 0000000000..b913772edf --- /dev/null +++ b/priv/static/emoji/1f1fa-1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fa.svg b/priv/static/emoji/1f1fa.svg new file mode 100644 index 0000000000..aed705dab9 --- /dev/null +++ b/priv/static/emoji/1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb-1f1e6.svg b/priv/static/emoji/1f1fb-1f1e6.svg new file mode 100644 index 0000000000..7b2bffa76b --- /dev/null +++ b/priv/static/emoji/1f1fb-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb-1f1e8.svg b/priv/static/emoji/1f1fb-1f1e8.svg new file mode 100644 index 0000000000..fb97611b43 --- /dev/null +++ b/priv/static/emoji/1f1fb-1f1e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb-1f1ea.svg b/priv/static/emoji/1f1fb-1f1ea.svg new file mode 100644 index 0000000000..294b5c69ee --- /dev/null +++ b/priv/static/emoji/1f1fb-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb-1f1ec.svg b/priv/static/emoji/1f1fb-1f1ec.svg new file mode 100644 index 0000000000..d8194cd05c --- /dev/null +++ b/priv/static/emoji/1f1fb-1f1ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb-1f1ee.svg b/priv/static/emoji/1f1fb-1f1ee.svg new file mode 100644 index 0000000000..d0602d2999 --- /dev/null +++ b/priv/static/emoji/1f1fb-1f1ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb-1f1f3.svg b/priv/static/emoji/1f1fb-1f1f3.svg new file mode 100644 index 0000000000..4e0e1b586d --- /dev/null +++ b/priv/static/emoji/1f1fb-1f1f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb-1f1fa.svg b/priv/static/emoji/1f1fb-1f1fa.svg new file mode 100644 index 0000000000..151e7aaa7c --- /dev/null +++ b/priv/static/emoji/1f1fb-1f1fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fb.svg b/priv/static/emoji/1f1fb.svg new file mode 100644 index 0000000000..a5bf86474a --- /dev/null +++ b/priv/static/emoji/1f1fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fc-1f1eb.svg b/priv/static/emoji/1f1fc-1f1eb.svg new file mode 100644 index 0000000000..9895422507 --- /dev/null +++ b/priv/static/emoji/1f1fc-1f1eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fc-1f1f8.svg b/priv/static/emoji/1f1fc-1f1f8.svg new file mode 100644 index 0000000000..6b075cb061 --- /dev/null +++ b/priv/static/emoji/1f1fc-1f1f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fc.svg b/priv/static/emoji/1f1fc.svg new file mode 100644 index 0000000000..c65cf0b972 --- /dev/null +++ b/priv/static/emoji/1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fd-1f1f0.svg b/priv/static/emoji/1f1fd-1f1f0.svg new file mode 100644 index 0000000000..39890a907e --- /dev/null +++ b/priv/static/emoji/1f1fd-1f1f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fd.svg b/priv/static/emoji/1f1fd.svg new file mode 100644 index 0000000000..e39fd6d205 --- /dev/null +++ b/priv/static/emoji/1f1fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fe-1f1ea.svg b/priv/static/emoji/1f1fe-1f1ea.svg new file mode 100644 index 0000000000..a82532c3cb --- /dev/null +++ b/priv/static/emoji/1f1fe-1f1ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fe-1f1f9.svg b/priv/static/emoji/1f1fe-1f1f9.svg new file mode 100644 index 0000000000..76765b938b --- /dev/null +++ b/priv/static/emoji/1f1fe-1f1f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1fe.svg b/priv/static/emoji/1f1fe.svg new file mode 100644 index 0000000000..3c4a46f0a8 --- /dev/null +++ b/priv/static/emoji/1f1fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ff-1f1e6.svg b/priv/static/emoji/1f1ff-1f1e6.svg new file mode 100644 index 0000000000..275c136da0 --- /dev/null +++ b/priv/static/emoji/1f1ff-1f1e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ff-1f1f2.svg b/priv/static/emoji/1f1ff-1f1f2.svg new file mode 100644 index 0000000000..d27689638e --- /dev/null +++ b/priv/static/emoji/1f1ff-1f1f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ff-1f1fc.svg b/priv/static/emoji/1f1ff-1f1fc.svg new file mode 100644 index 0000000000..15a8464566 --- /dev/null +++ b/priv/static/emoji/1f1ff-1f1fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f1ff.svg b/priv/static/emoji/1f1ff.svg new file mode 100644 index 0000000000..e1ae07de07 --- /dev/null +++ b/priv/static/emoji/1f1ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f201.svg b/priv/static/emoji/1f201.svg new file mode 100644 index 0000000000..c4e65413db --- /dev/null +++ b/priv/static/emoji/1f201.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f202.svg b/priv/static/emoji/1f202.svg new file mode 100644 index 0000000000..7f1e8415d9 --- /dev/null +++ b/priv/static/emoji/1f202.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f21a.svg b/priv/static/emoji/1f21a.svg new file mode 100644 index 0000000000..9b0253adf4 --- /dev/null +++ b/priv/static/emoji/1f21a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f22f.svg b/priv/static/emoji/1f22f.svg new file mode 100644 index 0000000000..112269d954 --- /dev/null +++ b/priv/static/emoji/1f22f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f232.svg b/priv/static/emoji/1f232.svg new file mode 100644 index 0000000000..4efe9bbf12 --- /dev/null +++ b/priv/static/emoji/1f232.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f233.svg b/priv/static/emoji/1f233.svg new file mode 100644 index 0000000000..2e2072ce9e --- /dev/null +++ b/priv/static/emoji/1f233.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f234.svg b/priv/static/emoji/1f234.svg new file mode 100644 index 0000000000..b90b9c407a --- /dev/null +++ b/priv/static/emoji/1f234.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f235.svg b/priv/static/emoji/1f235.svg new file mode 100644 index 0000000000..86f24ca512 --- /dev/null +++ b/priv/static/emoji/1f235.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f236.svg b/priv/static/emoji/1f236.svg new file mode 100644 index 0000000000..93c5998e71 --- /dev/null +++ b/priv/static/emoji/1f236.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f237.svg b/priv/static/emoji/1f237.svg new file mode 100644 index 0000000000..459d94886e --- /dev/null +++ b/priv/static/emoji/1f237.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f238.svg b/priv/static/emoji/1f238.svg new file mode 100644 index 0000000000..af984cb9ff --- /dev/null +++ b/priv/static/emoji/1f238.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f239.svg b/priv/static/emoji/1f239.svg new file mode 100644 index 0000000000..889c027261 --- /dev/null +++ b/priv/static/emoji/1f239.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f23a.svg b/priv/static/emoji/1f23a.svg new file mode 100644 index 0000000000..87a2cebdf6 --- /dev/null +++ b/priv/static/emoji/1f23a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f250.svg b/priv/static/emoji/1f250.svg new file mode 100644 index 0000000000..c7465f8a80 --- /dev/null +++ b/priv/static/emoji/1f250.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f251.svg b/priv/static/emoji/1f251.svg new file mode 100644 index 0000000000..4bb227b501 --- /dev/null +++ b/priv/static/emoji/1f251.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f300.svg b/priv/static/emoji/1f300.svg new file mode 100644 index 0000000000..1de6f256cb --- /dev/null +++ b/priv/static/emoji/1f300.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f301.svg b/priv/static/emoji/1f301.svg new file mode 100644 index 0000000000..d6298de42d --- /dev/null +++ b/priv/static/emoji/1f301.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f302.svg b/priv/static/emoji/1f302.svg new file mode 100644 index 0000000000..e611e6b832 --- /dev/null +++ b/priv/static/emoji/1f302.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f303.svg b/priv/static/emoji/1f303.svg new file mode 100644 index 0000000000..d6c21b48f7 --- /dev/null +++ b/priv/static/emoji/1f303.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f304.svg b/priv/static/emoji/1f304.svg new file mode 100644 index 0000000000..0709f1c47d --- /dev/null +++ b/priv/static/emoji/1f304.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f305.svg b/priv/static/emoji/1f305.svg new file mode 100644 index 0000000000..8e3f66da6b --- /dev/null +++ b/priv/static/emoji/1f305.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f306.svg b/priv/static/emoji/1f306.svg new file mode 100644 index 0000000000..9e7ae826ec --- /dev/null +++ b/priv/static/emoji/1f306.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f307.svg b/priv/static/emoji/1f307.svg new file mode 100644 index 0000000000..a783fe3317 --- /dev/null +++ b/priv/static/emoji/1f307.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f308.svg b/priv/static/emoji/1f308.svg new file mode 100644 index 0000000000..ffe6a12398 --- /dev/null +++ b/priv/static/emoji/1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f309.svg b/priv/static/emoji/1f309.svg new file mode 100644 index 0000000000..e49295b410 --- /dev/null +++ b/priv/static/emoji/1f309.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f30a.svg b/priv/static/emoji/1f30a.svg new file mode 100644 index 0000000000..0e68ec3614 --- /dev/null +++ b/priv/static/emoji/1f30a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f30b.svg b/priv/static/emoji/1f30b.svg new file mode 100644 index 0000000000..88d989d73c --- /dev/null +++ b/priv/static/emoji/1f30b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f30c.svg b/priv/static/emoji/1f30c.svg new file mode 100644 index 0000000000..7853bcd43a --- /dev/null +++ b/priv/static/emoji/1f30c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f30d.svg b/priv/static/emoji/1f30d.svg new file mode 100644 index 0000000000..f813610827 --- /dev/null +++ b/priv/static/emoji/1f30d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f30e.svg b/priv/static/emoji/1f30e.svg new file mode 100644 index 0000000000..0793e724f5 --- /dev/null +++ b/priv/static/emoji/1f30e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f30f.svg b/priv/static/emoji/1f30f.svg new file mode 100644 index 0000000000..30c0186e00 --- /dev/null +++ b/priv/static/emoji/1f30f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f310.svg b/priv/static/emoji/1f310.svg new file mode 100644 index 0000000000..a9ec9e6964 --- /dev/null +++ b/priv/static/emoji/1f310.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f311.svg b/priv/static/emoji/1f311.svg new file mode 100644 index 0000000000..d71e4d1aa9 --- /dev/null +++ b/priv/static/emoji/1f311.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f312.svg b/priv/static/emoji/1f312.svg new file mode 100644 index 0000000000..d3bb1a7543 --- /dev/null +++ b/priv/static/emoji/1f312.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f313.svg b/priv/static/emoji/1f313.svg new file mode 100644 index 0000000000..f668b7585f --- /dev/null +++ b/priv/static/emoji/1f313.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f314.svg b/priv/static/emoji/1f314.svg new file mode 100644 index 0000000000..90488ede90 --- /dev/null +++ b/priv/static/emoji/1f314.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f315.svg b/priv/static/emoji/1f315.svg new file mode 100644 index 0000000000..9a70427154 --- /dev/null +++ b/priv/static/emoji/1f315.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f316.svg b/priv/static/emoji/1f316.svg new file mode 100644 index 0000000000..9cbc981ea0 --- /dev/null +++ b/priv/static/emoji/1f316.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f317.svg b/priv/static/emoji/1f317.svg new file mode 100644 index 0000000000..a5813f0f13 --- /dev/null +++ b/priv/static/emoji/1f317.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f318.svg b/priv/static/emoji/1f318.svg new file mode 100644 index 0000000000..bad95d5ec1 --- /dev/null +++ b/priv/static/emoji/1f318.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f319.svg b/priv/static/emoji/1f319.svg new file mode 100644 index 0000000000..d98dc2f9f4 --- /dev/null +++ b/priv/static/emoji/1f319.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f31a.svg b/priv/static/emoji/1f31a.svg new file mode 100644 index 0000000000..6ccbb68c74 --- /dev/null +++ b/priv/static/emoji/1f31a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f31b.svg b/priv/static/emoji/1f31b.svg new file mode 100644 index 0000000000..3fffcdd504 --- /dev/null +++ b/priv/static/emoji/1f31b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f31c.svg b/priv/static/emoji/1f31c.svg new file mode 100644 index 0000000000..07501e9288 --- /dev/null +++ b/priv/static/emoji/1f31c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f31d.svg b/priv/static/emoji/1f31d.svg new file mode 100644 index 0000000000..4c98969190 --- /dev/null +++ b/priv/static/emoji/1f31d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f31e.svg b/priv/static/emoji/1f31e.svg new file mode 100644 index 0000000000..2da9b1993c --- /dev/null +++ b/priv/static/emoji/1f31e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f31f.svg b/priv/static/emoji/1f31f.svg new file mode 100644 index 0000000000..a4695dd6df --- /dev/null +++ b/priv/static/emoji/1f31f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f320.svg b/priv/static/emoji/1f320.svg new file mode 100644 index 0000000000..295a5a12c5 --- /dev/null +++ b/priv/static/emoji/1f320.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f321.svg b/priv/static/emoji/1f321.svg new file mode 100644 index 0000000000..95a75984e1 --- /dev/null +++ b/priv/static/emoji/1f321.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f324.svg b/priv/static/emoji/1f324.svg new file mode 100644 index 0000000000..8ba8c525d1 --- /dev/null +++ b/priv/static/emoji/1f324.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f325.svg b/priv/static/emoji/1f325.svg new file mode 100644 index 0000000000..1efae1029b --- /dev/null +++ b/priv/static/emoji/1f325.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f326.svg b/priv/static/emoji/1f326.svg new file mode 100644 index 0000000000..3a65ae71d1 --- /dev/null +++ b/priv/static/emoji/1f326.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f327.svg b/priv/static/emoji/1f327.svg new file mode 100644 index 0000000000..99f42f5aa4 --- /dev/null +++ b/priv/static/emoji/1f327.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f328.svg b/priv/static/emoji/1f328.svg new file mode 100644 index 0000000000..f937107a00 --- /dev/null +++ b/priv/static/emoji/1f328.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f329.svg b/priv/static/emoji/1f329.svg new file mode 100644 index 0000000000..0deaddcd5a --- /dev/null +++ b/priv/static/emoji/1f329.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f32a.svg b/priv/static/emoji/1f32a.svg new file mode 100644 index 0000000000..b4620106bc --- /dev/null +++ b/priv/static/emoji/1f32a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f32b.svg b/priv/static/emoji/1f32b.svg new file mode 100644 index 0000000000..fe6e480b6f --- /dev/null +++ b/priv/static/emoji/1f32b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f32c.svg b/priv/static/emoji/1f32c.svg new file mode 100644 index 0000000000..7d55457461 --- /dev/null +++ b/priv/static/emoji/1f32c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f32d.svg b/priv/static/emoji/1f32d.svg new file mode 100644 index 0000000000..a450dbba08 --- /dev/null +++ b/priv/static/emoji/1f32d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f32e.svg b/priv/static/emoji/1f32e.svg new file mode 100644 index 0000000000..5b08f1f7d1 --- /dev/null +++ b/priv/static/emoji/1f32e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f32f.svg b/priv/static/emoji/1f32f.svg new file mode 100644 index 0000000000..c76d82c37e --- /dev/null +++ b/priv/static/emoji/1f32f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f330.svg b/priv/static/emoji/1f330.svg new file mode 100644 index 0000000000..d0e84b5eb2 --- /dev/null +++ b/priv/static/emoji/1f330.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f331.svg b/priv/static/emoji/1f331.svg new file mode 100644 index 0000000000..668d777ffd --- /dev/null +++ b/priv/static/emoji/1f331.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f332.svg b/priv/static/emoji/1f332.svg new file mode 100644 index 0000000000..540f1860cc --- /dev/null +++ b/priv/static/emoji/1f332.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f333.svg b/priv/static/emoji/1f333.svg new file mode 100644 index 0000000000..3937fc499f --- /dev/null +++ b/priv/static/emoji/1f333.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f334.svg b/priv/static/emoji/1f334.svg new file mode 100644 index 0000000000..55d246a2fe --- /dev/null +++ b/priv/static/emoji/1f334.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f335.svg b/priv/static/emoji/1f335.svg new file mode 100644 index 0000000000..097dc13c44 --- /dev/null +++ b/priv/static/emoji/1f335.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f336.svg b/priv/static/emoji/1f336.svg new file mode 100644 index 0000000000..eaeef864dc --- /dev/null +++ b/priv/static/emoji/1f336.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f337.svg b/priv/static/emoji/1f337.svg new file mode 100644 index 0000000000..86a1a36f99 --- /dev/null +++ b/priv/static/emoji/1f337.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f338.svg b/priv/static/emoji/1f338.svg new file mode 100644 index 0000000000..46ba420da8 --- /dev/null +++ b/priv/static/emoji/1f338.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f339.svg b/priv/static/emoji/1f339.svg new file mode 100644 index 0000000000..500d9257ce --- /dev/null +++ b/priv/static/emoji/1f339.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f33a.svg b/priv/static/emoji/1f33a.svg new file mode 100644 index 0000000000..19c2f89602 --- /dev/null +++ b/priv/static/emoji/1f33a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f33b.svg b/priv/static/emoji/1f33b.svg new file mode 100644 index 0000000000..413e6fcbf8 --- /dev/null +++ b/priv/static/emoji/1f33b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f33c.svg b/priv/static/emoji/1f33c.svg new file mode 100644 index 0000000000..4ee1cc0024 --- /dev/null +++ b/priv/static/emoji/1f33c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f33d.svg b/priv/static/emoji/1f33d.svg new file mode 100644 index 0000000000..6c4ae3bf53 --- /dev/null +++ b/priv/static/emoji/1f33d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f33e.svg b/priv/static/emoji/1f33e.svg new file mode 100644 index 0000000000..320f1498ef --- /dev/null +++ b/priv/static/emoji/1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f33f.svg b/priv/static/emoji/1f33f.svg new file mode 100644 index 0000000000..9243e96857 --- /dev/null +++ b/priv/static/emoji/1f33f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f340.svg b/priv/static/emoji/1f340.svg new file mode 100644 index 0000000000..cac00d450b --- /dev/null +++ b/priv/static/emoji/1f340.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f341.svg b/priv/static/emoji/1f341.svg new file mode 100644 index 0000000000..7cd7ad977b --- /dev/null +++ b/priv/static/emoji/1f341.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f342.svg b/priv/static/emoji/1f342.svg new file mode 100644 index 0000000000..1c9072a014 --- /dev/null +++ b/priv/static/emoji/1f342.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f343.svg b/priv/static/emoji/1f343.svg new file mode 100644 index 0000000000..650bfa9810 --- /dev/null +++ b/priv/static/emoji/1f343.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f344.svg b/priv/static/emoji/1f344.svg new file mode 100644 index 0000000000..0cf7a79142 --- /dev/null +++ b/priv/static/emoji/1f344.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f345.svg b/priv/static/emoji/1f345.svg new file mode 100644 index 0000000000..411c2a50e3 --- /dev/null +++ b/priv/static/emoji/1f345.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f346.svg b/priv/static/emoji/1f346.svg new file mode 100644 index 0000000000..14688a6dd5 --- /dev/null +++ b/priv/static/emoji/1f346.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f347.svg b/priv/static/emoji/1f347.svg new file mode 100644 index 0000000000..e52e2f8519 --- /dev/null +++ b/priv/static/emoji/1f347.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f348.svg b/priv/static/emoji/1f348.svg new file mode 100644 index 0000000000..f348273510 --- /dev/null +++ b/priv/static/emoji/1f348.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f349.svg b/priv/static/emoji/1f349.svg new file mode 100644 index 0000000000..0f5ec06a4d --- /dev/null +++ b/priv/static/emoji/1f349.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f34a.svg b/priv/static/emoji/1f34a.svg new file mode 100644 index 0000000000..82c0c52b1d --- /dev/null +++ b/priv/static/emoji/1f34a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f34b.svg b/priv/static/emoji/1f34b.svg new file mode 100644 index 0000000000..ffbdc0886c --- /dev/null +++ b/priv/static/emoji/1f34b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f34c.svg b/priv/static/emoji/1f34c.svg new file mode 100644 index 0000000000..b4120ba34c --- /dev/null +++ b/priv/static/emoji/1f34c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f34d.svg b/priv/static/emoji/1f34d.svg new file mode 100644 index 0000000000..e96999db7a --- /dev/null +++ b/priv/static/emoji/1f34d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f34e.svg b/priv/static/emoji/1f34e.svg new file mode 100644 index 0000000000..2fe9886209 --- /dev/null +++ b/priv/static/emoji/1f34e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f34f.svg b/priv/static/emoji/1f34f.svg new file mode 100644 index 0000000000..1423d8aa8e --- /dev/null +++ b/priv/static/emoji/1f34f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f350.svg b/priv/static/emoji/1f350.svg new file mode 100644 index 0000000000..2888963f45 --- /dev/null +++ b/priv/static/emoji/1f350.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f351.svg b/priv/static/emoji/1f351.svg new file mode 100644 index 0000000000..84e81f5e6e --- /dev/null +++ b/priv/static/emoji/1f351.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f352.svg b/priv/static/emoji/1f352.svg new file mode 100644 index 0000000000..bdba6bd679 --- /dev/null +++ b/priv/static/emoji/1f352.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f353.svg b/priv/static/emoji/1f353.svg new file mode 100644 index 0000000000..26a41ee246 --- /dev/null +++ b/priv/static/emoji/1f353.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f354.svg b/priv/static/emoji/1f354.svg new file mode 100644 index 0000000000..a129dccb3b --- /dev/null +++ b/priv/static/emoji/1f354.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f355.svg b/priv/static/emoji/1f355.svg new file mode 100644 index 0000000000..3a44bba9a0 --- /dev/null +++ b/priv/static/emoji/1f355.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f356.svg b/priv/static/emoji/1f356.svg new file mode 100644 index 0000000000..44fab599d9 --- /dev/null +++ b/priv/static/emoji/1f356.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f357.svg b/priv/static/emoji/1f357.svg new file mode 100644 index 0000000000..77d0b8724e --- /dev/null +++ b/priv/static/emoji/1f357.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f358.svg b/priv/static/emoji/1f358.svg new file mode 100644 index 0000000000..f35a02eafe --- /dev/null +++ b/priv/static/emoji/1f358.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f359.svg b/priv/static/emoji/1f359.svg new file mode 100644 index 0000000000..e508f8f91e --- /dev/null +++ b/priv/static/emoji/1f359.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f35a.svg b/priv/static/emoji/1f35a.svg new file mode 100644 index 0000000000..04019a1c93 --- /dev/null +++ b/priv/static/emoji/1f35a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f35b.svg b/priv/static/emoji/1f35b.svg new file mode 100644 index 0000000000..be3be22613 --- /dev/null +++ b/priv/static/emoji/1f35b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f35c.svg b/priv/static/emoji/1f35c.svg new file mode 100644 index 0000000000..e9fc9700df --- /dev/null +++ b/priv/static/emoji/1f35c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f35d.svg b/priv/static/emoji/1f35d.svg new file mode 100644 index 0000000000..3ae82eb53e --- /dev/null +++ b/priv/static/emoji/1f35d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f35e.svg b/priv/static/emoji/1f35e.svg new file mode 100644 index 0000000000..7d2af4e751 --- /dev/null +++ b/priv/static/emoji/1f35e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f35f.svg b/priv/static/emoji/1f35f.svg new file mode 100644 index 0000000000..faac7ecf1e --- /dev/null +++ b/priv/static/emoji/1f35f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f360.svg b/priv/static/emoji/1f360.svg new file mode 100644 index 0000000000..c2894e3586 --- /dev/null +++ b/priv/static/emoji/1f360.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f361.svg b/priv/static/emoji/1f361.svg new file mode 100644 index 0000000000..e2537d9046 --- /dev/null +++ b/priv/static/emoji/1f361.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f362.svg b/priv/static/emoji/1f362.svg new file mode 100644 index 0000000000..f5f7653af5 --- /dev/null +++ b/priv/static/emoji/1f362.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f363.svg b/priv/static/emoji/1f363.svg new file mode 100644 index 0000000000..eed2b88c97 --- /dev/null +++ b/priv/static/emoji/1f363.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f364.svg b/priv/static/emoji/1f364.svg new file mode 100644 index 0000000000..9130422161 --- /dev/null +++ b/priv/static/emoji/1f364.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f365.svg b/priv/static/emoji/1f365.svg new file mode 100644 index 0000000000..fd448da06e --- /dev/null +++ b/priv/static/emoji/1f365.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f366.svg b/priv/static/emoji/1f366.svg new file mode 100644 index 0000000000..9b869f8cb2 --- /dev/null +++ b/priv/static/emoji/1f366.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f367.svg b/priv/static/emoji/1f367.svg new file mode 100644 index 0000000000..232dd3cf18 --- /dev/null +++ b/priv/static/emoji/1f367.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f368.svg b/priv/static/emoji/1f368.svg new file mode 100644 index 0000000000..187b2f4c9a --- /dev/null +++ b/priv/static/emoji/1f368.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f369.svg b/priv/static/emoji/1f369.svg new file mode 100644 index 0000000000..3c2aa5826e --- /dev/null +++ b/priv/static/emoji/1f369.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f36a.svg b/priv/static/emoji/1f36a.svg new file mode 100644 index 0000000000..d1b604bcd0 --- /dev/null +++ b/priv/static/emoji/1f36a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f36b.svg b/priv/static/emoji/1f36b.svg new file mode 100644 index 0000000000..a993c9b4b7 --- /dev/null +++ b/priv/static/emoji/1f36b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f36c.svg b/priv/static/emoji/1f36c.svg new file mode 100644 index 0000000000..f6fbf3b70b --- /dev/null +++ b/priv/static/emoji/1f36c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f36d.svg b/priv/static/emoji/1f36d.svg new file mode 100644 index 0000000000..e13447edec --- /dev/null +++ b/priv/static/emoji/1f36d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f36e.svg b/priv/static/emoji/1f36e.svg new file mode 100644 index 0000000000..8ec5179256 --- /dev/null +++ b/priv/static/emoji/1f36e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f36f.svg b/priv/static/emoji/1f36f.svg new file mode 100644 index 0000000000..38c4dd5066 --- /dev/null +++ b/priv/static/emoji/1f36f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f370.svg b/priv/static/emoji/1f370.svg new file mode 100644 index 0000000000..c6f2cf478b --- /dev/null +++ b/priv/static/emoji/1f370.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f371.svg b/priv/static/emoji/1f371.svg new file mode 100644 index 0000000000..c4811840cd --- /dev/null +++ b/priv/static/emoji/1f371.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f372.svg b/priv/static/emoji/1f372.svg new file mode 100644 index 0000000000..37f9be89c7 --- /dev/null +++ b/priv/static/emoji/1f372.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f373.svg b/priv/static/emoji/1f373.svg new file mode 100644 index 0000000000..733dc2bae8 --- /dev/null +++ b/priv/static/emoji/1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f374.svg b/priv/static/emoji/1f374.svg new file mode 100644 index 0000000000..e7de6c048e --- /dev/null +++ b/priv/static/emoji/1f374.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f375.svg b/priv/static/emoji/1f375.svg new file mode 100644 index 0000000000..772696393c --- /dev/null +++ b/priv/static/emoji/1f375.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f376.svg b/priv/static/emoji/1f376.svg new file mode 100644 index 0000000000..2bb872e153 --- /dev/null +++ b/priv/static/emoji/1f376.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f377.svg b/priv/static/emoji/1f377.svg new file mode 100644 index 0000000000..b7925317c3 --- /dev/null +++ b/priv/static/emoji/1f377.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f378.svg b/priv/static/emoji/1f378.svg new file mode 100644 index 0000000000..c8bc0ce105 --- /dev/null +++ b/priv/static/emoji/1f378.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f379.svg b/priv/static/emoji/1f379.svg new file mode 100644 index 0000000000..1c4db46361 --- /dev/null +++ b/priv/static/emoji/1f379.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f37a.svg b/priv/static/emoji/1f37a.svg new file mode 100644 index 0000000000..9e6a547bf6 --- /dev/null +++ b/priv/static/emoji/1f37a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f37b.svg b/priv/static/emoji/1f37b.svg new file mode 100644 index 0000000000..a8bcb20c68 --- /dev/null +++ b/priv/static/emoji/1f37b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f37c.svg b/priv/static/emoji/1f37c.svg new file mode 100644 index 0000000000..61f6c8ff24 --- /dev/null +++ b/priv/static/emoji/1f37c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f37d.svg b/priv/static/emoji/1f37d.svg new file mode 100644 index 0000000000..7437a35042 --- /dev/null +++ b/priv/static/emoji/1f37d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f37e.svg b/priv/static/emoji/1f37e.svg new file mode 100644 index 0000000000..a02a17eb7c --- /dev/null +++ b/priv/static/emoji/1f37e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f37f.svg b/priv/static/emoji/1f37f.svg new file mode 100644 index 0000000000..ddbff6d95f --- /dev/null +++ b/priv/static/emoji/1f37f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f380.svg b/priv/static/emoji/1f380.svg new file mode 100644 index 0000000000..03d4a75106 --- /dev/null +++ b/priv/static/emoji/1f380.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f381.svg b/priv/static/emoji/1f381.svg new file mode 100644 index 0000000000..1ab82981c0 --- /dev/null +++ b/priv/static/emoji/1f381.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f382.svg b/priv/static/emoji/1f382.svg new file mode 100644 index 0000000000..35f9a002a9 --- /dev/null +++ b/priv/static/emoji/1f382.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f383.svg b/priv/static/emoji/1f383.svg new file mode 100644 index 0000000000..591fc66a43 --- /dev/null +++ b/priv/static/emoji/1f383.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f384.svg b/priv/static/emoji/1f384.svg new file mode 100644 index 0000000000..6e9b11e279 --- /dev/null +++ b/priv/static/emoji/1f384.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f385-1f3fb.svg b/priv/static/emoji/1f385-1f3fb.svg new file mode 100644 index 0000000000..ef5c615311 --- /dev/null +++ b/priv/static/emoji/1f385-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f385-1f3fc.svg b/priv/static/emoji/1f385-1f3fc.svg new file mode 100644 index 0000000000..5adcdf4eb5 --- /dev/null +++ b/priv/static/emoji/1f385-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f385-1f3fd.svg b/priv/static/emoji/1f385-1f3fd.svg new file mode 100644 index 0000000000..0a56a8b1c6 --- /dev/null +++ b/priv/static/emoji/1f385-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f385-1f3fe.svg b/priv/static/emoji/1f385-1f3fe.svg new file mode 100644 index 0000000000..16b3b33ec3 --- /dev/null +++ b/priv/static/emoji/1f385-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f385-1f3ff.svg b/priv/static/emoji/1f385-1f3ff.svg new file mode 100644 index 0000000000..4923cbf40b --- /dev/null +++ b/priv/static/emoji/1f385-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f385.svg b/priv/static/emoji/1f385.svg new file mode 100644 index 0000000000..9c61da6c0f --- /dev/null +++ b/priv/static/emoji/1f385.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f386.svg b/priv/static/emoji/1f386.svg new file mode 100644 index 0000000000..54a4f3214d --- /dev/null +++ b/priv/static/emoji/1f386.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f387.svg b/priv/static/emoji/1f387.svg new file mode 100644 index 0000000000..68cfb644fb --- /dev/null +++ b/priv/static/emoji/1f387.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f388.svg b/priv/static/emoji/1f388.svg new file mode 100644 index 0000000000..6d431bc856 --- /dev/null +++ b/priv/static/emoji/1f388.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f389.svg b/priv/static/emoji/1f389.svg new file mode 100644 index 0000000000..a4b8305af6 --- /dev/null +++ b/priv/static/emoji/1f389.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f38a.svg b/priv/static/emoji/1f38a.svg new file mode 100644 index 0000000000..e709775f1f --- /dev/null +++ b/priv/static/emoji/1f38a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f38b.svg b/priv/static/emoji/1f38b.svg new file mode 100644 index 0000000000..063638074c --- /dev/null +++ b/priv/static/emoji/1f38b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f38c.svg b/priv/static/emoji/1f38c.svg new file mode 100644 index 0000000000..a0dd35069a --- /dev/null +++ b/priv/static/emoji/1f38c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f38d.svg b/priv/static/emoji/1f38d.svg new file mode 100644 index 0000000000..a774540b40 --- /dev/null +++ b/priv/static/emoji/1f38d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f38e.svg b/priv/static/emoji/1f38e.svg new file mode 100644 index 0000000000..56b4b80ac3 --- /dev/null +++ b/priv/static/emoji/1f38e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f38f.svg b/priv/static/emoji/1f38f.svg new file mode 100644 index 0000000000..5457d1e8d5 --- /dev/null +++ b/priv/static/emoji/1f38f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f390.svg b/priv/static/emoji/1f390.svg new file mode 100644 index 0000000000..9aebc7979c --- /dev/null +++ b/priv/static/emoji/1f390.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f391.svg b/priv/static/emoji/1f391.svg new file mode 100644 index 0000000000..37c3a7e1aa --- /dev/null +++ b/priv/static/emoji/1f391.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f392.svg b/priv/static/emoji/1f392.svg new file mode 100644 index 0000000000..f44d568064 --- /dev/null +++ b/priv/static/emoji/1f392.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f393.svg b/priv/static/emoji/1f393.svg new file mode 100644 index 0000000000..dcf38931c1 --- /dev/null +++ b/priv/static/emoji/1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f396.svg b/priv/static/emoji/1f396.svg new file mode 100644 index 0000000000..b5c22696e1 --- /dev/null +++ b/priv/static/emoji/1f396.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f397.svg b/priv/static/emoji/1f397.svg new file mode 100644 index 0000000000..1f419d4513 --- /dev/null +++ b/priv/static/emoji/1f397.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f399.svg b/priv/static/emoji/1f399.svg new file mode 100644 index 0000000000..07881e4aab --- /dev/null +++ b/priv/static/emoji/1f399.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f39a.svg b/priv/static/emoji/1f39a.svg new file mode 100644 index 0000000000..7071931fc9 --- /dev/null +++ b/priv/static/emoji/1f39a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f39b.svg b/priv/static/emoji/1f39b.svg new file mode 100644 index 0000000000..9d355c4a9c --- /dev/null +++ b/priv/static/emoji/1f39b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f39e.svg b/priv/static/emoji/1f39e.svg new file mode 100644 index 0000000000..01f9311282 --- /dev/null +++ b/priv/static/emoji/1f39e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f39f.svg b/priv/static/emoji/1f39f.svg new file mode 100644 index 0000000000..984f270649 --- /dev/null +++ b/priv/static/emoji/1f39f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a0.svg b/priv/static/emoji/1f3a0.svg new file mode 100644 index 0000000000..35c75b6970 --- /dev/null +++ b/priv/static/emoji/1f3a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a1.svg b/priv/static/emoji/1f3a1.svg new file mode 100644 index 0000000000..c35744ab8c --- /dev/null +++ b/priv/static/emoji/1f3a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a2.svg b/priv/static/emoji/1f3a2.svg new file mode 100644 index 0000000000..b1e64ec0e1 --- /dev/null +++ b/priv/static/emoji/1f3a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a3.svg b/priv/static/emoji/1f3a3.svg new file mode 100644 index 0000000000..1a1df4f9d9 --- /dev/null +++ b/priv/static/emoji/1f3a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a4.svg b/priv/static/emoji/1f3a4.svg new file mode 100644 index 0000000000..e261334752 --- /dev/null +++ b/priv/static/emoji/1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a5.svg b/priv/static/emoji/1f3a5.svg new file mode 100644 index 0000000000..d6c68e0d7f --- /dev/null +++ b/priv/static/emoji/1f3a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a6.svg b/priv/static/emoji/1f3a6.svg new file mode 100644 index 0000000000..04ba5e33d6 --- /dev/null +++ b/priv/static/emoji/1f3a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a7.svg b/priv/static/emoji/1f3a7.svg new file mode 100644 index 0000000000..3a9df15ae3 --- /dev/null +++ b/priv/static/emoji/1f3a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a8.svg b/priv/static/emoji/1f3a8.svg new file mode 100644 index 0000000000..3bfdea0c95 --- /dev/null +++ b/priv/static/emoji/1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3a9.svg b/priv/static/emoji/1f3a9.svg new file mode 100644 index 0000000000..1017cef3a2 --- /dev/null +++ b/priv/static/emoji/1f3a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3aa.svg b/priv/static/emoji/1f3aa.svg new file mode 100644 index 0000000000..fec7dd2eca --- /dev/null +++ b/priv/static/emoji/1f3aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ab.svg b/priv/static/emoji/1f3ab.svg new file mode 100644 index 0000000000..cd234010b4 --- /dev/null +++ b/priv/static/emoji/1f3ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ac.svg b/priv/static/emoji/1f3ac.svg new file mode 100644 index 0000000000..3a32676611 --- /dev/null +++ b/priv/static/emoji/1f3ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ad.svg b/priv/static/emoji/1f3ad.svg new file mode 100644 index 0000000000..c8c9901267 --- /dev/null +++ b/priv/static/emoji/1f3ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ae.svg b/priv/static/emoji/1f3ae.svg new file mode 100644 index 0000000000..4ec08ae49a --- /dev/null +++ b/priv/static/emoji/1f3ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3af.svg b/priv/static/emoji/1f3af.svg new file mode 100644 index 0000000000..9562c6c39c --- /dev/null +++ b/priv/static/emoji/1f3af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b0.svg b/priv/static/emoji/1f3b0.svg new file mode 100644 index 0000000000..789fd08d1b --- /dev/null +++ b/priv/static/emoji/1f3b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b1.svg b/priv/static/emoji/1f3b1.svg new file mode 100644 index 0000000000..28abf33e13 --- /dev/null +++ b/priv/static/emoji/1f3b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b2.svg b/priv/static/emoji/1f3b2.svg new file mode 100644 index 0000000000..408f2f9206 --- /dev/null +++ b/priv/static/emoji/1f3b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b3.svg b/priv/static/emoji/1f3b3.svg new file mode 100644 index 0000000000..9227f288c9 --- /dev/null +++ b/priv/static/emoji/1f3b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b4.svg b/priv/static/emoji/1f3b4.svg new file mode 100644 index 0000000000..33d3e0f5b9 --- /dev/null +++ b/priv/static/emoji/1f3b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b5.svg b/priv/static/emoji/1f3b5.svg new file mode 100644 index 0000000000..c9286d2bff --- /dev/null +++ b/priv/static/emoji/1f3b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b6.svg b/priv/static/emoji/1f3b6.svg new file mode 100644 index 0000000000..f13b3b8bfb --- /dev/null +++ b/priv/static/emoji/1f3b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b7.svg b/priv/static/emoji/1f3b7.svg new file mode 100644 index 0000000000..ed0f849e0d --- /dev/null +++ b/priv/static/emoji/1f3b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b8.svg b/priv/static/emoji/1f3b8.svg new file mode 100644 index 0000000000..22074a11f3 --- /dev/null +++ b/priv/static/emoji/1f3b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3b9.svg b/priv/static/emoji/1f3b9.svg new file mode 100644 index 0000000000..6ce8afd98b --- /dev/null +++ b/priv/static/emoji/1f3b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ba.svg b/priv/static/emoji/1f3ba.svg new file mode 100644 index 0000000000..454ab7818a --- /dev/null +++ b/priv/static/emoji/1f3ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3bb.svg b/priv/static/emoji/1f3bb.svg new file mode 100644 index 0000000000..efb7d5da7e --- /dev/null +++ b/priv/static/emoji/1f3bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3bc.svg b/priv/static/emoji/1f3bc.svg new file mode 100644 index 0000000000..5628fcacf2 --- /dev/null +++ b/priv/static/emoji/1f3bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3bd.svg b/priv/static/emoji/1f3bd.svg new file mode 100644 index 0000000000..8410aee4e6 --- /dev/null +++ b/priv/static/emoji/1f3bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3be.svg b/priv/static/emoji/1f3be.svg new file mode 100644 index 0000000000..323e5c462e --- /dev/null +++ b/priv/static/emoji/1f3be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3bf.svg b/priv/static/emoji/1f3bf.svg new file mode 100644 index 0000000000..a117c93827 --- /dev/null +++ b/priv/static/emoji/1f3bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c0.svg b/priv/static/emoji/1f3c0.svg new file mode 100644 index 0000000000..24693956f6 --- /dev/null +++ b/priv/static/emoji/1f3c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c1.svg b/priv/static/emoji/1f3c1.svg new file mode 100644 index 0000000000..695f0ef331 --- /dev/null +++ b/priv/static/emoji/1f3c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c2-1f3fb.svg b/priv/static/emoji/1f3c2-1f3fb.svg new file mode 100644 index 0000000000..627fa068de --- /dev/null +++ b/priv/static/emoji/1f3c2-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c2-1f3fc.svg b/priv/static/emoji/1f3c2-1f3fc.svg new file mode 100644 index 0000000000..c0090e1606 --- /dev/null +++ b/priv/static/emoji/1f3c2-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c2-1f3fd.svg b/priv/static/emoji/1f3c2-1f3fd.svg new file mode 100644 index 0000000000..e71263c97f --- /dev/null +++ b/priv/static/emoji/1f3c2-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c2-1f3fe.svg b/priv/static/emoji/1f3c2-1f3fe.svg new file mode 100644 index 0000000000..aa7ab8fab3 --- /dev/null +++ b/priv/static/emoji/1f3c2-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c2-1f3ff.svg b/priv/static/emoji/1f3c2-1f3ff.svg new file mode 100644 index 0000000000..9f66b45fe4 --- /dev/null +++ b/priv/static/emoji/1f3c2-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c2.svg b/priv/static/emoji/1f3c2.svg new file mode 100644 index 0000000000..bff2c08414 --- /dev/null +++ b/priv/static/emoji/1f3c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..9c559abd54 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..604a0024c2 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fb.svg b/priv/static/emoji/1f3c3-1f3fb.svg new file mode 100644 index 0000000000..604a0024c2 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..2639daf5ca --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..f93e9dbfc3 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fc.svg b/priv/static/emoji/1f3c3-1f3fc.svg new file mode 100644 index 0000000000..f93e9dbfc3 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..f2677ee961 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..847b7f6e00 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fd.svg b/priv/static/emoji/1f3c3-1f3fd.svg new file mode 100644 index 0000000000..847b7f6e00 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..175349d180 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..51db6d67ae --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3fe.svg b/priv/static/emoji/1f3c3-1f3fe.svg new file mode 100644 index 0000000000..51db6d67ae --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..b19ab88119 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..8188977725 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-1f3ff.svg b/priv/static/emoji/1f3c3-1f3ff.svg new file mode 100644 index 0000000000..8188977725 --- /dev/null +++ b/priv/static/emoji/1f3c3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-200d-2640-fe0f.svg b/priv/static/emoji/1f3c3-200d-2640-fe0f.svg new file mode 100644 index 0000000000..9acdb7a732 --- /dev/null +++ b/priv/static/emoji/1f3c3-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3-200d-2642-fe0f.svg b/priv/static/emoji/1f3c3-200d-2642-fe0f.svg new file mode 100644 index 0000000000..42bc601099 --- /dev/null +++ b/priv/static/emoji/1f3c3-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c3.svg b/priv/static/emoji/1f3c3.svg new file mode 100644 index 0000000000..42bc601099 --- /dev/null +++ b/priv/static/emoji/1f3c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..c5f3081935 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e396618ff6 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fb.svg b/priv/static/emoji/1f3c4-1f3fb.svg new file mode 100644 index 0000000000..e396618ff6 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..2fcf3c6036 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..228af26f8e --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fc.svg b/priv/static/emoji/1f3c4-1f3fc.svg new file mode 100644 index 0000000000..228af26f8e --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..0d57555495 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..521b554b69 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fd.svg b/priv/static/emoji/1f3c4-1f3fd.svg new file mode 100644 index 0000000000..521b554b69 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..6372f70a13 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..147c45aea9 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3fe.svg b/priv/static/emoji/1f3c4-1f3fe.svg new file mode 100644 index 0000000000..147c45aea9 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8cb8ad8f93 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..0e0ef2e9a2 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-1f3ff.svg b/priv/static/emoji/1f3c4-1f3ff.svg new file mode 100644 index 0000000000..0e0ef2e9a2 --- /dev/null +++ b/priv/static/emoji/1f3c4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-200d-2640-fe0f.svg b/priv/static/emoji/1f3c4-200d-2640-fe0f.svg new file mode 100644 index 0000000000..c33ecc72f8 --- /dev/null +++ b/priv/static/emoji/1f3c4-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4-200d-2642-fe0f.svg b/priv/static/emoji/1f3c4-200d-2642-fe0f.svg new file mode 100644 index 0000000000..6da42a5c0f --- /dev/null +++ b/priv/static/emoji/1f3c4-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c4.svg b/priv/static/emoji/1f3c4.svg new file mode 100644 index 0000000000..6da42a5c0f --- /dev/null +++ b/priv/static/emoji/1f3c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c5.svg b/priv/static/emoji/1f3c5.svg new file mode 100644 index 0000000000..a576ba8b9c --- /dev/null +++ b/priv/static/emoji/1f3c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c6.svg b/priv/static/emoji/1f3c6.svg new file mode 100644 index 0000000000..00457c31ea --- /dev/null +++ b/priv/static/emoji/1f3c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c7-1f3fb.svg b/priv/static/emoji/1f3c7-1f3fb.svg new file mode 100644 index 0000000000..a48a00b143 --- /dev/null +++ b/priv/static/emoji/1f3c7-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c7-1f3fc.svg b/priv/static/emoji/1f3c7-1f3fc.svg new file mode 100644 index 0000000000..f80fc32366 --- /dev/null +++ b/priv/static/emoji/1f3c7-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c7-1f3fd.svg b/priv/static/emoji/1f3c7-1f3fd.svg new file mode 100644 index 0000000000..0baedbc935 --- /dev/null +++ b/priv/static/emoji/1f3c7-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c7-1f3fe.svg b/priv/static/emoji/1f3c7-1f3fe.svg new file mode 100644 index 0000000000..ef50b0b123 --- /dev/null +++ b/priv/static/emoji/1f3c7-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c7-1f3ff.svg b/priv/static/emoji/1f3c7-1f3ff.svg new file mode 100644 index 0000000000..ba0de65545 --- /dev/null +++ b/priv/static/emoji/1f3c7-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c7.svg b/priv/static/emoji/1f3c7.svg new file mode 100644 index 0000000000..e4cf152318 --- /dev/null +++ b/priv/static/emoji/1f3c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c8.svg b/priv/static/emoji/1f3c8.svg new file mode 100644 index 0000000000..4f5530d290 --- /dev/null +++ b/priv/static/emoji/1f3c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3c9.svg b/priv/static/emoji/1f3c9.svg new file mode 100644 index 0000000000..5e12c43c77 --- /dev/null +++ b/priv/static/emoji/1f3c9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f3ca-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..6ce5dcdb41 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f3ca-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..b3e3455311 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fb.svg b/priv/static/emoji/1f3ca-1f3fb.svg new file mode 100644 index 0000000000..b3e3455311 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f3ca-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..a2457fc7db --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f3ca-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..86eda18505 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fc.svg b/priv/static/emoji/1f3ca-1f3fc.svg new file mode 100644 index 0000000000..86eda18505 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f3ca-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8704f5b58d --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f3ca-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..bf94422026 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fd.svg b/priv/static/emoji/1f3ca-1f3fd.svg new file mode 100644 index 0000000000..bf94422026 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f3ca-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..4ee3a44d67 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f3ca-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e320765ae7 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3fe.svg b/priv/static/emoji/1f3ca-1f3fe.svg new file mode 100644 index 0000000000..e320765ae7 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f3ca-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..11f4beab11 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f3ca-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..a25741c208 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-1f3ff.svg b/priv/static/emoji/1f3ca-1f3ff.svg new file mode 100644 index 0000000000..a25741c208 --- /dev/null +++ b/priv/static/emoji/1f3ca-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-200d-2640-fe0f.svg b/priv/static/emoji/1f3ca-200d-2640-fe0f.svg new file mode 100644 index 0000000000..dfc2cb61cf --- /dev/null +++ b/priv/static/emoji/1f3ca-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca-200d-2642-fe0f.svg b/priv/static/emoji/1f3ca-200d-2642-fe0f.svg new file mode 100644 index 0000000000..12bad0643e --- /dev/null +++ b/priv/static/emoji/1f3ca-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ca.svg b/priv/static/emoji/1f3ca.svg new file mode 100644 index 0000000000..12bad0643e --- /dev/null +++ b/priv/static/emoji/1f3ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..de38be1859 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1caeeb8f27 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fb.svg b/priv/static/emoji/1f3cb-1f3fb.svg new file mode 100644 index 0000000000..1caeeb8f27 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..03f2935791 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..44953ab18e --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fc.svg b/priv/static/emoji/1f3cb-1f3fc.svg new file mode 100644 index 0000000000..44953ab18e --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..00f68eedac --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..5401c2f650 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fd.svg b/priv/static/emoji/1f3cb-1f3fd.svg new file mode 100644 index 0000000000..5401c2f650 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..34e859a137 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..b5f19bf25c --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3fe.svg b/priv/static/emoji/1f3cb-1f3fe.svg new file mode 100644 index 0000000000..b5f19bf25c --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..117b92a7f7 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..2cf83c4796 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-1f3ff.svg b/priv/static/emoji/1f3cb-1f3ff.svg new file mode 100644 index 0000000000..2cf83c4796 --- /dev/null +++ b/priv/static/emoji/1f3cb-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-fe0f-200d-2640-fe0f.svg b/priv/static/emoji/1f3cb-fe0f-200d-2640-fe0f.svg new file mode 100644 index 0000000000..1e2ac7f894 --- /dev/null +++ b/priv/static/emoji/1f3cb-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb-fe0f-200d-2642-fe0f.svg b/priv/static/emoji/1f3cb-fe0f-200d-2642-fe0f.svg new file mode 100644 index 0000000000..f9bbcc92c6 --- /dev/null +++ b/priv/static/emoji/1f3cb-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cb.svg b/priv/static/emoji/1f3cb.svg new file mode 100644 index 0000000000..f9bbcc92c6 --- /dev/null +++ b/priv/static/emoji/1f3cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f3cc-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..781baf6318 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f3cc-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..f478ef1366 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fb.svg b/priv/static/emoji/1f3cc-1f3fb.svg new file mode 100644 index 0000000000..f478ef1366 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f3cc-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..61462b9983 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f3cc-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..59373fd1f3 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fc.svg b/priv/static/emoji/1f3cc-1f3fc.svg new file mode 100644 index 0000000000..59373fd1f3 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f3cc-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..353c5c2e6a --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f3cc-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..6e67562b6c --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fd.svg b/priv/static/emoji/1f3cc-1f3fd.svg new file mode 100644 index 0000000000..6e67562b6c --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f3cc-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..9a9a856e1d --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f3cc-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..24031bbf76 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3fe.svg b/priv/static/emoji/1f3cc-1f3fe.svg new file mode 100644 index 0000000000..24031bbf76 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f3cc-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..13af83999d --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f3cc-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..6c8ed88f33 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-1f3ff.svg b/priv/static/emoji/1f3cc-1f3ff.svg new file mode 100644 index 0000000000..6c8ed88f33 --- /dev/null +++ b/priv/static/emoji/1f3cc-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-fe0f-200d-2640-fe0f.svg b/priv/static/emoji/1f3cc-fe0f-200d-2640-fe0f.svg new file mode 100644 index 0000000000..859d12f5bc --- /dev/null +++ b/priv/static/emoji/1f3cc-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc-fe0f-200d-2642-fe0f.svg b/priv/static/emoji/1f3cc-fe0f-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1381d6d3cf --- /dev/null +++ b/priv/static/emoji/1f3cc-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cc.svg b/priv/static/emoji/1f3cc.svg new file mode 100644 index 0000000000..1381d6d3cf --- /dev/null +++ b/priv/static/emoji/1f3cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cd.svg b/priv/static/emoji/1f3cd.svg new file mode 100644 index 0000000000..c51ccc3472 --- /dev/null +++ b/priv/static/emoji/1f3cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ce.svg b/priv/static/emoji/1f3ce.svg new file mode 100644 index 0000000000..3f42716697 --- /dev/null +++ b/priv/static/emoji/1f3ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3cf.svg b/priv/static/emoji/1f3cf.svg new file mode 100644 index 0000000000..140db58e4e --- /dev/null +++ b/priv/static/emoji/1f3cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d0.svg b/priv/static/emoji/1f3d0.svg new file mode 100644 index 0000000000..b23cfc3a9e --- /dev/null +++ b/priv/static/emoji/1f3d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d1.svg b/priv/static/emoji/1f3d1.svg new file mode 100644 index 0000000000..c367cef2d4 --- /dev/null +++ b/priv/static/emoji/1f3d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d2.svg b/priv/static/emoji/1f3d2.svg new file mode 100644 index 0000000000..382c629150 --- /dev/null +++ b/priv/static/emoji/1f3d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d3.svg b/priv/static/emoji/1f3d3.svg new file mode 100644 index 0000000000..6201ef5ae2 --- /dev/null +++ b/priv/static/emoji/1f3d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d4.svg b/priv/static/emoji/1f3d4.svg new file mode 100644 index 0000000000..8b78f31e4c --- /dev/null +++ b/priv/static/emoji/1f3d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d5.svg b/priv/static/emoji/1f3d5.svg new file mode 100644 index 0000000000..7a2fb80edd --- /dev/null +++ b/priv/static/emoji/1f3d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d6.svg b/priv/static/emoji/1f3d6.svg new file mode 100644 index 0000000000..9428f90f9c --- /dev/null +++ b/priv/static/emoji/1f3d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d7.svg b/priv/static/emoji/1f3d7.svg new file mode 100644 index 0000000000..e77a170b55 --- /dev/null +++ b/priv/static/emoji/1f3d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d8.svg b/priv/static/emoji/1f3d8.svg new file mode 100644 index 0000000000..483f1ade5c --- /dev/null +++ b/priv/static/emoji/1f3d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3d9.svg b/priv/static/emoji/1f3d9.svg new file mode 100644 index 0000000000..b379d80edb --- /dev/null +++ b/priv/static/emoji/1f3d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3da.svg b/priv/static/emoji/1f3da.svg new file mode 100644 index 0000000000..5c5ade6bac --- /dev/null +++ b/priv/static/emoji/1f3da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3db.svg b/priv/static/emoji/1f3db.svg new file mode 100644 index 0000000000..bdd0d45f46 --- /dev/null +++ b/priv/static/emoji/1f3db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3dc.svg b/priv/static/emoji/1f3dc.svg new file mode 100644 index 0000000000..99baa8d001 --- /dev/null +++ b/priv/static/emoji/1f3dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3dd.svg b/priv/static/emoji/1f3dd.svg new file mode 100644 index 0000000000..d66d8d477b --- /dev/null +++ b/priv/static/emoji/1f3dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3de.svg b/priv/static/emoji/1f3de.svg new file mode 100644 index 0000000000..940483bd33 --- /dev/null +++ b/priv/static/emoji/1f3de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3df.svg b/priv/static/emoji/1f3df.svg new file mode 100644 index 0000000000..248c6d9e9b --- /dev/null +++ b/priv/static/emoji/1f3df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e0.svg b/priv/static/emoji/1f3e0.svg new file mode 100644 index 0000000000..0692739d5a --- /dev/null +++ b/priv/static/emoji/1f3e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e1.svg b/priv/static/emoji/1f3e1.svg new file mode 100644 index 0000000000..b44b7288b1 --- /dev/null +++ b/priv/static/emoji/1f3e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e2.svg b/priv/static/emoji/1f3e2.svg new file mode 100644 index 0000000000..8d06ecd203 --- /dev/null +++ b/priv/static/emoji/1f3e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e3.svg b/priv/static/emoji/1f3e3.svg new file mode 100644 index 0000000000..132ba410d8 --- /dev/null +++ b/priv/static/emoji/1f3e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e4.svg b/priv/static/emoji/1f3e4.svg new file mode 100644 index 0000000000..7ac74e406d --- /dev/null +++ b/priv/static/emoji/1f3e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e5.svg b/priv/static/emoji/1f3e5.svg new file mode 100644 index 0000000000..0b2748a523 --- /dev/null +++ b/priv/static/emoji/1f3e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e6.svg b/priv/static/emoji/1f3e6.svg new file mode 100644 index 0000000000..2fd3fb0770 --- /dev/null +++ b/priv/static/emoji/1f3e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e7.svg b/priv/static/emoji/1f3e7.svg new file mode 100644 index 0000000000..e4c0000bbc --- /dev/null +++ b/priv/static/emoji/1f3e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e8.svg b/priv/static/emoji/1f3e8.svg new file mode 100644 index 0000000000..2d67b9a9c9 --- /dev/null +++ b/priv/static/emoji/1f3e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3e9.svg b/priv/static/emoji/1f3e9.svg new file mode 100644 index 0000000000..9da5e448f1 --- /dev/null +++ b/priv/static/emoji/1f3e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ea.svg b/priv/static/emoji/1f3ea.svg new file mode 100644 index 0000000000..87f3f963e7 --- /dev/null +++ b/priv/static/emoji/1f3ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3eb.svg b/priv/static/emoji/1f3eb.svg new file mode 100644 index 0000000000..8be9e962a3 --- /dev/null +++ b/priv/static/emoji/1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ec.svg b/priv/static/emoji/1f3ec.svg new file mode 100644 index 0000000000..c30d022ed3 --- /dev/null +++ b/priv/static/emoji/1f3ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ed.svg b/priv/static/emoji/1f3ed.svg new file mode 100644 index 0000000000..04ee16260b --- /dev/null +++ b/priv/static/emoji/1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ee.svg b/priv/static/emoji/1f3ee.svg new file mode 100644 index 0000000000..a825f2b79b --- /dev/null +++ b/priv/static/emoji/1f3ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ef.svg b/priv/static/emoji/1f3ef.svg new file mode 100644 index 0000000000..21683997e4 --- /dev/null +++ b/priv/static/emoji/1f3ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f0.svg b/priv/static/emoji/1f3f0.svg new file mode 100644 index 0000000000..b4e3d19fed --- /dev/null +++ b/priv/static/emoji/1f3f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f3-fe0f-200d-1f308.svg b/priv/static/emoji/1f3f3-fe0f-200d-1f308.svg new file mode 100644 index 0000000000..1969e49712 --- /dev/null +++ b/priv/static/emoji/1f3f3-fe0f-200d-1f308.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f3-fe0f-200d-26a7-fe0f.svg b/priv/static/emoji/1f3f3-fe0f-200d-26a7-fe0f.svg new file mode 100644 index 0000000000..f9fc064c0c --- /dev/null +++ b/priv/static/emoji/1f3f3-fe0f-200d-26a7-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f3.svg b/priv/static/emoji/1f3f3.svg new file mode 100644 index 0000000000..2f21575d3a --- /dev/null +++ b/priv/static/emoji/1f3f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f4-200d-2620-fe0f.svg b/priv/static/emoji/1f3f4-200d-2620-fe0f.svg new file mode 100644 index 0000000000..ae0d531a1a --- /dev/null +++ b/priv/static/emoji/1f3f4-200d-2620-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg b/priv/static/emoji/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg new file mode 100644 index 0000000000..fa209567d8 --- /dev/null +++ b/priv/static/emoji/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg b/priv/static/emoji/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg new file mode 100644 index 0000000000..bfb8b48503 --- /dev/null +++ b/priv/static/emoji/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg b/priv/static/emoji/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg new file mode 100644 index 0000000000..a8326768a1 --- /dev/null +++ b/priv/static/emoji/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f4.svg b/priv/static/emoji/1f3f4.svg new file mode 100644 index 0000000000..819ff64afa --- /dev/null +++ b/priv/static/emoji/1f3f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f5.svg b/priv/static/emoji/1f3f5.svg new file mode 100644 index 0000000000..dfaa718676 --- /dev/null +++ b/priv/static/emoji/1f3f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f7.svg b/priv/static/emoji/1f3f7.svg new file mode 100644 index 0000000000..60462664eb --- /dev/null +++ b/priv/static/emoji/1f3f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f8.svg b/priv/static/emoji/1f3f8.svg new file mode 100644 index 0000000000..143f8eaedb --- /dev/null +++ b/priv/static/emoji/1f3f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3f9.svg b/priv/static/emoji/1f3f9.svg new file mode 100644 index 0000000000..37922127ee --- /dev/null +++ b/priv/static/emoji/1f3f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3fa.svg b/priv/static/emoji/1f3fa.svg new file mode 100644 index 0000000000..4c6b4d8f72 --- /dev/null +++ b/priv/static/emoji/1f3fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3fb.svg b/priv/static/emoji/1f3fb.svg new file mode 100644 index 0000000000..e1ac3e942a --- /dev/null +++ b/priv/static/emoji/1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3fc.svg b/priv/static/emoji/1f3fc.svg new file mode 100644 index 0000000000..33c58c9c51 --- /dev/null +++ b/priv/static/emoji/1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3fd.svg b/priv/static/emoji/1f3fd.svg new file mode 100644 index 0000000000..cb3c24e758 --- /dev/null +++ b/priv/static/emoji/1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3fe.svg b/priv/static/emoji/1f3fe.svg new file mode 100644 index 0000000000..7f34e609cf --- /dev/null +++ b/priv/static/emoji/1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f3ff.svg b/priv/static/emoji/1f3ff.svg new file mode 100644 index 0000000000..64142d3e72 --- /dev/null +++ b/priv/static/emoji/1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f400.svg b/priv/static/emoji/1f400.svg new file mode 100644 index 0000000000..d0a03a2cfe --- /dev/null +++ b/priv/static/emoji/1f400.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f401.svg b/priv/static/emoji/1f401.svg new file mode 100644 index 0000000000..365ab788ff --- /dev/null +++ b/priv/static/emoji/1f401.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f402.svg b/priv/static/emoji/1f402.svg new file mode 100644 index 0000000000..378164c307 --- /dev/null +++ b/priv/static/emoji/1f402.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f403.svg b/priv/static/emoji/1f403.svg new file mode 100644 index 0000000000..33d0009fe2 --- /dev/null +++ b/priv/static/emoji/1f403.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f404.svg b/priv/static/emoji/1f404.svg new file mode 100644 index 0000000000..4c791dcc62 --- /dev/null +++ b/priv/static/emoji/1f404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f405.svg b/priv/static/emoji/1f405.svg new file mode 100644 index 0000000000..c74ecf6f51 --- /dev/null +++ b/priv/static/emoji/1f405.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f406.svg b/priv/static/emoji/1f406.svg new file mode 100644 index 0000000000..4eaef0999c --- /dev/null +++ b/priv/static/emoji/1f406.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f407.svg b/priv/static/emoji/1f407.svg new file mode 100644 index 0000000000..71be12240d --- /dev/null +++ b/priv/static/emoji/1f407.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f408.svg b/priv/static/emoji/1f408.svg new file mode 100644 index 0000000000..edb55b1f67 --- /dev/null +++ b/priv/static/emoji/1f408.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f409.svg b/priv/static/emoji/1f409.svg new file mode 100644 index 0000000000..14e1765516 --- /dev/null +++ b/priv/static/emoji/1f409.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f40a.svg b/priv/static/emoji/1f40a.svg new file mode 100644 index 0000000000..a9a6debcc4 --- /dev/null +++ b/priv/static/emoji/1f40a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f40b.svg b/priv/static/emoji/1f40b.svg new file mode 100644 index 0000000000..8bf0a53874 --- /dev/null +++ b/priv/static/emoji/1f40b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f40c.svg b/priv/static/emoji/1f40c.svg new file mode 100644 index 0000000000..2c63658289 --- /dev/null +++ b/priv/static/emoji/1f40c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f40d.svg b/priv/static/emoji/1f40d.svg new file mode 100644 index 0000000000..17531783ba --- /dev/null +++ b/priv/static/emoji/1f40d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f40e.svg b/priv/static/emoji/1f40e.svg new file mode 100644 index 0000000000..1cd00b59da --- /dev/null +++ b/priv/static/emoji/1f40e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f40f.svg b/priv/static/emoji/1f40f.svg new file mode 100644 index 0000000000..f0ba99efeb --- /dev/null +++ b/priv/static/emoji/1f40f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f410.svg b/priv/static/emoji/1f410.svg new file mode 100644 index 0000000000..83d3e56a65 --- /dev/null +++ b/priv/static/emoji/1f410.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f411.svg b/priv/static/emoji/1f411.svg new file mode 100644 index 0000000000..891e670278 --- /dev/null +++ b/priv/static/emoji/1f411.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f412.svg b/priv/static/emoji/1f412.svg new file mode 100644 index 0000000000..6ffccee47b --- /dev/null +++ b/priv/static/emoji/1f412.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f413.svg b/priv/static/emoji/1f413.svg new file mode 100644 index 0000000000..29a4abe889 --- /dev/null +++ b/priv/static/emoji/1f413.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f414.svg b/priv/static/emoji/1f414.svg new file mode 100644 index 0000000000..b08f7a2b02 --- /dev/null +++ b/priv/static/emoji/1f414.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f415-200d-1f9ba.svg b/priv/static/emoji/1f415-200d-1f9ba.svg new file mode 100644 index 0000000000..0ba7fb30ea --- /dev/null +++ b/priv/static/emoji/1f415-200d-1f9ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f415.svg b/priv/static/emoji/1f415.svg new file mode 100644 index 0000000000..c959deb9d1 --- /dev/null +++ b/priv/static/emoji/1f415.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f416.svg b/priv/static/emoji/1f416.svg new file mode 100644 index 0000000000..9a71ef8417 --- /dev/null +++ b/priv/static/emoji/1f416.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f417.svg b/priv/static/emoji/1f417.svg new file mode 100644 index 0000000000..ad7a77db82 --- /dev/null +++ b/priv/static/emoji/1f417.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f418.svg b/priv/static/emoji/1f418.svg new file mode 100644 index 0000000000..fb9656cd18 --- /dev/null +++ b/priv/static/emoji/1f418.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f419.svg b/priv/static/emoji/1f419.svg new file mode 100644 index 0000000000..d915a8fd2e --- /dev/null +++ b/priv/static/emoji/1f419.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f41a.svg b/priv/static/emoji/1f41a.svg new file mode 100644 index 0000000000..804ece8811 --- /dev/null +++ b/priv/static/emoji/1f41a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f41b.svg b/priv/static/emoji/1f41b.svg new file mode 100644 index 0000000000..f8986dd781 --- /dev/null +++ b/priv/static/emoji/1f41b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f41c.svg b/priv/static/emoji/1f41c.svg new file mode 100644 index 0000000000..385b616e8b --- /dev/null +++ b/priv/static/emoji/1f41c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f41d.svg b/priv/static/emoji/1f41d.svg new file mode 100644 index 0000000000..31e7882804 --- /dev/null +++ b/priv/static/emoji/1f41d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f41e.svg b/priv/static/emoji/1f41e.svg new file mode 100644 index 0000000000..f314ca9a20 --- /dev/null +++ b/priv/static/emoji/1f41e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f41f.svg b/priv/static/emoji/1f41f.svg new file mode 100644 index 0000000000..7d9ef4108b --- /dev/null +++ b/priv/static/emoji/1f41f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f420.svg b/priv/static/emoji/1f420.svg new file mode 100644 index 0000000000..ccc11c48d0 --- /dev/null +++ b/priv/static/emoji/1f420.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f421.svg b/priv/static/emoji/1f421.svg new file mode 100644 index 0000000000..13a7ddc604 --- /dev/null +++ b/priv/static/emoji/1f421.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f422.svg b/priv/static/emoji/1f422.svg new file mode 100644 index 0000000000..fe4b659ee0 --- /dev/null +++ b/priv/static/emoji/1f422.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f423.svg b/priv/static/emoji/1f423.svg new file mode 100644 index 0000000000..98f9c82205 --- /dev/null +++ b/priv/static/emoji/1f423.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f424.svg b/priv/static/emoji/1f424.svg new file mode 100644 index 0000000000..1286ed38d0 --- /dev/null +++ b/priv/static/emoji/1f424.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f425.svg b/priv/static/emoji/1f425.svg new file mode 100644 index 0000000000..bcbd2181bb --- /dev/null +++ b/priv/static/emoji/1f425.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f426.svg b/priv/static/emoji/1f426.svg new file mode 100644 index 0000000000..06d93a9162 --- /dev/null +++ b/priv/static/emoji/1f426.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f427.svg b/priv/static/emoji/1f427.svg new file mode 100644 index 0000000000..fe34d91a91 --- /dev/null +++ b/priv/static/emoji/1f427.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f428.svg b/priv/static/emoji/1f428.svg new file mode 100644 index 0000000000..1da7190a68 --- /dev/null +++ b/priv/static/emoji/1f428.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f429.svg b/priv/static/emoji/1f429.svg new file mode 100644 index 0000000000..4852dda3db --- /dev/null +++ b/priv/static/emoji/1f429.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f42a.svg b/priv/static/emoji/1f42a.svg new file mode 100644 index 0000000000..278e144ffd --- /dev/null +++ b/priv/static/emoji/1f42a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f42b.svg b/priv/static/emoji/1f42b.svg new file mode 100644 index 0000000000..8d60286e99 --- /dev/null +++ b/priv/static/emoji/1f42b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f42c.svg b/priv/static/emoji/1f42c.svg new file mode 100644 index 0000000000..ee782f2f20 --- /dev/null +++ b/priv/static/emoji/1f42c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f42d.svg b/priv/static/emoji/1f42d.svg new file mode 100644 index 0000000000..91e126242b --- /dev/null +++ b/priv/static/emoji/1f42d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f42e.svg b/priv/static/emoji/1f42e.svg new file mode 100644 index 0000000000..40fede032f --- /dev/null +++ b/priv/static/emoji/1f42e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f42f.svg b/priv/static/emoji/1f42f.svg new file mode 100644 index 0000000000..5ecd980c51 --- /dev/null +++ b/priv/static/emoji/1f42f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f430.svg b/priv/static/emoji/1f430.svg new file mode 100644 index 0000000000..2f70f9669f --- /dev/null +++ b/priv/static/emoji/1f430.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f431.svg b/priv/static/emoji/1f431.svg new file mode 100644 index 0000000000..cc75dcc68f --- /dev/null +++ b/priv/static/emoji/1f431.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f432.svg b/priv/static/emoji/1f432.svg new file mode 100644 index 0000000000..1c1b4347da --- /dev/null +++ b/priv/static/emoji/1f432.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f433.svg b/priv/static/emoji/1f433.svg new file mode 100644 index 0000000000..f00ea1033e --- /dev/null +++ b/priv/static/emoji/1f433.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f434.svg b/priv/static/emoji/1f434.svg new file mode 100644 index 0000000000..9aa7d69356 --- /dev/null +++ b/priv/static/emoji/1f434.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f435.svg b/priv/static/emoji/1f435.svg new file mode 100644 index 0000000000..ee6c57cf9e --- /dev/null +++ b/priv/static/emoji/1f435.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f436.svg b/priv/static/emoji/1f436.svg new file mode 100644 index 0000000000..8b2e685804 --- /dev/null +++ b/priv/static/emoji/1f436.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f437.svg b/priv/static/emoji/1f437.svg new file mode 100644 index 0000000000..49175ea42a --- /dev/null +++ b/priv/static/emoji/1f437.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f438.svg b/priv/static/emoji/1f438.svg new file mode 100644 index 0000000000..74ddb592c0 --- /dev/null +++ b/priv/static/emoji/1f438.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f439.svg b/priv/static/emoji/1f439.svg new file mode 100644 index 0000000000..9bb7bae3ba --- /dev/null +++ b/priv/static/emoji/1f439.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f43a.svg b/priv/static/emoji/1f43a.svg new file mode 100644 index 0000000000..af402057ef --- /dev/null +++ b/priv/static/emoji/1f43a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f43b.svg b/priv/static/emoji/1f43b.svg new file mode 100644 index 0000000000..50224417b0 --- /dev/null +++ b/priv/static/emoji/1f43b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f43c.svg b/priv/static/emoji/1f43c.svg new file mode 100644 index 0000000000..8607893a08 --- /dev/null +++ b/priv/static/emoji/1f43c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f43d.svg b/priv/static/emoji/1f43d.svg new file mode 100644 index 0000000000..071722db1e --- /dev/null +++ b/priv/static/emoji/1f43d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f43e.svg b/priv/static/emoji/1f43e.svg new file mode 100644 index 0000000000..40013679bd --- /dev/null +++ b/priv/static/emoji/1f43e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f43f.svg b/priv/static/emoji/1f43f.svg new file mode 100644 index 0000000000..3676874901 --- /dev/null +++ b/priv/static/emoji/1f43f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f440.svg b/priv/static/emoji/1f440.svg new file mode 100644 index 0000000000..46a268f435 --- /dev/null +++ b/priv/static/emoji/1f440.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f441-200d-1f5e8.svg b/priv/static/emoji/1f441-200d-1f5e8.svg new file mode 100644 index 0000000000..ebe9061daf --- /dev/null +++ b/priv/static/emoji/1f441-200d-1f5e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f441.svg b/priv/static/emoji/1f441.svg new file mode 100644 index 0000000000..75e9c48a45 --- /dev/null +++ b/priv/static/emoji/1f441.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f442-1f3fb.svg b/priv/static/emoji/1f442-1f3fb.svg new file mode 100644 index 0000000000..75194c52e7 --- /dev/null +++ b/priv/static/emoji/1f442-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f442-1f3fc.svg b/priv/static/emoji/1f442-1f3fc.svg new file mode 100644 index 0000000000..f4ae52f75f --- /dev/null +++ b/priv/static/emoji/1f442-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f442-1f3fd.svg b/priv/static/emoji/1f442-1f3fd.svg new file mode 100644 index 0000000000..da1d80a17d --- /dev/null +++ b/priv/static/emoji/1f442-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f442-1f3fe.svg b/priv/static/emoji/1f442-1f3fe.svg new file mode 100644 index 0000000000..f54144b393 --- /dev/null +++ b/priv/static/emoji/1f442-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f442-1f3ff.svg b/priv/static/emoji/1f442-1f3ff.svg new file mode 100644 index 0000000000..845451210d --- /dev/null +++ b/priv/static/emoji/1f442-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f442.svg b/priv/static/emoji/1f442.svg new file mode 100644 index 0000000000..1b386c7cba --- /dev/null +++ b/priv/static/emoji/1f442.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f443-1f3fb.svg b/priv/static/emoji/1f443-1f3fb.svg new file mode 100644 index 0000000000..ba2e3dc718 --- /dev/null +++ b/priv/static/emoji/1f443-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f443-1f3fc.svg b/priv/static/emoji/1f443-1f3fc.svg new file mode 100644 index 0000000000..e953ffde53 --- /dev/null +++ b/priv/static/emoji/1f443-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f443-1f3fd.svg b/priv/static/emoji/1f443-1f3fd.svg new file mode 100644 index 0000000000..fff0434a6f --- /dev/null +++ b/priv/static/emoji/1f443-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f443-1f3fe.svg b/priv/static/emoji/1f443-1f3fe.svg new file mode 100644 index 0000000000..bfb49618b1 --- /dev/null +++ b/priv/static/emoji/1f443-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f443-1f3ff.svg b/priv/static/emoji/1f443-1f3ff.svg new file mode 100644 index 0000000000..e9c466d8f5 --- /dev/null +++ b/priv/static/emoji/1f443-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f443.svg b/priv/static/emoji/1f443.svg new file mode 100644 index 0000000000..654a6f2a48 --- /dev/null +++ b/priv/static/emoji/1f443.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f444.svg b/priv/static/emoji/1f444.svg new file mode 100644 index 0000000000..e8a29c4734 --- /dev/null +++ b/priv/static/emoji/1f444.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f445.svg b/priv/static/emoji/1f445.svg new file mode 100644 index 0000000000..64386b95ee --- /dev/null +++ b/priv/static/emoji/1f445.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f446-1f3fb.svg b/priv/static/emoji/1f446-1f3fb.svg new file mode 100644 index 0000000000..4b66516df5 --- /dev/null +++ b/priv/static/emoji/1f446-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f446-1f3fc.svg b/priv/static/emoji/1f446-1f3fc.svg new file mode 100644 index 0000000000..f2f8023006 --- /dev/null +++ b/priv/static/emoji/1f446-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f446-1f3fd.svg b/priv/static/emoji/1f446-1f3fd.svg new file mode 100644 index 0000000000..8a35f11330 --- /dev/null +++ b/priv/static/emoji/1f446-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f446-1f3fe.svg b/priv/static/emoji/1f446-1f3fe.svg new file mode 100644 index 0000000000..dce82c501b --- /dev/null +++ b/priv/static/emoji/1f446-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f446-1f3ff.svg b/priv/static/emoji/1f446-1f3ff.svg new file mode 100644 index 0000000000..56492307a2 --- /dev/null +++ b/priv/static/emoji/1f446-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f446.svg b/priv/static/emoji/1f446.svg new file mode 100644 index 0000000000..46bc359680 --- /dev/null +++ b/priv/static/emoji/1f446.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f447-1f3fb.svg b/priv/static/emoji/1f447-1f3fb.svg new file mode 100644 index 0000000000..5d5c6790b2 --- /dev/null +++ b/priv/static/emoji/1f447-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f447-1f3fc.svg b/priv/static/emoji/1f447-1f3fc.svg new file mode 100644 index 0000000000..6191d80ed5 --- /dev/null +++ b/priv/static/emoji/1f447-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f447-1f3fd.svg b/priv/static/emoji/1f447-1f3fd.svg new file mode 100644 index 0000000000..553f3b9060 --- /dev/null +++ b/priv/static/emoji/1f447-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f447-1f3fe.svg b/priv/static/emoji/1f447-1f3fe.svg new file mode 100644 index 0000000000..2d7fc57d51 --- /dev/null +++ b/priv/static/emoji/1f447-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f447-1f3ff.svg b/priv/static/emoji/1f447-1f3ff.svg new file mode 100644 index 0000000000..e64a83e567 --- /dev/null +++ b/priv/static/emoji/1f447-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f447.svg b/priv/static/emoji/1f447.svg new file mode 100644 index 0000000000..b3df617048 --- /dev/null +++ b/priv/static/emoji/1f447.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f448-1f3fb.svg b/priv/static/emoji/1f448-1f3fb.svg new file mode 100644 index 0000000000..452e1731f2 --- /dev/null +++ b/priv/static/emoji/1f448-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f448-1f3fc.svg b/priv/static/emoji/1f448-1f3fc.svg new file mode 100644 index 0000000000..698207e4d0 --- /dev/null +++ b/priv/static/emoji/1f448-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f448-1f3fd.svg b/priv/static/emoji/1f448-1f3fd.svg new file mode 100644 index 0000000000..dec8dbedd6 --- /dev/null +++ b/priv/static/emoji/1f448-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f448-1f3fe.svg b/priv/static/emoji/1f448-1f3fe.svg new file mode 100644 index 0000000000..60e329d9c6 --- /dev/null +++ b/priv/static/emoji/1f448-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f448-1f3ff.svg b/priv/static/emoji/1f448-1f3ff.svg new file mode 100644 index 0000000000..58e85097e6 --- /dev/null +++ b/priv/static/emoji/1f448-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f448.svg b/priv/static/emoji/1f448.svg new file mode 100644 index 0000000000..10cf55fae3 --- /dev/null +++ b/priv/static/emoji/1f448.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f449-1f3fb.svg b/priv/static/emoji/1f449-1f3fb.svg new file mode 100644 index 0000000000..76635f264a --- /dev/null +++ b/priv/static/emoji/1f449-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f449-1f3fc.svg b/priv/static/emoji/1f449-1f3fc.svg new file mode 100644 index 0000000000..4f03a7e8fc --- /dev/null +++ b/priv/static/emoji/1f449-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f449-1f3fd.svg b/priv/static/emoji/1f449-1f3fd.svg new file mode 100644 index 0000000000..5b90a8a305 --- /dev/null +++ b/priv/static/emoji/1f449-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f449-1f3fe.svg b/priv/static/emoji/1f449-1f3fe.svg new file mode 100644 index 0000000000..75257c1278 --- /dev/null +++ b/priv/static/emoji/1f449-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f449-1f3ff.svg b/priv/static/emoji/1f449-1f3ff.svg new file mode 100644 index 0000000000..d7b5893cb3 --- /dev/null +++ b/priv/static/emoji/1f449-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f449.svg b/priv/static/emoji/1f449.svg new file mode 100644 index 0000000000..f8c6a4b1d9 --- /dev/null +++ b/priv/static/emoji/1f449.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44a-1f3fb.svg b/priv/static/emoji/1f44a-1f3fb.svg new file mode 100644 index 0000000000..c113b4ae7a --- /dev/null +++ b/priv/static/emoji/1f44a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44a-1f3fc.svg b/priv/static/emoji/1f44a-1f3fc.svg new file mode 100644 index 0000000000..54cdf858a1 --- /dev/null +++ b/priv/static/emoji/1f44a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44a-1f3fd.svg b/priv/static/emoji/1f44a-1f3fd.svg new file mode 100644 index 0000000000..b798e5bad3 --- /dev/null +++ b/priv/static/emoji/1f44a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44a-1f3fe.svg b/priv/static/emoji/1f44a-1f3fe.svg new file mode 100644 index 0000000000..c9b1cf6011 --- /dev/null +++ b/priv/static/emoji/1f44a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44a-1f3ff.svg b/priv/static/emoji/1f44a-1f3ff.svg new file mode 100644 index 0000000000..faa58cbc67 --- /dev/null +++ b/priv/static/emoji/1f44a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44a.svg b/priv/static/emoji/1f44a.svg new file mode 100644 index 0000000000..813373e6d0 --- /dev/null +++ b/priv/static/emoji/1f44a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44b-1f3fb.svg b/priv/static/emoji/1f44b-1f3fb.svg new file mode 100644 index 0000000000..de8871dc21 --- /dev/null +++ b/priv/static/emoji/1f44b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44b-1f3fc.svg b/priv/static/emoji/1f44b-1f3fc.svg new file mode 100644 index 0000000000..beec31c99d --- /dev/null +++ b/priv/static/emoji/1f44b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44b-1f3fd.svg b/priv/static/emoji/1f44b-1f3fd.svg new file mode 100644 index 0000000000..975f489fdb --- /dev/null +++ b/priv/static/emoji/1f44b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44b-1f3fe.svg b/priv/static/emoji/1f44b-1f3fe.svg new file mode 100644 index 0000000000..13c59cf1b9 --- /dev/null +++ b/priv/static/emoji/1f44b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44b-1f3ff.svg b/priv/static/emoji/1f44b-1f3ff.svg new file mode 100644 index 0000000000..1ce9ef3772 --- /dev/null +++ b/priv/static/emoji/1f44b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44b.svg b/priv/static/emoji/1f44b.svg new file mode 100644 index 0000000000..8942c68b03 --- /dev/null +++ b/priv/static/emoji/1f44b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44c-1f3fb.svg b/priv/static/emoji/1f44c-1f3fb.svg new file mode 100644 index 0000000000..e54788da94 --- /dev/null +++ b/priv/static/emoji/1f44c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44c-1f3fc.svg b/priv/static/emoji/1f44c-1f3fc.svg new file mode 100644 index 0000000000..e96a258021 --- /dev/null +++ b/priv/static/emoji/1f44c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44c-1f3fd.svg b/priv/static/emoji/1f44c-1f3fd.svg new file mode 100644 index 0000000000..6e52b17f54 --- /dev/null +++ b/priv/static/emoji/1f44c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44c-1f3fe.svg b/priv/static/emoji/1f44c-1f3fe.svg new file mode 100644 index 0000000000..91cb40e4ad --- /dev/null +++ b/priv/static/emoji/1f44c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44c-1f3ff.svg b/priv/static/emoji/1f44c-1f3ff.svg new file mode 100644 index 0000000000..ffa03f7a0e --- /dev/null +++ b/priv/static/emoji/1f44c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44c.svg b/priv/static/emoji/1f44c.svg new file mode 100644 index 0000000000..c36d774852 --- /dev/null +++ b/priv/static/emoji/1f44c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44d-1f3fb.svg b/priv/static/emoji/1f44d-1f3fb.svg new file mode 100644 index 0000000000..ac1ab02701 --- /dev/null +++ b/priv/static/emoji/1f44d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44d-1f3fc.svg b/priv/static/emoji/1f44d-1f3fc.svg new file mode 100644 index 0000000000..e5d4b0dcd0 --- /dev/null +++ b/priv/static/emoji/1f44d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44d-1f3fd.svg b/priv/static/emoji/1f44d-1f3fd.svg new file mode 100644 index 0000000000..7dde229167 --- /dev/null +++ b/priv/static/emoji/1f44d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44d-1f3fe.svg b/priv/static/emoji/1f44d-1f3fe.svg new file mode 100644 index 0000000000..a0b1565770 --- /dev/null +++ b/priv/static/emoji/1f44d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44d-1f3ff.svg b/priv/static/emoji/1f44d-1f3ff.svg new file mode 100644 index 0000000000..dc21efcb72 --- /dev/null +++ b/priv/static/emoji/1f44d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44d.svg b/priv/static/emoji/1f44d.svg new file mode 100644 index 0000000000..595672dc2f --- /dev/null +++ b/priv/static/emoji/1f44d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44e-1f3fb.svg b/priv/static/emoji/1f44e-1f3fb.svg new file mode 100644 index 0000000000..cf3616ea0b --- /dev/null +++ b/priv/static/emoji/1f44e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44e-1f3fc.svg b/priv/static/emoji/1f44e-1f3fc.svg new file mode 100644 index 0000000000..e929cabb86 --- /dev/null +++ b/priv/static/emoji/1f44e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44e-1f3fd.svg b/priv/static/emoji/1f44e-1f3fd.svg new file mode 100644 index 0000000000..0584fd01f7 --- /dev/null +++ b/priv/static/emoji/1f44e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44e-1f3fe.svg b/priv/static/emoji/1f44e-1f3fe.svg new file mode 100644 index 0000000000..88af00e484 --- /dev/null +++ b/priv/static/emoji/1f44e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44e-1f3ff.svg b/priv/static/emoji/1f44e-1f3ff.svg new file mode 100644 index 0000000000..0e8c62e313 --- /dev/null +++ b/priv/static/emoji/1f44e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44e.svg b/priv/static/emoji/1f44e.svg new file mode 100644 index 0000000000..1569ad098e --- /dev/null +++ b/priv/static/emoji/1f44e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44f-1f3fb.svg b/priv/static/emoji/1f44f-1f3fb.svg new file mode 100644 index 0000000000..27feea251d --- /dev/null +++ b/priv/static/emoji/1f44f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44f-1f3fc.svg b/priv/static/emoji/1f44f-1f3fc.svg new file mode 100644 index 0000000000..7edc9477b4 --- /dev/null +++ b/priv/static/emoji/1f44f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44f-1f3fd.svg b/priv/static/emoji/1f44f-1f3fd.svg new file mode 100644 index 0000000000..93201cf6b3 --- /dev/null +++ b/priv/static/emoji/1f44f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44f-1f3fe.svg b/priv/static/emoji/1f44f-1f3fe.svg new file mode 100644 index 0000000000..0301e0cfdf --- /dev/null +++ b/priv/static/emoji/1f44f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44f-1f3ff.svg b/priv/static/emoji/1f44f-1f3ff.svg new file mode 100644 index 0000000000..eec087b61e --- /dev/null +++ b/priv/static/emoji/1f44f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f44f.svg b/priv/static/emoji/1f44f.svg new file mode 100644 index 0000000000..2ed7b62f42 --- /dev/null +++ b/priv/static/emoji/1f44f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f450-1f3fb.svg b/priv/static/emoji/1f450-1f3fb.svg new file mode 100644 index 0000000000..621c9f6cb1 --- /dev/null +++ b/priv/static/emoji/1f450-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f450-1f3fc.svg b/priv/static/emoji/1f450-1f3fc.svg new file mode 100644 index 0000000000..70b490f401 --- /dev/null +++ b/priv/static/emoji/1f450-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f450-1f3fd.svg b/priv/static/emoji/1f450-1f3fd.svg new file mode 100644 index 0000000000..a8944369d3 --- /dev/null +++ b/priv/static/emoji/1f450-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f450-1f3fe.svg b/priv/static/emoji/1f450-1f3fe.svg new file mode 100644 index 0000000000..e31b85cafa --- /dev/null +++ b/priv/static/emoji/1f450-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f450-1f3ff.svg b/priv/static/emoji/1f450-1f3ff.svg new file mode 100644 index 0000000000..c0d8fc4304 --- /dev/null +++ b/priv/static/emoji/1f450-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f450.svg b/priv/static/emoji/1f450.svg new file mode 100644 index 0000000000..eebee25431 --- /dev/null +++ b/priv/static/emoji/1f450.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f451.svg b/priv/static/emoji/1f451.svg new file mode 100644 index 0000000000..4db8d2bc35 --- /dev/null +++ b/priv/static/emoji/1f451.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f452.svg b/priv/static/emoji/1f452.svg new file mode 100644 index 0000000000..4b647446bf --- /dev/null +++ b/priv/static/emoji/1f452.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f453.svg b/priv/static/emoji/1f453.svg new file mode 100644 index 0000000000..18d99981e9 --- /dev/null +++ b/priv/static/emoji/1f453.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f454.svg b/priv/static/emoji/1f454.svg new file mode 100644 index 0000000000..8e860d6dbf --- /dev/null +++ b/priv/static/emoji/1f454.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f455.svg b/priv/static/emoji/1f455.svg new file mode 100644 index 0000000000..1db4820283 --- /dev/null +++ b/priv/static/emoji/1f455.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f456.svg b/priv/static/emoji/1f456.svg new file mode 100644 index 0000000000..44191ae45e --- /dev/null +++ b/priv/static/emoji/1f456.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f457.svg b/priv/static/emoji/1f457.svg new file mode 100644 index 0000000000..29cc45c742 --- /dev/null +++ b/priv/static/emoji/1f457.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f458.svg b/priv/static/emoji/1f458.svg new file mode 100644 index 0000000000..7c955e99e5 --- /dev/null +++ b/priv/static/emoji/1f458.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f459.svg b/priv/static/emoji/1f459.svg new file mode 100644 index 0000000000..ed327f1087 --- /dev/null +++ b/priv/static/emoji/1f459.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f45a.svg b/priv/static/emoji/1f45a.svg new file mode 100644 index 0000000000..9d6306ce71 --- /dev/null +++ b/priv/static/emoji/1f45a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f45b.svg b/priv/static/emoji/1f45b.svg new file mode 100644 index 0000000000..bb404a2bf8 --- /dev/null +++ b/priv/static/emoji/1f45b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f45c.svg b/priv/static/emoji/1f45c.svg new file mode 100644 index 0000000000..3093d6bbfd --- /dev/null +++ b/priv/static/emoji/1f45c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f45d.svg b/priv/static/emoji/1f45d.svg new file mode 100644 index 0000000000..6d6b1364d7 --- /dev/null +++ b/priv/static/emoji/1f45d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f45e.svg b/priv/static/emoji/1f45e.svg new file mode 100644 index 0000000000..fe94bf599a --- /dev/null +++ b/priv/static/emoji/1f45e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f45f.svg b/priv/static/emoji/1f45f.svg new file mode 100644 index 0000000000..f0c998c631 --- /dev/null +++ b/priv/static/emoji/1f45f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f460.svg b/priv/static/emoji/1f460.svg new file mode 100644 index 0000000000..f3aaf44908 --- /dev/null +++ b/priv/static/emoji/1f460.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f461.svg b/priv/static/emoji/1f461.svg new file mode 100644 index 0000000000..c2f62e4ff4 --- /dev/null +++ b/priv/static/emoji/1f461.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f462.svg b/priv/static/emoji/1f462.svg new file mode 100644 index 0000000000..641dd8b24d --- /dev/null +++ b/priv/static/emoji/1f462.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f463.svg b/priv/static/emoji/1f463.svg new file mode 100644 index 0000000000..bc37ac0510 --- /dev/null +++ b/priv/static/emoji/1f463.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f464.svg b/priv/static/emoji/1f464.svg new file mode 100644 index 0000000000..51d02dd25c --- /dev/null +++ b/priv/static/emoji/1f464.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f465.svg b/priv/static/emoji/1f465.svg new file mode 100644 index 0000000000..076c6e7dfb --- /dev/null +++ b/priv/static/emoji/1f465.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f466-1f3fb.svg b/priv/static/emoji/1f466-1f3fb.svg new file mode 100644 index 0000000000..449e08924d --- /dev/null +++ b/priv/static/emoji/1f466-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f466-1f3fc.svg b/priv/static/emoji/1f466-1f3fc.svg new file mode 100644 index 0000000000..20f7bf0d4c --- /dev/null +++ b/priv/static/emoji/1f466-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f466-1f3fd.svg b/priv/static/emoji/1f466-1f3fd.svg new file mode 100644 index 0000000000..3b4f0dbabe --- /dev/null +++ b/priv/static/emoji/1f466-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f466-1f3fe.svg b/priv/static/emoji/1f466-1f3fe.svg new file mode 100644 index 0000000000..197d830919 --- /dev/null +++ b/priv/static/emoji/1f466-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f466-1f3ff.svg b/priv/static/emoji/1f466-1f3ff.svg new file mode 100644 index 0000000000..c4d1e1a218 --- /dev/null +++ b/priv/static/emoji/1f466-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f466.svg b/priv/static/emoji/1f466.svg new file mode 100644 index 0000000000..de1318cc1a --- /dev/null +++ b/priv/static/emoji/1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f467-1f3fb.svg b/priv/static/emoji/1f467-1f3fb.svg new file mode 100644 index 0000000000..887df9fc23 --- /dev/null +++ b/priv/static/emoji/1f467-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f467-1f3fc.svg b/priv/static/emoji/1f467-1f3fc.svg new file mode 100644 index 0000000000..98c09561b3 --- /dev/null +++ b/priv/static/emoji/1f467-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f467-1f3fd.svg b/priv/static/emoji/1f467-1f3fd.svg new file mode 100644 index 0000000000..058874c76e --- /dev/null +++ b/priv/static/emoji/1f467-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f467-1f3fe.svg b/priv/static/emoji/1f467-1f3fe.svg new file mode 100644 index 0000000000..dd656d86e2 --- /dev/null +++ b/priv/static/emoji/1f467-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f467-1f3ff.svg b/priv/static/emoji/1f467-1f3ff.svg new file mode 100644 index 0000000000..2f9980a8cc --- /dev/null +++ b/priv/static/emoji/1f467-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f467.svg b/priv/static/emoji/1f467.svg new file mode 100644 index 0000000000..e40a8589de --- /dev/null +++ b/priv/static/emoji/1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f33e.svg b/priv/static/emoji/1f468-1f3fb-200d-1f33e.svg new file mode 100644 index 0000000000..e9ce829262 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f373.svg b/priv/static/emoji/1f468-1f3fb-200d-1f373.svg new file mode 100644 index 0000000000..a972e6a4ba --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f393.svg b/priv/static/emoji/1f468-1f3fb-200d-1f393.svg new file mode 100644 index 0000000000..e4f480ffe2 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f3a4.svg b/priv/static/emoji/1f468-1f3fb-200d-1f3a4.svg new file mode 100644 index 0000000000..03b4f98824 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f3a8.svg b/priv/static/emoji/1f468-1f3fb-200d-1f3a8.svg new file mode 100644 index 0000000000..c524909738 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f3eb.svg b/priv/static/emoji/1f468-1f3fb-200d-1f3eb.svg new file mode 100644 index 0000000000..b8b0f125e4 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f3ed.svg b/priv/static/emoji/1f468-1f3fb-200d-1f3ed.svg new file mode 100644 index 0000000000..96b4586948 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f4bb.svg b/priv/static/emoji/1f468-1f3fb-200d-1f4bb.svg new file mode 100644 index 0000000000..70ea65ecbd --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f4bc.svg b/priv/static/emoji/1f468-1f3fb-200d-1f4bc.svg new file mode 100644 index 0000000000..06f78911e0 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f527.svg b/priv/static/emoji/1f468-1f3fb-200d-1f527.svg new file mode 100644 index 0000000000..fc9059e040 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f52c.svg b/priv/static/emoji/1f468-1f3fb-200d-1f52c.svg new file mode 100644 index 0000000000..08440f068a --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f680.svg b/priv/static/emoji/1f468-1f3fb-200d-1f680.svg new file mode 100644 index 0000000000..8492ec9435 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f692.svg b/priv/static/emoji/1f468-1f3fb-200d-1f692.svg new file mode 100644 index 0000000000..4d32c4df7d --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f9af.svg b/priv/static/emoji/1f468-1f3fb-200d-1f9af.svg new file mode 100644 index 0000000000..06f7b2cfce --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f9b0.svg b/priv/static/emoji/1f468-1f3fb-200d-1f9b0.svg new file mode 100644 index 0000000000..e627fbc2fd --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f9b1.svg b/priv/static/emoji/1f468-1f3fb-200d-1f9b1.svg new file mode 100644 index 0000000000..d21a1f77e7 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f9b2.svg b/priv/static/emoji/1f468-1f3fb-200d-1f9b2.svg new file mode 100644 index 0000000000..9c89431f3c --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f9b3.svg b/priv/static/emoji/1f468-1f3fb-200d-1f9b3.svg new file mode 100644 index 0000000000..66c62c1efe --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f9bc.svg b/priv/static/emoji/1f468-1f3fb-200d-1f9bc.svg new file mode 100644 index 0000000000..0127845669 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-1f9bd.svg b/priv/static/emoji/1f468-1f3fb-200d-1f9bd.svg new file mode 100644 index 0000000000..7d0c06d0d7 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-2695-fe0f.svg b/priv/static/emoji/1f468-1f3fb-200d-2695-fe0f.svg new file mode 100644 index 0000000000..7e239f004a --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-2696-fe0f.svg b/priv/static/emoji/1f468-1f3fb-200d-2696-fe0f.svg new file mode 100644 index 0000000000..78a2a14c95 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb-200d-2708-fe0f.svg b/priv/static/emoji/1f468-1f3fb-200d-2708-fe0f.svg new file mode 100644 index 0000000000..fb5ef4b849 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fb.svg b/priv/static/emoji/1f468-1f3fb.svg new file mode 100644 index 0000000000..1ab8ea027d --- /dev/null +++ b/priv/static/emoji/1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f33e.svg b/priv/static/emoji/1f468-1f3fc-200d-1f33e.svg new file mode 100644 index 0000000000..a75bacf4ea --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f373.svg b/priv/static/emoji/1f468-1f3fc-200d-1f373.svg new file mode 100644 index 0000000000..1ec6e02822 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f393.svg b/priv/static/emoji/1f468-1f3fc-200d-1f393.svg new file mode 100644 index 0000000000..960ff27cc9 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f3a4.svg b/priv/static/emoji/1f468-1f3fc-200d-1f3a4.svg new file mode 100644 index 0000000000..e11379495a --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f3a8.svg b/priv/static/emoji/1f468-1f3fc-200d-1f3a8.svg new file mode 100644 index 0000000000..cce25b79b9 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f3eb.svg b/priv/static/emoji/1f468-1f3fc-200d-1f3eb.svg new file mode 100644 index 0000000000..fb6f4f4aa9 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f3ed.svg b/priv/static/emoji/1f468-1f3fc-200d-1f3ed.svg new file mode 100644 index 0000000000..22ad9bfe10 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f4bb.svg b/priv/static/emoji/1f468-1f3fc-200d-1f4bb.svg new file mode 100644 index 0000000000..038a4fc4ab --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f4bc.svg b/priv/static/emoji/1f468-1f3fc-200d-1f4bc.svg new file mode 100644 index 0000000000..c07947ba54 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f527.svg b/priv/static/emoji/1f468-1f3fc-200d-1f527.svg new file mode 100644 index 0000000000..d0bf573ec7 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f52c.svg b/priv/static/emoji/1f468-1f3fc-200d-1f52c.svg new file mode 100644 index 0000000000..0cbcdf1f5e --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f680.svg b/priv/static/emoji/1f468-1f3fc-200d-1f680.svg new file mode 100644 index 0000000000..b1567a6881 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f692.svg b/priv/static/emoji/1f468-1f3fc-200d-1f692.svg new file mode 100644 index 0000000000..ae76271979 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..447fd47bfd --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f9af.svg b/priv/static/emoji/1f468-1f3fc-200d-1f9af.svg new file mode 100644 index 0000000000..77eb172863 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f9b0.svg b/priv/static/emoji/1f468-1f3fc-200d-1f9b0.svg new file mode 100644 index 0000000000..9582c89a25 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f9b1.svg b/priv/static/emoji/1f468-1f3fc-200d-1f9b1.svg new file mode 100644 index 0000000000..bb09af97a8 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f9b2.svg b/priv/static/emoji/1f468-1f3fc-200d-1f9b2.svg new file mode 100644 index 0000000000..59308642b0 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f9b3.svg b/priv/static/emoji/1f468-1f3fc-200d-1f9b3.svg new file mode 100644 index 0000000000..f4e0f36a64 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f9bc.svg b/priv/static/emoji/1f468-1f3fc-200d-1f9bc.svg new file mode 100644 index 0000000000..08bc53e6de --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-1f9bd.svg b/priv/static/emoji/1f468-1f3fc-200d-1f9bd.svg new file mode 100644 index 0000000000..6fbe0659ce --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-2695-fe0f.svg b/priv/static/emoji/1f468-1f3fc-200d-2695-fe0f.svg new file mode 100644 index 0000000000..e2f3fc6d57 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-2696-fe0f.svg b/priv/static/emoji/1f468-1f3fc-200d-2696-fe0f.svg new file mode 100644 index 0000000000..214293e8b8 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc-200d-2708-fe0f.svg b/priv/static/emoji/1f468-1f3fc-200d-2708-fe0f.svg new file mode 100644 index 0000000000..0010ed13bc --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fc.svg b/priv/static/emoji/1f468-1f3fc.svg new file mode 100644 index 0000000000..658aeabec3 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f33e.svg b/priv/static/emoji/1f468-1f3fd-200d-1f33e.svg new file mode 100644 index 0000000000..20b878f501 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f373.svg b/priv/static/emoji/1f468-1f3fd-200d-1f373.svg new file mode 100644 index 0000000000..137e76032f --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f393.svg b/priv/static/emoji/1f468-1f3fd-200d-1f393.svg new file mode 100644 index 0000000000..2383bc6717 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f3a4.svg b/priv/static/emoji/1f468-1f3fd-200d-1f3a4.svg new file mode 100644 index 0000000000..69b4dbc2f9 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f3a8.svg b/priv/static/emoji/1f468-1f3fd-200d-1f3a8.svg new file mode 100644 index 0000000000..115850f988 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f3eb.svg b/priv/static/emoji/1f468-1f3fd-200d-1f3eb.svg new file mode 100644 index 0000000000..5ee09e051e --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f3ed.svg b/priv/static/emoji/1f468-1f3fd-200d-1f3ed.svg new file mode 100644 index 0000000000..c78c5b7929 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f4bb.svg b/priv/static/emoji/1f468-1f3fd-200d-1f4bb.svg new file mode 100644 index 0000000000..e87322a813 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f4bc.svg b/priv/static/emoji/1f468-1f3fd-200d-1f4bc.svg new file mode 100644 index 0000000000..0aa43d9d90 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f527.svg b/priv/static/emoji/1f468-1f3fd-200d-1f527.svg new file mode 100644 index 0000000000..a21d33dad8 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f52c.svg b/priv/static/emoji/1f468-1f3fd-200d-1f52c.svg new file mode 100644 index 0000000000..bb745edb5f --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f680.svg b/priv/static/emoji/1f468-1f3fd-200d-1f680.svg new file mode 100644 index 0000000000..d6daa5d042 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f692.svg b/priv/static/emoji/1f468-1f3fd-200d-1f692.svg new file mode 100644 index 0000000000..42308ee3a4 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..bb34ac8550 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg b/priv/static/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 0000000000..4d6b0dd69c --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f9af.svg b/priv/static/emoji/1f468-1f3fd-200d-1f9af.svg new file mode 100644 index 0000000000..f28f13f250 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f9b0.svg b/priv/static/emoji/1f468-1f3fd-200d-1f9b0.svg new file mode 100644 index 0000000000..a1d1636779 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f9b1.svg b/priv/static/emoji/1f468-1f3fd-200d-1f9b1.svg new file mode 100644 index 0000000000..a26b39bf85 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f9b2.svg b/priv/static/emoji/1f468-1f3fd-200d-1f9b2.svg new file mode 100644 index 0000000000..116085d211 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f9b3.svg b/priv/static/emoji/1f468-1f3fd-200d-1f9b3.svg new file mode 100644 index 0000000000..06cedb4745 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f9bc.svg b/priv/static/emoji/1f468-1f3fd-200d-1f9bc.svg new file mode 100644 index 0000000000..be45b67939 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-1f9bd.svg b/priv/static/emoji/1f468-1f3fd-200d-1f9bd.svg new file mode 100644 index 0000000000..64bf6233d6 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-2695-fe0f.svg b/priv/static/emoji/1f468-1f3fd-200d-2695-fe0f.svg new file mode 100644 index 0000000000..a1f496ccb8 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-2696-fe0f.svg b/priv/static/emoji/1f468-1f3fd-200d-2696-fe0f.svg new file mode 100644 index 0000000000..8ebc442a00 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd-200d-2708-fe0f.svg b/priv/static/emoji/1f468-1f3fd-200d-2708-fe0f.svg new file mode 100644 index 0000000000..dc52d245ce --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fd.svg b/priv/static/emoji/1f468-1f3fd.svg new file mode 100644 index 0000000000..8c2abb3d26 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f33e.svg b/priv/static/emoji/1f468-1f3fe-200d-1f33e.svg new file mode 100644 index 0000000000..48a941a6ec --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f373.svg b/priv/static/emoji/1f468-1f3fe-200d-1f373.svg new file mode 100644 index 0000000000..1f059617d2 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f393.svg b/priv/static/emoji/1f468-1f3fe-200d-1f393.svg new file mode 100644 index 0000000000..0f2e92683e --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f3a4.svg b/priv/static/emoji/1f468-1f3fe-200d-1f3a4.svg new file mode 100644 index 0000000000..3dcccacca4 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f3a8.svg b/priv/static/emoji/1f468-1f3fe-200d-1f3a8.svg new file mode 100644 index 0000000000..b6f69c8a09 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f3eb.svg b/priv/static/emoji/1f468-1f3fe-200d-1f3eb.svg new file mode 100644 index 0000000000..2487cb6ddc --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f3ed.svg b/priv/static/emoji/1f468-1f3fe-200d-1f3ed.svg new file mode 100644 index 0000000000..8c20bdf2b1 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f4bb.svg b/priv/static/emoji/1f468-1f3fe-200d-1f4bb.svg new file mode 100644 index 0000000000..705591d287 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f4bc.svg b/priv/static/emoji/1f468-1f3fe-200d-1f4bc.svg new file mode 100644 index 0000000000..65b919ad33 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f527.svg b/priv/static/emoji/1f468-1f3fe-200d-1f527.svg new file mode 100644 index 0000000000..6c40125bdc --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f52c.svg b/priv/static/emoji/1f468-1f3fe-200d-1f52c.svg new file mode 100644 index 0000000000..7a84c52f2d --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f680.svg b/priv/static/emoji/1f468-1f3fe-200d-1f680.svg new file mode 100644 index 0000000000..c0eefc6645 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f692.svg b/priv/static/emoji/1f468-1f3fe-200d-1f692.svg new file mode 100644 index 0000000000..6fc176c84a --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..7c7ecbf2c6 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg b/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 0000000000..bbe83212db --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg b/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 0000000000..99a2b33d37 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f9af.svg b/priv/static/emoji/1f468-1f3fe-200d-1f9af.svg new file mode 100644 index 0000000000..56845736e1 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f9b0.svg b/priv/static/emoji/1f468-1f3fe-200d-1f9b0.svg new file mode 100644 index 0000000000..7d77bfd40f --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f9b1.svg b/priv/static/emoji/1f468-1f3fe-200d-1f9b1.svg new file mode 100644 index 0000000000..bc9c28d151 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f9b2.svg b/priv/static/emoji/1f468-1f3fe-200d-1f9b2.svg new file mode 100644 index 0000000000..4d4a86257d --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f9b3.svg b/priv/static/emoji/1f468-1f3fe-200d-1f9b3.svg new file mode 100644 index 0000000000..28b9379191 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f9bc.svg b/priv/static/emoji/1f468-1f3fe-200d-1f9bc.svg new file mode 100644 index 0000000000..0e2b8bed40 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-1f9bd.svg b/priv/static/emoji/1f468-1f3fe-200d-1f9bd.svg new file mode 100644 index 0000000000..655037085f --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-2695-fe0f.svg b/priv/static/emoji/1f468-1f3fe-200d-2695-fe0f.svg new file mode 100644 index 0000000000..9d7e1137e6 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-2696-fe0f.svg b/priv/static/emoji/1f468-1f3fe-200d-2696-fe0f.svg new file mode 100644 index 0000000000..281274096b --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe-200d-2708-fe0f.svg b/priv/static/emoji/1f468-1f3fe-200d-2708-fe0f.svg new file mode 100644 index 0000000000..66c892e4f6 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3fe.svg b/priv/static/emoji/1f468-1f3fe.svg new file mode 100644 index 0000000000..c09f439221 --- /dev/null +++ b/priv/static/emoji/1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f33e.svg b/priv/static/emoji/1f468-1f3ff-200d-1f33e.svg new file mode 100644 index 0000000000..11210bf590 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f373.svg b/priv/static/emoji/1f468-1f3ff-200d-1f373.svg new file mode 100644 index 0000000000..2ebe6f84cd --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f393.svg b/priv/static/emoji/1f468-1f3ff-200d-1f393.svg new file mode 100644 index 0000000000..e746f4c520 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f3a4.svg b/priv/static/emoji/1f468-1f3ff-200d-1f3a4.svg new file mode 100644 index 0000000000..505ac44fda --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f3a8.svg b/priv/static/emoji/1f468-1f3ff-200d-1f3a8.svg new file mode 100644 index 0000000000..e0c3b4dc9b --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f3eb.svg b/priv/static/emoji/1f468-1f3ff-200d-1f3eb.svg new file mode 100644 index 0000000000..658ef82418 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f3ed.svg b/priv/static/emoji/1f468-1f3ff-200d-1f3ed.svg new file mode 100644 index 0000000000..8635665e92 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f4bb.svg b/priv/static/emoji/1f468-1f3ff-200d-1f4bb.svg new file mode 100644 index 0000000000..bd637ca062 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f4bc.svg b/priv/static/emoji/1f468-1f3ff-200d-1f4bc.svg new file mode 100644 index 0000000000..b3596ae14b --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f527.svg b/priv/static/emoji/1f468-1f3ff-200d-1f527.svg new file mode 100644 index 0000000000..fac206ffc0 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f52c.svg b/priv/static/emoji/1f468-1f3ff-200d-1f52c.svg new file mode 100644 index 0000000000..b7367ad18b --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f680.svg b/priv/static/emoji/1f468-1f3ff-200d-1f680.svg new file mode 100644 index 0000000000..54a4f62f52 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f692.svg b/priv/static/emoji/1f468-1f3ff-200d-1f692.svg new file mode 100644 index 0000000000..1e0472d5b3 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..b2383477f1 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 0000000000..a7f8308d1c --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 0000000000..e9fc548f68 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 0000000000..f55ff86f9f --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f9af.svg b/priv/static/emoji/1f468-1f3ff-200d-1f9af.svg new file mode 100644 index 0000000000..513caf1b32 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f9b0.svg b/priv/static/emoji/1f468-1f3ff-200d-1f9b0.svg new file mode 100644 index 0000000000..0a5b536ba0 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f9b1.svg b/priv/static/emoji/1f468-1f3ff-200d-1f9b1.svg new file mode 100644 index 0000000000..66c33aeae0 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f9b2.svg b/priv/static/emoji/1f468-1f3ff-200d-1f9b2.svg new file mode 100644 index 0000000000..7ab86cd780 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f9b3.svg b/priv/static/emoji/1f468-1f3ff-200d-1f9b3.svg new file mode 100644 index 0000000000..370b67336f --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f9bc.svg b/priv/static/emoji/1f468-1f3ff-200d-1f9bc.svg new file mode 100644 index 0000000000..99ad94b9f5 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-1f9bd.svg b/priv/static/emoji/1f468-1f3ff-200d-1f9bd.svg new file mode 100644 index 0000000000..4f6eba0776 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-2695-fe0f.svg b/priv/static/emoji/1f468-1f3ff-200d-2695-fe0f.svg new file mode 100644 index 0000000000..aa3fd0ad15 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-2696-fe0f.svg b/priv/static/emoji/1f468-1f3ff-200d-2696-fe0f.svg new file mode 100644 index 0000000000..1aaa0a1e3b --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff-200d-2708-fe0f.svg b/priv/static/emoji/1f468-1f3ff-200d-2708-fe0f.svg new file mode 100644 index 0000000000..dce186ed39 --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-1f3ff.svg b/priv/static/emoji/1f468-1f3ff.svg new file mode 100644 index 0000000000..96c5b170ba --- /dev/null +++ b/priv/static/emoji/1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f33e.svg b/priv/static/emoji/1f468-200d-1f33e.svg new file mode 100644 index 0000000000..0fcee4fa14 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f373.svg b/priv/static/emoji/1f468-200d-1f373.svg new file mode 100644 index 0000000000..9344e17dd8 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f393.svg b/priv/static/emoji/1f468-200d-1f393.svg new file mode 100644 index 0000000000..ab35970f55 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f3a4.svg b/priv/static/emoji/1f468-200d-1f3a4.svg new file mode 100644 index 0000000000..0462a6b2ac --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f3a8.svg b/priv/static/emoji/1f468-200d-1f3a8.svg new file mode 100644 index 0000000000..eb21722a33 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f3eb.svg b/priv/static/emoji/1f468-200d-1f3eb.svg new file mode 100644 index 0000000000..95963cfabe --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f3ed.svg b/priv/static/emoji/1f468-200d-1f3ed.svg new file mode 100644 index 0000000000..6fc1eae4c5 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f466-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f466-200d-1f466.svg new file mode 100644 index 0000000000..89b3ad3d10 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f466.svg new file mode 100644 index 0000000000..26c8de9732 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f467-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f467-200d-1f466.svg new file mode 100644 index 0000000000..a2008f1c63 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f467-200d-1f467.svg b/priv/static/emoji/1f468-200d-1f467-200d-1f467.svg new file mode 100644 index 0000000000..acb7b7df46 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f467.svg b/priv/static/emoji/1f468-200d-1f467.svg new file mode 100644 index 0000000000..4cda75140d --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f468-200d-1f466-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f468-200d-1f466-200d-1f466.svg new file mode 100644 index 0000000000..efa5db97f0 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f468-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f468-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f468-200d-1f466.svg new file mode 100644 index 0000000000..d3a5877d10 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f468-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f468-200d-1f467-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f468-200d-1f467-200d-1f466.svg new file mode 100644 index 0000000000..4d12c1a3cb --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f468-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f468-200d-1f467-200d-1f467.svg b/priv/static/emoji/1f468-200d-1f468-200d-1f467-200d-1f467.svg new file mode 100644 index 0000000000..a694e42959 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f468-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f468-200d-1f467.svg b/priv/static/emoji/1f468-200d-1f468-200d-1f467.svg new file mode 100644 index 0000000000..48c4e73125 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f468-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f469-200d-1f466-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f469-200d-1f466-200d-1f466.svg new file mode 100644 index 0000000000..9c3f3da357 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f469-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f469-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f469-200d-1f466.svg new file mode 100644 index 0000000000..8f5fad9f5e --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f469-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f469-200d-1f467-200d-1f466.svg b/priv/static/emoji/1f468-200d-1f469-200d-1f467-200d-1f466.svg new file mode 100644 index 0000000000..885680769c --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f469-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f469-200d-1f467-200d-1f467.svg b/priv/static/emoji/1f468-200d-1f469-200d-1f467-200d-1f467.svg new file mode 100644 index 0000000000..58111c6b0d --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f469-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f469-200d-1f467.svg b/priv/static/emoji/1f468-200d-1f469-200d-1f467.svg new file mode 100644 index 0000000000..22a662f0f5 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f469-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f4bb.svg b/priv/static/emoji/1f468-200d-1f4bb.svg new file mode 100644 index 0000000000..e37b0499c5 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f4bc.svg b/priv/static/emoji/1f468-200d-1f4bc.svg new file mode 100644 index 0000000000..a3f56fea14 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f527.svg b/priv/static/emoji/1f468-200d-1f527.svg new file mode 100644 index 0000000000..6bc505eb39 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f52c.svg b/priv/static/emoji/1f468-200d-1f52c.svg new file mode 100644 index 0000000000..02a9e12172 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f680.svg b/priv/static/emoji/1f468-200d-1f680.svg new file mode 100644 index 0000000000..dd97a20998 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f692.svg b/priv/static/emoji/1f468-200d-1f692.svg new file mode 100644 index 0000000000..cfdef73d52 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f9af.svg b/priv/static/emoji/1f468-200d-1f9af.svg new file mode 100644 index 0000000000..321bc0d99a --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f9b0.svg b/priv/static/emoji/1f468-200d-1f9b0.svg new file mode 100644 index 0000000000..1b633b3ce6 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f9b1.svg b/priv/static/emoji/1f468-200d-1f9b1.svg new file mode 100644 index 0000000000..6ac5743418 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f9b2.svg b/priv/static/emoji/1f468-200d-1f9b2.svg new file mode 100644 index 0000000000..ea49779a85 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f9b3.svg b/priv/static/emoji/1f468-200d-1f9b3.svg new file mode 100644 index 0000000000..a14e3fd44a --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f9bc.svg b/priv/static/emoji/1f468-200d-1f9bc.svg new file mode 100644 index 0000000000..7d37c87f68 --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-1f9bd.svg b/priv/static/emoji/1f468-200d-1f9bd.svg new file mode 100644 index 0000000000..b8d2858f9a --- /dev/null +++ b/priv/static/emoji/1f468-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-2695-fe0f.svg b/priv/static/emoji/1f468-200d-2695-fe0f.svg new file mode 100644 index 0000000000..627461f9c2 --- /dev/null +++ b/priv/static/emoji/1f468-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-2696-fe0f.svg b/priv/static/emoji/1f468-200d-2696-fe0f.svg new file mode 100644 index 0000000000..759d307815 --- /dev/null +++ b/priv/static/emoji/1f468-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-2708-fe0f.svg b/priv/static/emoji/1f468-200d-2708-fe0f.svg new file mode 100644 index 0000000000..b5ed35af23 --- /dev/null +++ b/priv/static/emoji/1f468-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-2764-fe0f-200d-1f468.svg b/priv/static/emoji/1f468-200d-2764-fe0f-200d-1f468.svg new file mode 100644 index 0000000000..cace24fc32 --- /dev/null +++ b/priv/static/emoji/1f468-200d-2764-fe0f-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg b/priv/static/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg new file mode 100644 index 0000000000..41dbd9681a --- /dev/null +++ b/priv/static/emoji/1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f468.svg b/priv/static/emoji/1f468.svg new file mode 100644 index 0000000000..98b73b5870 --- /dev/null +++ b/priv/static/emoji/1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f33e.svg b/priv/static/emoji/1f469-1f3fb-200d-1f33e.svg new file mode 100644 index 0000000000..5f246340dc --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f373.svg b/priv/static/emoji/1f469-1f3fb-200d-1f373.svg new file mode 100644 index 0000000000..6ed4b51fcf --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f393.svg b/priv/static/emoji/1f469-1f3fb-200d-1f393.svg new file mode 100644 index 0000000000..ed106adcc3 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f3a4.svg b/priv/static/emoji/1f469-1f3fb-200d-1f3a4.svg new file mode 100644 index 0000000000..e0403c5db5 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f3a8.svg b/priv/static/emoji/1f469-1f3fb-200d-1f3a8.svg new file mode 100644 index 0000000000..0caf071662 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f3eb.svg b/priv/static/emoji/1f469-1f3fb-200d-1f3eb.svg new file mode 100644 index 0000000000..819bf36f40 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f3ed.svg b/priv/static/emoji/1f469-1f3fb-200d-1f3ed.svg new file mode 100644 index 0000000000..0914b045e4 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f4bb.svg b/priv/static/emoji/1f469-1f3fb-200d-1f4bb.svg new file mode 100644 index 0000000000..3ab61d8fa6 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f4bc.svg b/priv/static/emoji/1f469-1f3fb-200d-1f4bc.svg new file mode 100644 index 0000000000..ebd3e39dfa --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f527.svg b/priv/static/emoji/1f469-1f3fb-200d-1f527.svg new file mode 100644 index 0000000000..dd5eeb4871 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f52c.svg b/priv/static/emoji/1f469-1f3fb-200d-1f52c.svg new file mode 100644 index 0000000000..a2a080b0fe --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f680.svg b/priv/static/emoji/1f469-1f3fb-200d-1f680.svg new file mode 100644 index 0000000000..b4e5a081c1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f692.svg b/priv/static/emoji/1f469-1f3fb-200d-1f692.svg new file mode 100644 index 0000000000..98bf83546a --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 0000000000..c0a072e2f0 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 0000000000..fa124a7f93 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 0000000000..97533c42df --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 0000000000..8d03f30f0f --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f9af.svg b/priv/static/emoji/1f469-1f3fb-200d-1f9af.svg new file mode 100644 index 0000000000..3c58121836 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f9b0.svg b/priv/static/emoji/1f469-1f3fb-200d-1f9b0.svg new file mode 100644 index 0000000000..94c85fd145 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f9b1.svg b/priv/static/emoji/1f469-1f3fb-200d-1f9b1.svg new file mode 100644 index 0000000000..a1a2ba77e6 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f9b2.svg b/priv/static/emoji/1f469-1f3fb-200d-1f9b2.svg new file mode 100644 index 0000000000..258c5149f3 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f9b3.svg b/priv/static/emoji/1f469-1f3fb-200d-1f9b3.svg new file mode 100644 index 0000000000..98fbde9fd1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f9bc.svg b/priv/static/emoji/1f469-1f3fb-200d-1f9bc.svg new file mode 100644 index 0000000000..2f240ea5f8 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-1f9bd.svg b/priv/static/emoji/1f469-1f3fb-200d-1f9bd.svg new file mode 100644 index 0000000000..68f49e0767 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-2695-fe0f.svg b/priv/static/emoji/1f469-1f3fb-200d-2695-fe0f.svg new file mode 100644 index 0000000000..e22a0bdf16 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-2696-fe0f.svg b/priv/static/emoji/1f469-1f3fb-200d-2696-fe0f.svg new file mode 100644 index 0000000000..574cad0fe1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb-200d-2708-fe0f.svg b/priv/static/emoji/1f469-1f3fb-200d-2708-fe0f.svg new file mode 100644 index 0000000000..5cd08b3243 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fb.svg b/priv/static/emoji/1f469-1f3fb.svg new file mode 100644 index 0000000000..b44725bbff --- /dev/null +++ b/priv/static/emoji/1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f33e.svg b/priv/static/emoji/1f469-1f3fc-200d-1f33e.svg new file mode 100644 index 0000000000..7a30a98239 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f373.svg b/priv/static/emoji/1f469-1f3fc-200d-1f373.svg new file mode 100644 index 0000000000..4ef7a7ff81 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f393.svg b/priv/static/emoji/1f469-1f3fc-200d-1f393.svg new file mode 100644 index 0000000000..d045ed82ac --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f3a4.svg b/priv/static/emoji/1f469-1f3fc-200d-1f3a4.svg new file mode 100644 index 0000000000..210cd6c49d --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f3a8.svg b/priv/static/emoji/1f469-1f3fc-200d-1f3a8.svg new file mode 100644 index 0000000000..7d83bc06ee --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f3eb.svg b/priv/static/emoji/1f469-1f3fc-200d-1f3eb.svg new file mode 100644 index 0000000000..2ddfeb1e7c --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f3ed.svg b/priv/static/emoji/1f469-1f3fc-200d-1f3ed.svg new file mode 100644 index 0000000000..ab815ee2cb --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f4bb.svg b/priv/static/emoji/1f469-1f3fc-200d-1f4bb.svg new file mode 100644 index 0000000000..ab3600e606 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f4bc.svg b/priv/static/emoji/1f469-1f3fc-200d-1f4bc.svg new file mode 100644 index 0000000000..b117aa6648 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f527.svg b/priv/static/emoji/1f469-1f3fc-200d-1f527.svg new file mode 100644 index 0000000000..5f2b878a19 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f52c.svg b/priv/static/emoji/1f469-1f3fc-200d-1f52c.svg new file mode 100644 index 0000000000..dfb93eec91 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f680.svg b/priv/static/emoji/1f469-1f3fc-200d-1f680.svg new file mode 100644 index 0000000000..39635e275f --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f692.svg b/priv/static/emoji/1f469-1f3fc-200d-1f692.svg new file mode 100644 index 0000000000..676cf60ac5 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..53e58734c2 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 0000000000..16f7953079 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 0000000000..47dd9158e9 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 0000000000..2cdda31da1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 0000000000..0939b16d8b --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f9af.svg b/priv/static/emoji/1f469-1f3fc-200d-1f9af.svg new file mode 100644 index 0000000000..ad8806b3f9 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f9b0.svg b/priv/static/emoji/1f469-1f3fc-200d-1f9b0.svg new file mode 100644 index 0000000000..179dedb80f --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f9b1.svg b/priv/static/emoji/1f469-1f3fc-200d-1f9b1.svg new file mode 100644 index 0000000000..4594647a24 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f9b2.svg b/priv/static/emoji/1f469-1f3fc-200d-1f9b2.svg new file mode 100644 index 0000000000..8da4ee5282 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f9b3.svg b/priv/static/emoji/1f469-1f3fc-200d-1f9b3.svg new file mode 100644 index 0000000000..99ffa0d033 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f9bc.svg b/priv/static/emoji/1f469-1f3fc-200d-1f9bc.svg new file mode 100644 index 0000000000..ffea3a289b --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-1f9bd.svg b/priv/static/emoji/1f469-1f3fc-200d-1f9bd.svg new file mode 100644 index 0000000000..39843afd33 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-2695-fe0f.svg b/priv/static/emoji/1f469-1f3fc-200d-2695-fe0f.svg new file mode 100644 index 0000000000..0bb189f47b --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-2696-fe0f.svg b/priv/static/emoji/1f469-1f3fc-200d-2696-fe0f.svg new file mode 100644 index 0000000000..44cbc897c6 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc-200d-2708-fe0f.svg b/priv/static/emoji/1f469-1f3fc-200d-2708-fe0f.svg new file mode 100644 index 0000000000..3fc9536fd2 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fc.svg b/priv/static/emoji/1f469-1f3fc.svg new file mode 100644 index 0000000000..7c3ba63356 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f33e.svg b/priv/static/emoji/1f469-1f3fd-200d-1f33e.svg new file mode 100644 index 0000000000..841df90a90 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f373.svg b/priv/static/emoji/1f469-1f3fd-200d-1f373.svg new file mode 100644 index 0000000000..c76e15f1be --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f393.svg b/priv/static/emoji/1f469-1f3fd-200d-1f393.svg new file mode 100644 index 0000000000..eead9a2fb9 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f3a4.svg b/priv/static/emoji/1f469-1f3fd-200d-1f3a4.svg new file mode 100644 index 0000000000..5e589ad931 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f3a8.svg b/priv/static/emoji/1f469-1f3fd-200d-1f3a8.svg new file mode 100644 index 0000000000..e97e8d9f64 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f3eb.svg b/priv/static/emoji/1f469-1f3fd-200d-1f3eb.svg new file mode 100644 index 0000000000..2d44722125 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f3ed.svg b/priv/static/emoji/1f469-1f3fd-200d-1f3ed.svg new file mode 100644 index 0000000000..dd6e627f94 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f4bb.svg b/priv/static/emoji/1f469-1f3fd-200d-1f4bb.svg new file mode 100644 index 0000000000..c036ad1e7c --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f4bc.svg b/priv/static/emoji/1f469-1f3fd-200d-1f4bc.svg new file mode 100644 index 0000000000..e89a5b1106 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f527.svg b/priv/static/emoji/1f469-1f3fd-200d-1f527.svg new file mode 100644 index 0000000000..ba2b753f6c --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f52c.svg b/priv/static/emoji/1f469-1f3fd-200d-1f52c.svg new file mode 100644 index 0000000000..bb686deb22 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f680.svg b/priv/static/emoji/1f469-1f3fd-200d-1f680.svg new file mode 100644 index 0000000000..21ff7a7a36 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f692.svg b/priv/static/emoji/1f469-1f3fd-200d-1f692.svg new file mode 100644 index 0000000000..76f000c753 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..adf04f14ea --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 0000000000..724aede5b4 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 0000000000..6ab1b4275e --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 0000000000..edfadd0959 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 0000000000..6a909b143e --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg new file mode 100644 index 0000000000..9ec331669c --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f91d-200d-1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f9af.svg b/priv/static/emoji/1f469-1f3fd-200d-1f9af.svg new file mode 100644 index 0000000000..c17b0ed288 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f9b0.svg b/priv/static/emoji/1f469-1f3fd-200d-1f9b0.svg new file mode 100644 index 0000000000..7a1df80efb --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f9b1.svg b/priv/static/emoji/1f469-1f3fd-200d-1f9b1.svg new file mode 100644 index 0000000000..5434a54a1b --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f9b2.svg b/priv/static/emoji/1f469-1f3fd-200d-1f9b2.svg new file mode 100644 index 0000000000..7881eb73a1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f9b3.svg b/priv/static/emoji/1f469-1f3fd-200d-1f9b3.svg new file mode 100644 index 0000000000..25ff515145 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f9bc.svg b/priv/static/emoji/1f469-1f3fd-200d-1f9bc.svg new file mode 100644 index 0000000000..7983453149 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-1f9bd.svg b/priv/static/emoji/1f469-1f3fd-200d-1f9bd.svg new file mode 100644 index 0000000000..c128386d54 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-2695-fe0f.svg b/priv/static/emoji/1f469-1f3fd-200d-2695-fe0f.svg new file mode 100644 index 0000000000..d0b51ac682 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-2696-fe0f.svg b/priv/static/emoji/1f469-1f3fd-200d-2696-fe0f.svg new file mode 100644 index 0000000000..8a1993e37d --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd-200d-2708-fe0f.svg b/priv/static/emoji/1f469-1f3fd-200d-2708-fe0f.svg new file mode 100644 index 0000000000..e1fc6c3e53 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fd.svg b/priv/static/emoji/1f469-1f3fd.svg new file mode 100644 index 0000000000..5dba957ade --- /dev/null +++ b/priv/static/emoji/1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f33e.svg b/priv/static/emoji/1f469-1f3fe-200d-1f33e.svg new file mode 100644 index 0000000000..7570c37637 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f373.svg b/priv/static/emoji/1f469-1f3fe-200d-1f373.svg new file mode 100644 index 0000000000..9e7522ea5b --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f393.svg b/priv/static/emoji/1f469-1f3fe-200d-1f393.svg new file mode 100644 index 0000000000..4d4967b05d --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f3a4.svg b/priv/static/emoji/1f469-1f3fe-200d-1f3a4.svg new file mode 100644 index 0000000000..de1f4f0847 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f3a8.svg b/priv/static/emoji/1f469-1f3fe-200d-1f3a8.svg new file mode 100644 index 0000000000..5a08cb6385 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f3eb.svg b/priv/static/emoji/1f469-1f3fe-200d-1f3eb.svg new file mode 100644 index 0000000000..5908aebaca --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f3ed.svg b/priv/static/emoji/1f469-1f3fe-200d-1f3ed.svg new file mode 100644 index 0000000000..626a1f04de --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f4bb.svg b/priv/static/emoji/1f469-1f3fe-200d-1f4bb.svg new file mode 100644 index 0000000000..86d044ec26 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f4bc.svg b/priv/static/emoji/1f469-1f3fe-200d-1f4bc.svg new file mode 100644 index 0000000000..f67b33b2fc --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f527.svg b/priv/static/emoji/1f469-1f3fe-200d-1f527.svg new file mode 100644 index 0000000000..a3a47a0869 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f52c.svg b/priv/static/emoji/1f469-1f3fe-200d-1f52c.svg new file mode 100644 index 0000000000..984578cb55 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f680.svg b/priv/static/emoji/1f469-1f3fe-200d-1f680.svg new file mode 100644 index 0000000000..882cf48590 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f692.svg b/priv/static/emoji/1f469-1f3fe-200d-1f692.svg new file mode 100644 index 0000000000..5b666b0d87 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..c14a8e794b --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 0000000000..dff165ed57 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 0000000000..19a8dab4ca --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg new file mode 100644 index 0000000000..6040c7be6a --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f468-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 0000000000..77a4bce68d --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg new file mode 100644 index 0000000000..c30ccdf213 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg new file mode 100644 index 0000000000..aa913dc932 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f91d-200d-1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f9af.svg b/priv/static/emoji/1f469-1f3fe-200d-1f9af.svg new file mode 100644 index 0000000000..3b4b53958a --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f9b0.svg b/priv/static/emoji/1f469-1f3fe-200d-1f9b0.svg new file mode 100644 index 0000000000..a10b4cb4cd --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f9b1.svg b/priv/static/emoji/1f469-1f3fe-200d-1f9b1.svg new file mode 100644 index 0000000000..8b866fffae --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f9b2.svg b/priv/static/emoji/1f469-1f3fe-200d-1f9b2.svg new file mode 100644 index 0000000000..3e7738c70e --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f9b3.svg b/priv/static/emoji/1f469-1f3fe-200d-1f9b3.svg new file mode 100644 index 0000000000..50ad4ea228 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f9bc.svg b/priv/static/emoji/1f469-1f3fe-200d-1f9bc.svg new file mode 100644 index 0000000000..ba5ca05435 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-1f9bd.svg b/priv/static/emoji/1f469-1f3fe-200d-1f9bd.svg new file mode 100644 index 0000000000..f481961b19 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-2695-fe0f.svg b/priv/static/emoji/1f469-1f3fe-200d-2695-fe0f.svg new file mode 100644 index 0000000000..a6b5ffc456 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-2696-fe0f.svg b/priv/static/emoji/1f469-1f3fe-200d-2696-fe0f.svg new file mode 100644 index 0000000000..06110b7664 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe-200d-2708-fe0f.svg b/priv/static/emoji/1f469-1f3fe-200d-2708-fe0f.svg new file mode 100644 index 0000000000..74c44cd782 --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3fe.svg b/priv/static/emoji/1f469-1f3fe.svg new file mode 100644 index 0000000000..4539d0eebc --- /dev/null +++ b/priv/static/emoji/1f469-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f33e.svg b/priv/static/emoji/1f469-1f3ff-200d-1f33e.svg new file mode 100644 index 0000000000..2d1476ec84 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f373.svg b/priv/static/emoji/1f469-1f3ff-200d-1f373.svg new file mode 100644 index 0000000000..c9cafcfca5 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f393.svg b/priv/static/emoji/1f469-1f3ff-200d-1f393.svg new file mode 100644 index 0000000000..9345659755 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f3a4.svg b/priv/static/emoji/1f469-1f3ff-200d-1f3a4.svg new file mode 100644 index 0000000000..c182d216c7 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f3a8.svg b/priv/static/emoji/1f469-1f3ff-200d-1f3a8.svg new file mode 100644 index 0000000000..fc1e99eabe --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f3eb.svg b/priv/static/emoji/1f469-1f3ff-200d-1f3eb.svg new file mode 100644 index 0000000000..c92782c760 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f3ed.svg b/priv/static/emoji/1f469-1f3ff-200d-1f3ed.svg new file mode 100644 index 0000000000..599992fee4 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f4bb.svg b/priv/static/emoji/1f469-1f3ff-200d-1f4bb.svg new file mode 100644 index 0000000000..e73241a28a --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f4bc.svg b/priv/static/emoji/1f469-1f3ff-200d-1f4bc.svg new file mode 100644 index 0000000000..e283c0081f --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f527.svg b/priv/static/emoji/1f469-1f3ff-200d-1f527.svg new file mode 100644 index 0000000000..651969420d --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f52c.svg b/priv/static/emoji/1f469-1f3ff-200d-1f52c.svg new file mode 100644 index 0000000000..cdf068ba66 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f680.svg b/priv/static/emoji/1f469-1f3ff-200d-1f680.svg new file mode 100644 index 0000000000..636a9fe222 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f692.svg b/priv/static/emoji/1f469-1f3ff-200d-1f692.svg new file mode 100644 index 0000000000..6858933752 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg new file mode 100644 index 0000000000..cbcfecadc5 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg new file mode 100644 index 0000000000..fce4c91842 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg new file mode 100644 index 0000000000..84e2b2bd86 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg new file mode 100644 index 0000000000..d0ba4cd188 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f468-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg new file mode 100644 index 0000000000..bfbb93bbf6 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg new file mode 100644 index 0000000000..36dec92572 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg new file mode 100644 index 0000000000..f18bc69bc8 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg new file mode 100644 index 0000000000..ac2fe9944b --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f91d-200d-1f469-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f9af.svg b/priv/static/emoji/1f469-1f3ff-200d-1f9af.svg new file mode 100644 index 0000000000..aafa3bce67 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f9b0.svg b/priv/static/emoji/1f469-1f3ff-200d-1f9b0.svg new file mode 100644 index 0000000000..1ae85c6eb1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f9b1.svg b/priv/static/emoji/1f469-1f3ff-200d-1f9b1.svg new file mode 100644 index 0000000000..c2844211c1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f9b2.svg b/priv/static/emoji/1f469-1f3ff-200d-1f9b2.svg new file mode 100644 index 0000000000..f490be8bad --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f9b3.svg b/priv/static/emoji/1f469-1f3ff-200d-1f9b3.svg new file mode 100644 index 0000000000..cf3e39d6f6 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f9bc.svg b/priv/static/emoji/1f469-1f3ff-200d-1f9bc.svg new file mode 100644 index 0000000000..39f0c6a75e --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-1f9bd.svg b/priv/static/emoji/1f469-1f3ff-200d-1f9bd.svg new file mode 100644 index 0000000000..4eea4dc722 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-2695-fe0f.svg b/priv/static/emoji/1f469-1f3ff-200d-2695-fe0f.svg new file mode 100644 index 0000000000..7db92127b6 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-2696-fe0f.svg b/priv/static/emoji/1f469-1f3ff-200d-2696-fe0f.svg new file mode 100644 index 0000000000..4fe0541fcd --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff-200d-2708-fe0f.svg b/priv/static/emoji/1f469-1f3ff-200d-2708-fe0f.svg new file mode 100644 index 0000000000..1f4a7b6dd1 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-1f3ff.svg b/priv/static/emoji/1f469-1f3ff.svg new file mode 100644 index 0000000000..ac43b9ef35 --- /dev/null +++ b/priv/static/emoji/1f469-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f33e.svg b/priv/static/emoji/1f469-200d-1f33e.svg new file mode 100644 index 0000000000..c8974b5eac --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f33e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f373.svg b/priv/static/emoji/1f469-200d-1f373.svg new file mode 100644 index 0000000000..962deccd06 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f373.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f393.svg b/priv/static/emoji/1f469-200d-1f393.svg new file mode 100644 index 0000000000..47ad3e7c0b --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f393.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f3a4.svg b/priv/static/emoji/1f469-200d-1f3a4.svg new file mode 100644 index 0000000000..8aa5e4cec6 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f3a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f3a8.svg b/priv/static/emoji/1f469-200d-1f3a8.svg new file mode 100644 index 0000000000..6d4807eefc --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f3a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f3eb.svg b/priv/static/emoji/1f469-200d-1f3eb.svg new file mode 100644 index 0000000000..9a3e544509 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f3eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f3ed.svg b/priv/static/emoji/1f469-200d-1f3ed.svg new file mode 100644 index 0000000000..064bfd4d8b --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f3ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f466-200d-1f466.svg b/priv/static/emoji/1f469-200d-1f466-200d-1f466.svg new file mode 100644 index 0000000000..a10b0190a1 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f466.svg b/priv/static/emoji/1f469-200d-1f466.svg new file mode 100644 index 0000000000..6ae66b6494 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f467-200d-1f466.svg b/priv/static/emoji/1f469-200d-1f467-200d-1f466.svg new file mode 100644 index 0000000000..710fb8e5e2 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f467-200d-1f467.svg b/priv/static/emoji/1f469-200d-1f467-200d-1f467.svg new file mode 100644 index 0000000000..88da46ee19 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f467.svg b/priv/static/emoji/1f469-200d-1f467.svg new file mode 100644 index 0000000000..43e4333f35 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f469-200d-1f466-200d-1f466.svg b/priv/static/emoji/1f469-200d-1f469-200d-1f466-200d-1f466.svg new file mode 100644 index 0000000000..8915200c62 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f469-200d-1f466-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f469-200d-1f466.svg b/priv/static/emoji/1f469-200d-1f469-200d-1f466.svg new file mode 100644 index 0000000000..8cd8bad87b --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f469-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f469-200d-1f467-200d-1f466.svg b/priv/static/emoji/1f469-200d-1f469-200d-1f467-200d-1f466.svg new file mode 100644 index 0000000000..976e8481d0 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f469-200d-1f467-200d-1f466.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f469-200d-1f467-200d-1f467.svg b/priv/static/emoji/1f469-200d-1f469-200d-1f467-200d-1f467.svg new file mode 100644 index 0000000000..96e0434e4a --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f469-200d-1f467-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f469-200d-1f467.svg b/priv/static/emoji/1f469-200d-1f469-200d-1f467.svg new file mode 100644 index 0000000000..9201b66c41 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f469-200d-1f467.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f4bb.svg b/priv/static/emoji/1f469-200d-1f4bb.svg new file mode 100644 index 0000000000..c69729f373 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f4bc.svg b/priv/static/emoji/1f469-200d-1f4bc.svg new file mode 100644 index 0000000000..9f41d662c5 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f527.svg b/priv/static/emoji/1f469-200d-1f527.svg new file mode 100644 index 0000000000..24b160968e --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f52c.svg b/priv/static/emoji/1f469-200d-1f52c.svg new file mode 100644 index 0000000000..9597ebca40 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f680.svg b/priv/static/emoji/1f469-200d-1f680.svg new file mode 100644 index 0000000000..c4fdde46ac --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f692.svg b/priv/static/emoji/1f469-200d-1f692.svg new file mode 100644 index 0000000000..cbde12ecee --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f9af.svg b/priv/static/emoji/1f469-200d-1f9af.svg new file mode 100644 index 0000000000..fe5558732f --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f9af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f9b0.svg b/priv/static/emoji/1f469-200d-1f9b0.svg new file mode 100644 index 0000000000..68367e8f78 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f9b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f9b1.svg b/priv/static/emoji/1f469-200d-1f9b1.svg new file mode 100644 index 0000000000..62cc26b187 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f9b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f9b2.svg b/priv/static/emoji/1f469-200d-1f9b2.svg new file mode 100644 index 0000000000..3fd1004056 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f9b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f9b3.svg b/priv/static/emoji/1f469-200d-1f9b3.svg new file mode 100644 index 0000000000..1ce720e84a --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f9b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f9bc.svg b/priv/static/emoji/1f469-200d-1f9bc.svg new file mode 100644 index 0000000000..6706ec8156 --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f9bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-1f9bd.svg b/priv/static/emoji/1f469-200d-1f9bd.svg new file mode 100644 index 0000000000..1d6b02cfaa --- /dev/null +++ b/priv/static/emoji/1f469-200d-1f9bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-2695-fe0f.svg b/priv/static/emoji/1f469-200d-2695-fe0f.svg new file mode 100644 index 0000000000..efe29092c1 --- /dev/null +++ b/priv/static/emoji/1f469-200d-2695-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-2696-fe0f.svg b/priv/static/emoji/1f469-200d-2696-fe0f.svg new file mode 100644 index 0000000000..e8b489a72d --- /dev/null +++ b/priv/static/emoji/1f469-200d-2696-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-2708-fe0f.svg b/priv/static/emoji/1f469-200d-2708-fe0f.svg new file mode 100644 index 0000000000..953b06fd51 --- /dev/null +++ b/priv/static/emoji/1f469-200d-2708-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f468.svg b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f468.svg new file mode 100644 index 0000000000..ece280dc0d --- /dev/null +++ b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f469.svg b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f469.svg new file mode 100644 index 0000000000..62abb03e74 --- /dev/null +++ b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg new file mode 100644 index 0000000000..8248ed607b --- /dev/null +++ b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg new file mode 100644 index 0000000000..e46dfcaebd --- /dev/null +++ b/priv/static/emoji/1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f469.svg b/priv/static/emoji/1f469.svg new file mode 100644 index 0000000000..4178567713 --- /dev/null +++ b/priv/static/emoji/1f469.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46a.svg b/priv/static/emoji/1f46a.svg new file mode 100644 index 0000000000..8f5fad9f5e --- /dev/null +++ b/priv/static/emoji/1f46a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46b-1f3fb.svg b/priv/static/emoji/1f46b-1f3fb.svg new file mode 100644 index 0000000000..5fedd969b5 --- /dev/null +++ b/priv/static/emoji/1f46b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46b-1f3fc.svg b/priv/static/emoji/1f46b-1f3fc.svg new file mode 100644 index 0000000000..d5be6fe590 --- /dev/null +++ b/priv/static/emoji/1f46b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46b-1f3fd.svg b/priv/static/emoji/1f46b-1f3fd.svg new file mode 100644 index 0000000000..15c9bdfede --- /dev/null +++ b/priv/static/emoji/1f46b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46b-1f3fe.svg b/priv/static/emoji/1f46b-1f3fe.svg new file mode 100644 index 0000000000..54c46de874 --- /dev/null +++ b/priv/static/emoji/1f46b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46b-1f3ff.svg b/priv/static/emoji/1f46b-1f3ff.svg new file mode 100644 index 0000000000..e0cb1e2bb9 --- /dev/null +++ b/priv/static/emoji/1f46b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46b.svg b/priv/static/emoji/1f46b.svg new file mode 100644 index 0000000000..f7e46f2107 --- /dev/null +++ b/priv/static/emoji/1f46b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46c-1f3fb.svg b/priv/static/emoji/1f46c-1f3fb.svg new file mode 100644 index 0000000000..18c40167f1 --- /dev/null +++ b/priv/static/emoji/1f46c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46c-1f3fc.svg b/priv/static/emoji/1f46c-1f3fc.svg new file mode 100644 index 0000000000..c7665eaf9a --- /dev/null +++ b/priv/static/emoji/1f46c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46c-1f3fd.svg b/priv/static/emoji/1f46c-1f3fd.svg new file mode 100644 index 0000000000..adf95058f4 --- /dev/null +++ b/priv/static/emoji/1f46c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46c-1f3fe.svg b/priv/static/emoji/1f46c-1f3fe.svg new file mode 100644 index 0000000000..4846836595 --- /dev/null +++ b/priv/static/emoji/1f46c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46c-1f3ff.svg b/priv/static/emoji/1f46c-1f3ff.svg new file mode 100644 index 0000000000..f6fc112021 --- /dev/null +++ b/priv/static/emoji/1f46c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46c.svg b/priv/static/emoji/1f46c.svg new file mode 100644 index 0000000000..0aa9dcb33e --- /dev/null +++ b/priv/static/emoji/1f46c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46d-1f3fb.svg b/priv/static/emoji/1f46d-1f3fb.svg new file mode 100644 index 0000000000..8bc44aae26 --- /dev/null +++ b/priv/static/emoji/1f46d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46d-1f3fc.svg b/priv/static/emoji/1f46d-1f3fc.svg new file mode 100644 index 0000000000..555fcbb5bd --- /dev/null +++ b/priv/static/emoji/1f46d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46d-1f3fd.svg b/priv/static/emoji/1f46d-1f3fd.svg new file mode 100644 index 0000000000..5db65de5a7 --- /dev/null +++ b/priv/static/emoji/1f46d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46d-1f3fe.svg b/priv/static/emoji/1f46d-1f3fe.svg new file mode 100644 index 0000000000..d122ab64f1 --- /dev/null +++ b/priv/static/emoji/1f46d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46d-1f3ff.svg b/priv/static/emoji/1f46d-1f3ff.svg new file mode 100644 index 0000000000..5f292d55d1 --- /dev/null +++ b/priv/static/emoji/1f46d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46d.svg b/priv/static/emoji/1f46d.svg new file mode 100644 index 0000000000..8f8ea9cfbb --- /dev/null +++ b/priv/static/emoji/1f46d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f46e-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..3b9cc97805 --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f46e-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..25c4c81c30 --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fb.svg b/priv/static/emoji/1f46e-1f3fb.svg new file mode 100644 index 0000000000..25c4c81c30 --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f46e-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e3f37cb42e --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f46e-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..b2c47839df --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fc.svg b/priv/static/emoji/1f46e-1f3fc.svg new file mode 100644 index 0000000000..b2c47839df --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f46e-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..77b1974306 --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f46e-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..7e5e4b5d3f --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fd.svg b/priv/static/emoji/1f46e-1f3fd.svg new file mode 100644 index 0000000000..7e5e4b5d3f --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f46e-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..d40f400c23 --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f46e-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e817083a53 --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3fe.svg b/priv/static/emoji/1f46e-1f3fe.svg new file mode 100644 index 0000000000..e817083a53 --- /dev/null +++ b/priv/static/emoji/1f46e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f46e-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..43b98a0eeb --- /dev/null +++ b/priv/static/emoji/1f46e-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f46e-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..440cb510fc --- /dev/null +++ b/priv/static/emoji/1f46e-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-1f3ff.svg b/priv/static/emoji/1f46e-1f3ff.svg new file mode 100644 index 0000000000..440cb510fc --- /dev/null +++ b/priv/static/emoji/1f46e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-200d-2640-fe0f.svg b/priv/static/emoji/1f46e-200d-2640-fe0f.svg new file mode 100644 index 0000000000..6b0fac2254 --- /dev/null +++ b/priv/static/emoji/1f46e-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e-200d-2642-fe0f.svg b/priv/static/emoji/1f46e-200d-2642-fe0f.svg new file mode 100644 index 0000000000..2974c98479 --- /dev/null +++ b/priv/static/emoji/1f46e-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46e.svg b/priv/static/emoji/1f46e.svg new file mode 100644 index 0000000000..2974c98479 --- /dev/null +++ b/priv/static/emoji/1f46e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46f-200d-2640-fe0f.svg b/priv/static/emoji/1f46f-200d-2640-fe0f.svg new file mode 100644 index 0000000000..6559253b8e --- /dev/null +++ b/priv/static/emoji/1f46f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46f-200d-2642-fe0f.svg b/priv/static/emoji/1f46f-200d-2642-fe0f.svg new file mode 100644 index 0000000000..04254cd995 --- /dev/null +++ b/priv/static/emoji/1f46f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f46f.svg b/priv/static/emoji/1f46f.svg new file mode 100644 index 0000000000..6559253b8e --- /dev/null +++ b/priv/static/emoji/1f46f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f470-1f3fb.svg b/priv/static/emoji/1f470-1f3fb.svg new file mode 100644 index 0000000000..7691a70a34 --- /dev/null +++ b/priv/static/emoji/1f470-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f470-1f3fc.svg b/priv/static/emoji/1f470-1f3fc.svg new file mode 100644 index 0000000000..2ce98ebb14 --- /dev/null +++ b/priv/static/emoji/1f470-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f470-1f3fd.svg b/priv/static/emoji/1f470-1f3fd.svg new file mode 100644 index 0000000000..3d4070c421 --- /dev/null +++ b/priv/static/emoji/1f470-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f470-1f3fe.svg b/priv/static/emoji/1f470-1f3fe.svg new file mode 100644 index 0000000000..ac399c7fe8 --- /dev/null +++ b/priv/static/emoji/1f470-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f470-1f3ff.svg b/priv/static/emoji/1f470-1f3ff.svg new file mode 100644 index 0000000000..dc1166ecb4 --- /dev/null +++ b/priv/static/emoji/1f470-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f470.svg b/priv/static/emoji/1f470.svg new file mode 100644 index 0000000000..e68b5345bf --- /dev/null +++ b/priv/static/emoji/1f470.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f471-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e9427e1d15 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f471-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..8a5a329934 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fb.svg b/priv/static/emoji/1f471-1f3fb.svg new file mode 100644 index 0000000000..8a5a329934 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f471-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..7c3ba63356 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f471-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..8455a9edd6 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fc.svg b/priv/static/emoji/1f471-1f3fc.svg new file mode 100644 index 0000000000..8455a9edd6 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f471-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ae6c4f8295 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f471-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..4332b5b13b --- /dev/null +++ b/priv/static/emoji/1f471-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fd.svg b/priv/static/emoji/1f471-1f3fd.svg new file mode 100644 index 0000000000..4332b5b13b --- /dev/null +++ b/priv/static/emoji/1f471-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f471-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..33a7c3a005 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f471-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..c8461a9854 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3fe.svg b/priv/static/emoji/1f471-1f3fe.svg new file mode 100644 index 0000000000..c8461a9854 --- /dev/null +++ b/priv/static/emoji/1f471-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f471-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..7d3745fe5d --- /dev/null +++ b/priv/static/emoji/1f471-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f471-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..f91a87fef9 --- /dev/null +++ b/priv/static/emoji/1f471-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-1f3ff.svg b/priv/static/emoji/1f471-1f3ff.svg new file mode 100644 index 0000000000..f91a87fef9 --- /dev/null +++ b/priv/static/emoji/1f471-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-200d-2640-fe0f.svg b/priv/static/emoji/1f471-200d-2640-fe0f.svg new file mode 100644 index 0000000000..2fec72cd9c --- /dev/null +++ b/priv/static/emoji/1f471-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471-200d-2642-fe0f.svg b/priv/static/emoji/1f471-200d-2642-fe0f.svg new file mode 100644 index 0000000000..f73f9f5bb3 --- /dev/null +++ b/priv/static/emoji/1f471-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f471.svg b/priv/static/emoji/1f471.svg new file mode 100644 index 0000000000..f73f9f5bb3 --- /dev/null +++ b/priv/static/emoji/1f471.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f472-1f3fb.svg b/priv/static/emoji/1f472-1f3fb.svg new file mode 100644 index 0000000000..598b23cd44 --- /dev/null +++ b/priv/static/emoji/1f472-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f472-1f3fc.svg b/priv/static/emoji/1f472-1f3fc.svg new file mode 100644 index 0000000000..f57b59f1c1 --- /dev/null +++ b/priv/static/emoji/1f472-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f472-1f3fd.svg b/priv/static/emoji/1f472-1f3fd.svg new file mode 100644 index 0000000000..a4f37c4f1c --- /dev/null +++ b/priv/static/emoji/1f472-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f472-1f3fe.svg b/priv/static/emoji/1f472-1f3fe.svg new file mode 100644 index 0000000000..83322d6922 --- /dev/null +++ b/priv/static/emoji/1f472-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f472-1f3ff.svg b/priv/static/emoji/1f472-1f3ff.svg new file mode 100644 index 0000000000..e1ae612f95 --- /dev/null +++ b/priv/static/emoji/1f472-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f472.svg b/priv/static/emoji/1f472.svg new file mode 100644 index 0000000000..7ed6bd5329 --- /dev/null +++ b/priv/static/emoji/1f472.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f473-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..f93ddcc6bb --- /dev/null +++ b/priv/static/emoji/1f473-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f473-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..bb59f11992 --- /dev/null +++ b/priv/static/emoji/1f473-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fb.svg b/priv/static/emoji/1f473-1f3fb.svg new file mode 100644 index 0000000000..bb59f11992 --- /dev/null +++ b/priv/static/emoji/1f473-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f473-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..be21bc7da0 --- /dev/null +++ b/priv/static/emoji/1f473-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f473-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..3e748c39bc --- /dev/null +++ b/priv/static/emoji/1f473-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fc.svg b/priv/static/emoji/1f473-1f3fc.svg new file mode 100644 index 0000000000..3e748c39bc --- /dev/null +++ b/priv/static/emoji/1f473-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f473-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..61590f0248 --- /dev/null +++ b/priv/static/emoji/1f473-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f473-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..2373c1dc7c --- /dev/null +++ b/priv/static/emoji/1f473-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fd.svg b/priv/static/emoji/1f473-1f3fd.svg new file mode 100644 index 0000000000..2373c1dc7c --- /dev/null +++ b/priv/static/emoji/1f473-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f473-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..cf5b06926b --- /dev/null +++ b/priv/static/emoji/1f473-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f473-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..bc680e6dc3 --- /dev/null +++ b/priv/static/emoji/1f473-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3fe.svg b/priv/static/emoji/1f473-1f3fe.svg new file mode 100644 index 0000000000..bc680e6dc3 --- /dev/null +++ b/priv/static/emoji/1f473-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f473-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..20c6ba1c96 --- /dev/null +++ b/priv/static/emoji/1f473-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f473-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..6f0f3c59f4 --- /dev/null +++ b/priv/static/emoji/1f473-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-1f3ff.svg b/priv/static/emoji/1f473-1f3ff.svg new file mode 100644 index 0000000000..6f0f3c59f4 --- /dev/null +++ b/priv/static/emoji/1f473-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-200d-2640-fe0f.svg b/priv/static/emoji/1f473-200d-2640-fe0f.svg new file mode 100644 index 0000000000..9fe3052c09 --- /dev/null +++ b/priv/static/emoji/1f473-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473-200d-2642-fe0f.svg b/priv/static/emoji/1f473-200d-2642-fe0f.svg new file mode 100644 index 0000000000..5ef43d40a6 --- /dev/null +++ b/priv/static/emoji/1f473-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f473.svg b/priv/static/emoji/1f473.svg new file mode 100644 index 0000000000..5ef43d40a6 --- /dev/null +++ b/priv/static/emoji/1f473.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f474-1f3fb.svg b/priv/static/emoji/1f474-1f3fb.svg new file mode 100644 index 0000000000..307f6c9ab9 --- /dev/null +++ b/priv/static/emoji/1f474-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f474-1f3fc.svg b/priv/static/emoji/1f474-1f3fc.svg new file mode 100644 index 0000000000..6b3b908b2c --- /dev/null +++ b/priv/static/emoji/1f474-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f474-1f3fd.svg b/priv/static/emoji/1f474-1f3fd.svg new file mode 100644 index 0000000000..1ab3c23c8b --- /dev/null +++ b/priv/static/emoji/1f474-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f474-1f3fe.svg b/priv/static/emoji/1f474-1f3fe.svg new file mode 100644 index 0000000000..2fb9707f36 --- /dev/null +++ b/priv/static/emoji/1f474-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f474-1f3ff.svg b/priv/static/emoji/1f474-1f3ff.svg new file mode 100644 index 0000000000..e421b1177e --- /dev/null +++ b/priv/static/emoji/1f474-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f474.svg b/priv/static/emoji/1f474.svg new file mode 100644 index 0000000000..eecf20c79c --- /dev/null +++ b/priv/static/emoji/1f474.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f475-1f3fb.svg b/priv/static/emoji/1f475-1f3fb.svg new file mode 100644 index 0000000000..d55f164ca3 --- /dev/null +++ b/priv/static/emoji/1f475-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f475-1f3fc.svg b/priv/static/emoji/1f475-1f3fc.svg new file mode 100644 index 0000000000..41b7da72c7 --- /dev/null +++ b/priv/static/emoji/1f475-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f475-1f3fd.svg b/priv/static/emoji/1f475-1f3fd.svg new file mode 100644 index 0000000000..955ae93ffc --- /dev/null +++ b/priv/static/emoji/1f475-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f475-1f3fe.svg b/priv/static/emoji/1f475-1f3fe.svg new file mode 100644 index 0000000000..adb2c20b24 --- /dev/null +++ b/priv/static/emoji/1f475-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f475-1f3ff.svg b/priv/static/emoji/1f475-1f3ff.svg new file mode 100644 index 0000000000..98b4bf83a6 --- /dev/null +++ b/priv/static/emoji/1f475-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f475.svg b/priv/static/emoji/1f475.svg new file mode 100644 index 0000000000..51867613bb --- /dev/null +++ b/priv/static/emoji/1f475.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f476-1f3fb.svg b/priv/static/emoji/1f476-1f3fb.svg new file mode 100644 index 0000000000..44510c6a18 --- /dev/null +++ b/priv/static/emoji/1f476-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f476-1f3fc.svg b/priv/static/emoji/1f476-1f3fc.svg new file mode 100644 index 0000000000..fe37aa3a4e --- /dev/null +++ b/priv/static/emoji/1f476-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f476-1f3fd.svg b/priv/static/emoji/1f476-1f3fd.svg new file mode 100644 index 0000000000..fe23a4af0d --- /dev/null +++ b/priv/static/emoji/1f476-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f476-1f3fe.svg b/priv/static/emoji/1f476-1f3fe.svg new file mode 100644 index 0000000000..492d74083e --- /dev/null +++ b/priv/static/emoji/1f476-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f476-1f3ff.svg b/priv/static/emoji/1f476-1f3ff.svg new file mode 100644 index 0000000000..66853c966c --- /dev/null +++ b/priv/static/emoji/1f476-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f476.svg b/priv/static/emoji/1f476.svg new file mode 100644 index 0000000000..e065d3b4ad --- /dev/null +++ b/priv/static/emoji/1f476.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f477-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..52408815e9 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f477-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..bbe5b3aab6 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fb.svg b/priv/static/emoji/1f477-1f3fb.svg new file mode 100644 index 0000000000..bbe5b3aab6 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f477-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..1f1a29cd58 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f477-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..de96731755 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fc.svg b/priv/static/emoji/1f477-1f3fc.svg new file mode 100644 index 0000000000..de96731755 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f477-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..59412f2fcb --- /dev/null +++ b/priv/static/emoji/1f477-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f477-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..a7c900da64 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fd.svg b/priv/static/emoji/1f477-1f3fd.svg new file mode 100644 index 0000000000..a7c900da64 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f477-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8fb9e37875 --- /dev/null +++ b/priv/static/emoji/1f477-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f477-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..4fa4d68c8e --- /dev/null +++ b/priv/static/emoji/1f477-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3fe.svg b/priv/static/emoji/1f477-1f3fe.svg new file mode 100644 index 0000000000..4fa4d68c8e --- /dev/null +++ b/priv/static/emoji/1f477-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f477-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..23c567e240 --- /dev/null +++ b/priv/static/emoji/1f477-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f477-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..a494321844 --- /dev/null +++ b/priv/static/emoji/1f477-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-1f3ff.svg b/priv/static/emoji/1f477-1f3ff.svg new file mode 100644 index 0000000000..a494321844 --- /dev/null +++ b/priv/static/emoji/1f477-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-200d-2640-fe0f.svg b/priv/static/emoji/1f477-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ecfd1b8298 --- /dev/null +++ b/priv/static/emoji/1f477-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477-200d-2642-fe0f.svg b/priv/static/emoji/1f477-200d-2642-fe0f.svg new file mode 100644 index 0000000000..d1e6b36d42 --- /dev/null +++ b/priv/static/emoji/1f477-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f477.svg b/priv/static/emoji/1f477.svg new file mode 100644 index 0000000000..d1e6b36d42 --- /dev/null +++ b/priv/static/emoji/1f477.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f478-1f3fb.svg b/priv/static/emoji/1f478-1f3fb.svg new file mode 100644 index 0000000000..55dac0b157 --- /dev/null +++ b/priv/static/emoji/1f478-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f478-1f3fc.svg b/priv/static/emoji/1f478-1f3fc.svg new file mode 100644 index 0000000000..2a4b944e43 --- /dev/null +++ b/priv/static/emoji/1f478-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f478-1f3fd.svg b/priv/static/emoji/1f478-1f3fd.svg new file mode 100644 index 0000000000..ee32135588 --- /dev/null +++ b/priv/static/emoji/1f478-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f478-1f3fe.svg b/priv/static/emoji/1f478-1f3fe.svg new file mode 100644 index 0000000000..33437aabbf --- /dev/null +++ b/priv/static/emoji/1f478-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f478-1f3ff.svg b/priv/static/emoji/1f478-1f3ff.svg new file mode 100644 index 0000000000..2bd03cc18f --- /dev/null +++ b/priv/static/emoji/1f478-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f478.svg b/priv/static/emoji/1f478.svg new file mode 100644 index 0000000000..9704853c64 --- /dev/null +++ b/priv/static/emoji/1f478.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f479.svg b/priv/static/emoji/1f479.svg new file mode 100644 index 0000000000..59babb1525 --- /dev/null +++ b/priv/static/emoji/1f479.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47a.svg b/priv/static/emoji/1f47a.svg new file mode 100644 index 0000000000..bb0db744a3 --- /dev/null +++ b/priv/static/emoji/1f47a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47b.svg b/priv/static/emoji/1f47b.svg new file mode 100644 index 0000000000..02e70fabb9 --- /dev/null +++ b/priv/static/emoji/1f47b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47c-1f3fb.svg b/priv/static/emoji/1f47c-1f3fb.svg new file mode 100644 index 0000000000..7a20bd0772 --- /dev/null +++ b/priv/static/emoji/1f47c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47c-1f3fc.svg b/priv/static/emoji/1f47c-1f3fc.svg new file mode 100644 index 0000000000..5e63fc02f7 --- /dev/null +++ b/priv/static/emoji/1f47c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47c-1f3fd.svg b/priv/static/emoji/1f47c-1f3fd.svg new file mode 100644 index 0000000000..17ed0f6088 --- /dev/null +++ b/priv/static/emoji/1f47c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47c-1f3fe.svg b/priv/static/emoji/1f47c-1f3fe.svg new file mode 100644 index 0000000000..208876d879 --- /dev/null +++ b/priv/static/emoji/1f47c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47c-1f3ff.svg b/priv/static/emoji/1f47c-1f3ff.svg new file mode 100644 index 0000000000..add446279c --- /dev/null +++ b/priv/static/emoji/1f47c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47c.svg b/priv/static/emoji/1f47c.svg new file mode 100644 index 0000000000..1233b93aed --- /dev/null +++ b/priv/static/emoji/1f47c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47d.svg b/priv/static/emoji/1f47d.svg new file mode 100644 index 0000000000..f6e98d1c14 --- /dev/null +++ b/priv/static/emoji/1f47d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47e.svg b/priv/static/emoji/1f47e.svg new file mode 100644 index 0000000000..cda3444127 --- /dev/null +++ b/priv/static/emoji/1f47e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f47f.svg b/priv/static/emoji/1f47f.svg new file mode 100644 index 0000000000..61097f02f3 --- /dev/null +++ b/priv/static/emoji/1f47f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f480.svg b/priv/static/emoji/1f480.svg new file mode 100644 index 0000000000..a8000b1540 --- /dev/null +++ b/priv/static/emoji/1f480.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f481-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..c3f18727de --- /dev/null +++ b/priv/static/emoji/1f481-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f481-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1b649a27a8 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fb.svg b/priv/static/emoji/1f481-1f3fb.svg new file mode 100644 index 0000000000..c3f18727de --- /dev/null +++ b/priv/static/emoji/1f481-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f481-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..c3e88dcd59 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f481-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..49c9b730bb --- /dev/null +++ b/priv/static/emoji/1f481-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fc.svg b/priv/static/emoji/1f481-1f3fc.svg new file mode 100644 index 0000000000..c3e88dcd59 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f481-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8b53b30060 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f481-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..bee2e017f9 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fd.svg b/priv/static/emoji/1f481-1f3fd.svg new file mode 100644 index 0000000000..8b53b30060 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f481-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..11e4e83207 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f481-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..70d2da2c8c --- /dev/null +++ b/priv/static/emoji/1f481-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3fe.svg b/priv/static/emoji/1f481-1f3fe.svg new file mode 100644 index 0000000000..11e4e83207 --- /dev/null +++ b/priv/static/emoji/1f481-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f481-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e55c1eddf9 --- /dev/null +++ b/priv/static/emoji/1f481-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f481-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..7fcad0d8b7 --- /dev/null +++ b/priv/static/emoji/1f481-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-1f3ff.svg b/priv/static/emoji/1f481-1f3ff.svg new file mode 100644 index 0000000000..e55c1eddf9 --- /dev/null +++ b/priv/static/emoji/1f481-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-200d-2640-fe0f.svg b/priv/static/emoji/1f481-200d-2640-fe0f.svg new file mode 100644 index 0000000000..7a4864fdea --- /dev/null +++ b/priv/static/emoji/1f481-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481-200d-2642-fe0f.svg b/priv/static/emoji/1f481-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1bb54337c0 --- /dev/null +++ b/priv/static/emoji/1f481-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f481.svg b/priv/static/emoji/1f481.svg new file mode 100644 index 0000000000..7a4864fdea --- /dev/null +++ b/priv/static/emoji/1f481.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f482-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..99f1919afe --- /dev/null +++ b/priv/static/emoji/1f482-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f482-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..c15d824fbb --- /dev/null +++ b/priv/static/emoji/1f482-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fb.svg b/priv/static/emoji/1f482-1f3fb.svg new file mode 100644 index 0000000000..c15d824fbb --- /dev/null +++ b/priv/static/emoji/1f482-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f482-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..04f10dd10a --- /dev/null +++ b/priv/static/emoji/1f482-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f482-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1e6689e481 --- /dev/null +++ b/priv/static/emoji/1f482-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fc.svg b/priv/static/emoji/1f482-1f3fc.svg new file mode 100644 index 0000000000..1e6689e481 --- /dev/null +++ b/priv/static/emoji/1f482-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f482-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ebddd61b38 --- /dev/null +++ b/priv/static/emoji/1f482-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f482-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..268da5487a --- /dev/null +++ b/priv/static/emoji/1f482-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fd.svg b/priv/static/emoji/1f482-1f3fd.svg new file mode 100644 index 0000000000..268da5487a --- /dev/null +++ b/priv/static/emoji/1f482-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f482-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..667d9ef9e1 --- /dev/null +++ b/priv/static/emoji/1f482-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f482-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..88b6c0f84e --- /dev/null +++ b/priv/static/emoji/1f482-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3fe.svg b/priv/static/emoji/1f482-1f3fe.svg new file mode 100644 index 0000000000..88b6c0f84e --- /dev/null +++ b/priv/static/emoji/1f482-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f482-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..208fa74e14 --- /dev/null +++ b/priv/static/emoji/1f482-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f482-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..831d1986ee --- /dev/null +++ b/priv/static/emoji/1f482-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-1f3ff.svg b/priv/static/emoji/1f482-1f3ff.svg new file mode 100644 index 0000000000..831d1986ee --- /dev/null +++ b/priv/static/emoji/1f482-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-200d-2640-fe0f.svg b/priv/static/emoji/1f482-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e8a33883f0 --- /dev/null +++ b/priv/static/emoji/1f482-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482-200d-2642-fe0f.svg b/priv/static/emoji/1f482-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e8998c5992 --- /dev/null +++ b/priv/static/emoji/1f482-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f482.svg b/priv/static/emoji/1f482.svg new file mode 100644 index 0000000000..e8998c5992 --- /dev/null +++ b/priv/static/emoji/1f482.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f483-1f3fb.svg b/priv/static/emoji/1f483-1f3fb.svg new file mode 100644 index 0000000000..72c8f2cef5 --- /dev/null +++ b/priv/static/emoji/1f483-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f483-1f3fc.svg b/priv/static/emoji/1f483-1f3fc.svg new file mode 100644 index 0000000000..972ac6a544 --- /dev/null +++ b/priv/static/emoji/1f483-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f483-1f3fd.svg b/priv/static/emoji/1f483-1f3fd.svg new file mode 100644 index 0000000000..50377b6873 --- /dev/null +++ b/priv/static/emoji/1f483-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f483-1f3fe.svg b/priv/static/emoji/1f483-1f3fe.svg new file mode 100644 index 0000000000..e4dde292fd --- /dev/null +++ b/priv/static/emoji/1f483-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f483-1f3ff.svg b/priv/static/emoji/1f483-1f3ff.svg new file mode 100644 index 0000000000..ac53506878 --- /dev/null +++ b/priv/static/emoji/1f483-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f483.svg b/priv/static/emoji/1f483.svg new file mode 100644 index 0000000000..abc19e5f7b --- /dev/null +++ b/priv/static/emoji/1f483.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f484.svg b/priv/static/emoji/1f484.svg new file mode 100644 index 0000000000..af7e861693 --- /dev/null +++ b/priv/static/emoji/1f484.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f485-1f3fb.svg b/priv/static/emoji/1f485-1f3fb.svg new file mode 100644 index 0000000000..5cfe6e9d9a --- /dev/null +++ b/priv/static/emoji/1f485-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f485-1f3fc.svg b/priv/static/emoji/1f485-1f3fc.svg new file mode 100644 index 0000000000..af54b518a1 --- /dev/null +++ b/priv/static/emoji/1f485-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f485-1f3fd.svg b/priv/static/emoji/1f485-1f3fd.svg new file mode 100644 index 0000000000..e1d99274e6 --- /dev/null +++ b/priv/static/emoji/1f485-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f485-1f3fe.svg b/priv/static/emoji/1f485-1f3fe.svg new file mode 100644 index 0000000000..18fea63169 --- /dev/null +++ b/priv/static/emoji/1f485-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f485-1f3ff.svg b/priv/static/emoji/1f485-1f3ff.svg new file mode 100644 index 0000000000..49176735c2 --- /dev/null +++ b/priv/static/emoji/1f485-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f485.svg b/priv/static/emoji/1f485.svg new file mode 100644 index 0000000000..2ddba93688 --- /dev/null +++ b/priv/static/emoji/1f485.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f486-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..28d27e296e --- /dev/null +++ b/priv/static/emoji/1f486-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f486-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..92d7d0b5ed --- /dev/null +++ b/priv/static/emoji/1f486-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fb.svg b/priv/static/emoji/1f486-1f3fb.svg new file mode 100644 index 0000000000..28d27e296e --- /dev/null +++ b/priv/static/emoji/1f486-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f486-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..dad79ad135 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f486-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..4627172b7a --- /dev/null +++ b/priv/static/emoji/1f486-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fc.svg b/priv/static/emoji/1f486-1f3fc.svg new file mode 100644 index 0000000000..dad79ad135 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f486-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..407d11b378 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f486-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e30946fe01 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fd.svg b/priv/static/emoji/1f486-1f3fd.svg new file mode 100644 index 0000000000..407d11b378 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f486-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..defbf61f62 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f486-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e7d5b9d818 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3fe.svg b/priv/static/emoji/1f486-1f3fe.svg new file mode 100644 index 0000000000..defbf61f62 --- /dev/null +++ b/priv/static/emoji/1f486-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f486-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..793967fdb0 --- /dev/null +++ b/priv/static/emoji/1f486-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f486-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..36fa5f9056 --- /dev/null +++ b/priv/static/emoji/1f486-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-1f3ff.svg b/priv/static/emoji/1f486-1f3ff.svg new file mode 100644 index 0000000000..793967fdb0 --- /dev/null +++ b/priv/static/emoji/1f486-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-200d-2640-fe0f.svg b/priv/static/emoji/1f486-200d-2640-fe0f.svg new file mode 100644 index 0000000000..de2053b8d0 --- /dev/null +++ b/priv/static/emoji/1f486-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486-200d-2642-fe0f.svg b/priv/static/emoji/1f486-200d-2642-fe0f.svg new file mode 100644 index 0000000000..39bb75b204 --- /dev/null +++ b/priv/static/emoji/1f486-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f486.svg b/priv/static/emoji/1f486.svg new file mode 100644 index 0000000000..4ff1d7a63e --- /dev/null +++ b/priv/static/emoji/1f486.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f487-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..3d2a27c641 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f487-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..d50a42985a --- /dev/null +++ b/priv/static/emoji/1f487-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fb.svg b/priv/static/emoji/1f487-1f3fb.svg new file mode 100644 index 0000000000..3d2a27c641 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f487-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..fc15653681 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f487-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..bc4c86b6d2 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fc.svg b/priv/static/emoji/1f487-1f3fc.svg new file mode 100644 index 0000000000..fc15653681 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f487-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..c2d9ec7113 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f487-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..89651cdb8e --- /dev/null +++ b/priv/static/emoji/1f487-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fd.svg b/priv/static/emoji/1f487-1f3fd.svg new file mode 100644 index 0000000000..c2d9ec7113 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f487-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ed2374cf31 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f487-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..8deb60dbc6 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3fe.svg b/priv/static/emoji/1f487-1f3fe.svg new file mode 100644 index 0000000000..ed2374cf31 --- /dev/null +++ b/priv/static/emoji/1f487-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f487-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..b8b4754c08 --- /dev/null +++ b/priv/static/emoji/1f487-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f487-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..ba85114d56 --- /dev/null +++ b/priv/static/emoji/1f487-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-1f3ff.svg b/priv/static/emoji/1f487-1f3ff.svg new file mode 100644 index 0000000000..b8b4754c08 --- /dev/null +++ b/priv/static/emoji/1f487-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-200d-2640-fe0f.svg b/priv/static/emoji/1f487-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8bfab80189 --- /dev/null +++ b/priv/static/emoji/1f487-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487-200d-2642-fe0f.svg b/priv/static/emoji/1f487-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e3bc6d90a8 --- /dev/null +++ b/priv/static/emoji/1f487-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f487.svg b/priv/static/emoji/1f487.svg new file mode 100644 index 0000000000..8bfab80189 --- /dev/null +++ b/priv/static/emoji/1f487.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f488.svg b/priv/static/emoji/1f488.svg new file mode 100644 index 0000000000..33ed332874 --- /dev/null +++ b/priv/static/emoji/1f488.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f489.svg b/priv/static/emoji/1f489.svg new file mode 100644 index 0000000000..ef9c72c741 --- /dev/null +++ b/priv/static/emoji/1f489.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f48a.svg b/priv/static/emoji/1f48a.svg new file mode 100644 index 0000000000..931839bfb3 --- /dev/null +++ b/priv/static/emoji/1f48a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f48b.svg b/priv/static/emoji/1f48b.svg new file mode 100644 index 0000000000..f71fc97fc0 --- /dev/null +++ b/priv/static/emoji/1f48b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f48c.svg b/priv/static/emoji/1f48c.svg new file mode 100644 index 0000000000..0734ecf239 --- /dev/null +++ b/priv/static/emoji/1f48c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f48d.svg b/priv/static/emoji/1f48d.svg new file mode 100644 index 0000000000..0834165960 --- /dev/null +++ b/priv/static/emoji/1f48d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f48e.svg b/priv/static/emoji/1f48e.svg new file mode 100644 index 0000000000..a379f7195f --- /dev/null +++ b/priv/static/emoji/1f48e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f48f.svg b/priv/static/emoji/1f48f.svg new file mode 100644 index 0000000000..8248ed607b --- /dev/null +++ b/priv/static/emoji/1f48f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f490.svg b/priv/static/emoji/1f490.svg new file mode 100644 index 0000000000..f080ef7f15 --- /dev/null +++ b/priv/static/emoji/1f490.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f491.svg b/priv/static/emoji/1f491.svg new file mode 100644 index 0000000000..ece280dc0d --- /dev/null +++ b/priv/static/emoji/1f491.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f492.svg b/priv/static/emoji/1f492.svg new file mode 100644 index 0000000000..974ddac8f7 --- /dev/null +++ b/priv/static/emoji/1f492.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f493.svg b/priv/static/emoji/1f493.svg new file mode 100644 index 0000000000..404a6e7694 --- /dev/null +++ b/priv/static/emoji/1f493.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f494.svg b/priv/static/emoji/1f494.svg new file mode 100644 index 0000000000..d50c770473 --- /dev/null +++ b/priv/static/emoji/1f494.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f495.svg b/priv/static/emoji/1f495.svg new file mode 100644 index 0000000000..b4b3216f35 --- /dev/null +++ b/priv/static/emoji/1f495.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f496.svg b/priv/static/emoji/1f496.svg new file mode 100644 index 0000000000..aa3abbca7c --- /dev/null +++ b/priv/static/emoji/1f496.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f497.svg b/priv/static/emoji/1f497.svg new file mode 100644 index 0000000000..295f9d48e8 --- /dev/null +++ b/priv/static/emoji/1f497.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f498.svg b/priv/static/emoji/1f498.svg new file mode 100644 index 0000000000..32d819fe4a --- /dev/null +++ b/priv/static/emoji/1f498.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f499.svg b/priv/static/emoji/1f499.svg new file mode 100644 index 0000000000..9eade12127 --- /dev/null +++ b/priv/static/emoji/1f499.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f49a.svg b/priv/static/emoji/1f49a.svg new file mode 100644 index 0000000000..b81f702925 --- /dev/null +++ b/priv/static/emoji/1f49a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f49b.svg b/priv/static/emoji/1f49b.svg new file mode 100644 index 0000000000..e57e2444a6 --- /dev/null +++ b/priv/static/emoji/1f49b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f49c.svg b/priv/static/emoji/1f49c.svg new file mode 100644 index 0000000000..f1dc073c9c --- /dev/null +++ b/priv/static/emoji/1f49c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f49d.svg b/priv/static/emoji/1f49d.svg new file mode 100644 index 0000000000..5db2632ff1 --- /dev/null +++ b/priv/static/emoji/1f49d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f49e.svg b/priv/static/emoji/1f49e.svg new file mode 100644 index 0000000000..b9459b7d56 --- /dev/null +++ b/priv/static/emoji/1f49e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f49f.svg b/priv/static/emoji/1f49f.svg new file mode 100644 index 0000000000..71adb414fd --- /dev/null +++ b/priv/static/emoji/1f49f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a0.svg b/priv/static/emoji/1f4a0.svg new file mode 100644 index 0000000000..9c8056560e --- /dev/null +++ b/priv/static/emoji/1f4a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a1.svg b/priv/static/emoji/1f4a1.svg new file mode 100644 index 0000000000..88b62e387a --- /dev/null +++ b/priv/static/emoji/1f4a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a2.svg b/priv/static/emoji/1f4a2.svg new file mode 100644 index 0000000000..78f797b3f3 --- /dev/null +++ b/priv/static/emoji/1f4a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a3.svg b/priv/static/emoji/1f4a3.svg new file mode 100644 index 0000000000..feb2c9d29c --- /dev/null +++ b/priv/static/emoji/1f4a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a4.svg b/priv/static/emoji/1f4a4.svg new file mode 100644 index 0000000000..b713e97a60 --- /dev/null +++ b/priv/static/emoji/1f4a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a5.svg b/priv/static/emoji/1f4a5.svg new file mode 100644 index 0000000000..36c50d63b0 --- /dev/null +++ b/priv/static/emoji/1f4a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a6.svg b/priv/static/emoji/1f4a6.svg new file mode 100644 index 0000000000..fd53cd8403 --- /dev/null +++ b/priv/static/emoji/1f4a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a7.svg b/priv/static/emoji/1f4a7.svg new file mode 100644 index 0000000000..3116ec3179 --- /dev/null +++ b/priv/static/emoji/1f4a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a8.svg b/priv/static/emoji/1f4a8.svg new file mode 100644 index 0000000000..006e04ad41 --- /dev/null +++ b/priv/static/emoji/1f4a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4a9.svg b/priv/static/emoji/1f4a9.svg new file mode 100644 index 0000000000..19221f6a61 --- /dev/null +++ b/priv/static/emoji/1f4a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4aa-1f3fb.svg b/priv/static/emoji/1f4aa-1f3fb.svg new file mode 100644 index 0000000000..63f868316c --- /dev/null +++ b/priv/static/emoji/1f4aa-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4aa-1f3fc.svg b/priv/static/emoji/1f4aa-1f3fc.svg new file mode 100644 index 0000000000..d9e082108d --- /dev/null +++ b/priv/static/emoji/1f4aa-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4aa-1f3fd.svg b/priv/static/emoji/1f4aa-1f3fd.svg new file mode 100644 index 0000000000..39820dbc77 --- /dev/null +++ b/priv/static/emoji/1f4aa-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4aa-1f3fe.svg b/priv/static/emoji/1f4aa-1f3fe.svg new file mode 100644 index 0000000000..d93cc7b9f3 --- /dev/null +++ b/priv/static/emoji/1f4aa-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4aa-1f3ff.svg b/priv/static/emoji/1f4aa-1f3ff.svg new file mode 100644 index 0000000000..d9b4481edd --- /dev/null +++ b/priv/static/emoji/1f4aa-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4aa.svg b/priv/static/emoji/1f4aa.svg new file mode 100644 index 0000000000..38a7bb525f --- /dev/null +++ b/priv/static/emoji/1f4aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ab.svg b/priv/static/emoji/1f4ab.svg new file mode 100644 index 0000000000..af3261c2d3 --- /dev/null +++ b/priv/static/emoji/1f4ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ac.svg b/priv/static/emoji/1f4ac.svg new file mode 100644 index 0000000000..11533c5b58 --- /dev/null +++ b/priv/static/emoji/1f4ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ad.svg b/priv/static/emoji/1f4ad.svg new file mode 100644 index 0000000000..f3d835c8e0 --- /dev/null +++ b/priv/static/emoji/1f4ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ae.svg b/priv/static/emoji/1f4ae.svg new file mode 100644 index 0000000000..7f8b52870c --- /dev/null +++ b/priv/static/emoji/1f4ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4af.svg b/priv/static/emoji/1f4af.svg new file mode 100644 index 0000000000..3d565cc64d --- /dev/null +++ b/priv/static/emoji/1f4af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b0.svg b/priv/static/emoji/1f4b0.svg new file mode 100644 index 0000000000..5b41c52d46 --- /dev/null +++ b/priv/static/emoji/1f4b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b1.svg b/priv/static/emoji/1f4b1.svg new file mode 100644 index 0000000000..b67b0cd493 --- /dev/null +++ b/priv/static/emoji/1f4b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b2.svg b/priv/static/emoji/1f4b2.svg new file mode 100644 index 0000000000..1bc1ead4f9 --- /dev/null +++ b/priv/static/emoji/1f4b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b3.svg b/priv/static/emoji/1f4b3.svg new file mode 100644 index 0000000000..97641af46a --- /dev/null +++ b/priv/static/emoji/1f4b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b4.svg b/priv/static/emoji/1f4b4.svg new file mode 100644 index 0000000000..5db237d4ee --- /dev/null +++ b/priv/static/emoji/1f4b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b5.svg b/priv/static/emoji/1f4b5.svg new file mode 100644 index 0000000000..113c6d0bba --- /dev/null +++ b/priv/static/emoji/1f4b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b6.svg b/priv/static/emoji/1f4b6.svg new file mode 100644 index 0000000000..1869987fef --- /dev/null +++ b/priv/static/emoji/1f4b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b7.svg b/priv/static/emoji/1f4b7.svg new file mode 100644 index 0000000000..93a16ff620 --- /dev/null +++ b/priv/static/emoji/1f4b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b8.svg b/priv/static/emoji/1f4b8.svg new file mode 100644 index 0000000000..d2d63ceb94 --- /dev/null +++ b/priv/static/emoji/1f4b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4b9.svg b/priv/static/emoji/1f4b9.svg new file mode 100644 index 0000000000..f6143a0662 --- /dev/null +++ b/priv/static/emoji/1f4b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ba.svg b/priv/static/emoji/1f4ba.svg new file mode 100644 index 0000000000..bf27bb1845 --- /dev/null +++ b/priv/static/emoji/1f4ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4bb.svg b/priv/static/emoji/1f4bb.svg new file mode 100644 index 0000000000..93357fa23b --- /dev/null +++ b/priv/static/emoji/1f4bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4bc.svg b/priv/static/emoji/1f4bc.svg new file mode 100644 index 0000000000..c5336c7581 --- /dev/null +++ b/priv/static/emoji/1f4bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4bd.svg b/priv/static/emoji/1f4bd.svg new file mode 100644 index 0000000000..a557b9bf22 --- /dev/null +++ b/priv/static/emoji/1f4bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4be.svg b/priv/static/emoji/1f4be.svg new file mode 100644 index 0000000000..7c97626958 --- /dev/null +++ b/priv/static/emoji/1f4be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4bf.svg b/priv/static/emoji/1f4bf.svg new file mode 100644 index 0000000000..6824a06417 --- /dev/null +++ b/priv/static/emoji/1f4bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c0.svg b/priv/static/emoji/1f4c0.svg new file mode 100644 index 0000000000..1b3b38b844 --- /dev/null +++ b/priv/static/emoji/1f4c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c1.svg b/priv/static/emoji/1f4c1.svg new file mode 100644 index 0000000000..099d58bac4 --- /dev/null +++ b/priv/static/emoji/1f4c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c2.svg b/priv/static/emoji/1f4c2.svg new file mode 100644 index 0000000000..60ec379473 --- /dev/null +++ b/priv/static/emoji/1f4c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c3.svg b/priv/static/emoji/1f4c3.svg new file mode 100644 index 0000000000..bf19ad2929 --- /dev/null +++ b/priv/static/emoji/1f4c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c4.svg b/priv/static/emoji/1f4c4.svg new file mode 100644 index 0000000000..4631bc5350 --- /dev/null +++ b/priv/static/emoji/1f4c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c5.svg b/priv/static/emoji/1f4c5.svg new file mode 100644 index 0000000000..ca68a82a6d --- /dev/null +++ b/priv/static/emoji/1f4c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c6.svg b/priv/static/emoji/1f4c6.svg new file mode 100644 index 0000000000..ff073d7424 --- /dev/null +++ b/priv/static/emoji/1f4c6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c7.svg b/priv/static/emoji/1f4c7.svg new file mode 100644 index 0000000000..097a7151a0 --- /dev/null +++ b/priv/static/emoji/1f4c7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c8.svg b/priv/static/emoji/1f4c8.svg new file mode 100644 index 0000000000..cbf108fc0c --- /dev/null +++ b/priv/static/emoji/1f4c8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4c9.svg b/priv/static/emoji/1f4c9.svg new file mode 100644 index 0000000000..ac8c258cc0 --- /dev/null +++ b/priv/static/emoji/1f4c9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ca.svg b/priv/static/emoji/1f4ca.svg new file mode 100644 index 0000000000..3c572cb853 --- /dev/null +++ b/priv/static/emoji/1f4ca.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4cb.svg b/priv/static/emoji/1f4cb.svg new file mode 100644 index 0000000000..a51b34a911 --- /dev/null +++ b/priv/static/emoji/1f4cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4cc.svg b/priv/static/emoji/1f4cc.svg new file mode 100644 index 0000000000..2ab6da3e14 --- /dev/null +++ b/priv/static/emoji/1f4cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4cd.svg b/priv/static/emoji/1f4cd.svg new file mode 100644 index 0000000000..8ab3159c53 --- /dev/null +++ b/priv/static/emoji/1f4cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ce.svg b/priv/static/emoji/1f4ce.svg new file mode 100644 index 0000000000..284cf6674b --- /dev/null +++ b/priv/static/emoji/1f4ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4cf.svg b/priv/static/emoji/1f4cf.svg new file mode 100644 index 0000000000..37b035b23d --- /dev/null +++ b/priv/static/emoji/1f4cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d0.svg b/priv/static/emoji/1f4d0.svg new file mode 100644 index 0000000000..b36515014f --- /dev/null +++ b/priv/static/emoji/1f4d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d1.svg b/priv/static/emoji/1f4d1.svg new file mode 100644 index 0000000000..b3bdc36ca1 --- /dev/null +++ b/priv/static/emoji/1f4d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d2.svg b/priv/static/emoji/1f4d2.svg new file mode 100644 index 0000000000..ee15b16892 --- /dev/null +++ b/priv/static/emoji/1f4d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d3.svg b/priv/static/emoji/1f4d3.svg new file mode 100644 index 0000000000..b6f49c051a --- /dev/null +++ b/priv/static/emoji/1f4d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d4.svg b/priv/static/emoji/1f4d4.svg new file mode 100644 index 0000000000..2bfc4cad5f --- /dev/null +++ b/priv/static/emoji/1f4d4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d5.svg b/priv/static/emoji/1f4d5.svg new file mode 100644 index 0000000000..701ff017c5 --- /dev/null +++ b/priv/static/emoji/1f4d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d6.svg b/priv/static/emoji/1f4d6.svg new file mode 100644 index 0000000000..0dfd083255 --- /dev/null +++ b/priv/static/emoji/1f4d6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d7.svg b/priv/static/emoji/1f4d7.svg new file mode 100644 index 0000000000..ff7474477d --- /dev/null +++ b/priv/static/emoji/1f4d7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d8.svg b/priv/static/emoji/1f4d8.svg new file mode 100644 index 0000000000..ce459283f3 --- /dev/null +++ b/priv/static/emoji/1f4d8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4d9.svg b/priv/static/emoji/1f4d9.svg new file mode 100644 index 0000000000..b055f66bb8 --- /dev/null +++ b/priv/static/emoji/1f4d9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4da.svg b/priv/static/emoji/1f4da.svg new file mode 100644 index 0000000000..422d388417 --- /dev/null +++ b/priv/static/emoji/1f4da.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4db.svg b/priv/static/emoji/1f4db.svg new file mode 100644 index 0000000000..00f1a1061e --- /dev/null +++ b/priv/static/emoji/1f4db.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4dc.svg b/priv/static/emoji/1f4dc.svg new file mode 100644 index 0000000000..2a7fd37d50 --- /dev/null +++ b/priv/static/emoji/1f4dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4dd.svg b/priv/static/emoji/1f4dd.svg new file mode 100644 index 0000000000..1697ffbec6 --- /dev/null +++ b/priv/static/emoji/1f4dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4de.svg b/priv/static/emoji/1f4de.svg new file mode 100644 index 0000000000..cfaf7ca8f7 --- /dev/null +++ b/priv/static/emoji/1f4de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4df.svg b/priv/static/emoji/1f4df.svg new file mode 100644 index 0000000000..d7d4b5fa59 --- /dev/null +++ b/priv/static/emoji/1f4df.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e0.svg b/priv/static/emoji/1f4e0.svg new file mode 100644 index 0000000000..5f88b1334a --- /dev/null +++ b/priv/static/emoji/1f4e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e1.svg b/priv/static/emoji/1f4e1.svg new file mode 100644 index 0000000000..dcb02946d3 --- /dev/null +++ b/priv/static/emoji/1f4e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e2.svg b/priv/static/emoji/1f4e2.svg new file mode 100644 index 0000000000..8bd0c94fb6 --- /dev/null +++ b/priv/static/emoji/1f4e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e3.svg b/priv/static/emoji/1f4e3.svg new file mode 100644 index 0000000000..20cbc7d437 --- /dev/null +++ b/priv/static/emoji/1f4e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e4.svg b/priv/static/emoji/1f4e4.svg new file mode 100644 index 0000000000..62d9033ec2 --- /dev/null +++ b/priv/static/emoji/1f4e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e5.svg b/priv/static/emoji/1f4e5.svg new file mode 100644 index 0000000000..921ca18a98 --- /dev/null +++ b/priv/static/emoji/1f4e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e6.svg b/priv/static/emoji/1f4e6.svg new file mode 100644 index 0000000000..1ce0961199 --- /dev/null +++ b/priv/static/emoji/1f4e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e7.svg b/priv/static/emoji/1f4e7.svg new file mode 100644 index 0000000000..d8ce780cee --- /dev/null +++ b/priv/static/emoji/1f4e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e8.svg b/priv/static/emoji/1f4e8.svg new file mode 100644 index 0000000000..7c59e93a40 --- /dev/null +++ b/priv/static/emoji/1f4e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4e9.svg b/priv/static/emoji/1f4e9.svg new file mode 100644 index 0000000000..1847cd13ca --- /dev/null +++ b/priv/static/emoji/1f4e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ea.svg b/priv/static/emoji/1f4ea.svg new file mode 100644 index 0000000000..54f609e926 --- /dev/null +++ b/priv/static/emoji/1f4ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4eb.svg b/priv/static/emoji/1f4eb.svg new file mode 100644 index 0000000000..79ea795a8c --- /dev/null +++ b/priv/static/emoji/1f4eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ec.svg b/priv/static/emoji/1f4ec.svg new file mode 100644 index 0000000000..27d6ebe61b --- /dev/null +++ b/priv/static/emoji/1f4ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ed.svg b/priv/static/emoji/1f4ed.svg new file mode 100644 index 0000000000..4e969c95cd --- /dev/null +++ b/priv/static/emoji/1f4ed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ee.svg b/priv/static/emoji/1f4ee.svg new file mode 100644 index 0000000000..61c0332d24 --- /dev/null +++ b/priv/static/emoji/1f4ee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ef.svg b/priv/static/emoji/1f4ef.svg new file mode 100644 index 0000000000..2fa1e2d47b --- /dev/null +++ b/priv/static/emoji/1f4ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f0.svg b/priv/static/emoji/1f4f0.svg new file mode 100644 index 0000000000..a97d4771ce --- /dev/null +++ b/priv/static/emoji/1f4f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f1.svg b/priv/static/emoji/1f4f1.svg new file mode 100644 index 0000000000..81c4e99cbd --- /dev/null +++ b/priv/static/emoji/1f4f1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f2.svg b/priv/static/emoji/1f4f2.svg new file mode 100644 index 0000000000..82f5293e7c --- /dev/null +++ b/priv/static/emoji/1f4f2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f3.svg b/priv/static/emoji/1f4f3.svg new file mode 100644 index 0000000000..287d5a9ddd --- /dev/null +++ b/priv/static/emoji/1f4f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f4.svg b/priv/static/emoji/1f4f4.svg new file mode 100644 index 0000000000..fc2d2cd4a0 --- /dev/null +++ b/priv/static/emoji/1f4f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f5.svg b/priv/static/emoji/1f4f5.svg new file mode 100644 index 0000000000..fdbab38c46 --- /dev/null +++ b/priv/static/emoji/1f4f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f6.svg b/priv/static/emoji/1f4f6.svg new file mode 100644 index 0000000000..df646fd3b0 --- /dev/null +++ b/priv/static/emoji/1f4f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f7.svg b/priv/static/emoji/1f4f7.svg new file mode 100644 index 0000000000..aa2d9c5035 --- /dev/null +++ b/priv/static/emoji/1f4f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f8.svg b/priv/static/emoji/1f4f8.svg new file mode 100644 index 0000000000..9bf3cf70b8 --- /dev/null +++ b/priv/static/emoji/1f4f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4f9.svg b/priv/static/emoji/1f4f9.svg new file mode 100644 index 0000000000..f1abb5901c --- /dev/null +++ b/priv/static/emoji/1f4f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4fa.svg b/priv/static/emoji/1f4fa.svg new file mode 100644 index 0000000000..5f864dee55 --- /dev/null +++ b/priv/static/emoji/1f4fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4fb.svg b/priv/static/emoji/1f4fb.svg new file mode 100644 index 0000000000..33808ad72b --- /dev/null +++ b/priv/static/emoji/1f4fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4fc.svg b/priv/static/emoji/1f4fc.svg new file mode 100644 index 0000000000..31024baf1a --- /dev/null +++ b/priv/static/emoji/1f4fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4fd.svg b/priv/static/emoji/1f4fd.svg new file mode 100644 index 0000000000..b12b42ce90 --- /dev/null +++ b/priv/static/emoji/1f4fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f4ff.svg b/priv/static/emoji/1f4ff.svg new file mode 100644 index 0000000000..a38a8e276c --- /dev/null +++ b/priv/static/emoji/1f4ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f500.svg b/priv/static/emoji/1f500.svg new file mode 100644 index 0000000000..43f78bc462 --- /dev/null +++ b/priv/static/emoji/1f500.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f501.svg b/priv/static/emoji/1f501.svg new file mode 100644 index 0000000000..27efdab855 --- /dev/null +++ b/priv/static/emoji/1f501.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f502.svg b/priv/static/emoji/1f502.svg new file mode 100644 index 0000000000..926d896588 --- /dev/null +++ b/priv/static/emoji/1f502.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f503.svg b/priv/static/emoji/1f503.svg new file mode 100644 index 0000000000..e35eb881c6 --- /dev/null +++ b/priv/static/emoji/1f503.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f504.svg b/priv/static/emoji/1f504.svg new file mode 100644 index 0000000000..c88a827cdf --- /dev/null +++ b/priv/static/emoji/1f504.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f505.svg b/priv/static/emoji/1f505.svg new file mode 100644 index 0000000000..998b8f43ef --- /dev/null +++ b/priv/static/emoji/1f505.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f506.svg b/priv/static/emoji/1f506.svg new file mode 100644 index 0000000000..2a2d58ca4e --- /dev/null +++ b/priv/static/emoji/1f506.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f507.svg b/priv/static/emoji/1f507.svg new file mode 100644 index 0000000000..39dddb5242 --- /dev/null +++ b/priv/static/emoji/1f507.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f508.svg b/priv/static/emoji/1f508.svg new file mode 100644 index 0000000000..11a7b0ed27 --- /dev/null +++ b/priv/static/emoji/1f508.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f509.svg b/priv/static/emoji/1f509.svg new file mode 100644 index 0000000000..9fb6c1cd2a --- /dev/null +++ b/priv/static/emoji/1f509.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f50a.svg b/priv/static/emoji/1f50a.svg new file mode 100644 index 0000000000..de54654e9c --- /dev/null +++ b/priv/static/emoji/1f50a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f50b.svg b/priv/static/emoji/1f50b.svg new file mode 100644 index 0000000000..66d420fc30 --- /dev/null +++ b/priv/static/emoji/1f50b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f50c.svg b/priv/static/emoji/1f50c.svg new file mode 100644 index 0000000000..8f432f0dec --- /dev/null +++ b/priv/static/emoji/1f50c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f50d.svg b/priv/static/emoji/1f50d.svg new file mode 100644 index 0000000000..038bbc24fb --- /dev/null +++ b/priv/static/emoji/1f50d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f50e.svg b/priv/static/emoji/1f50e.svg new file mode 100644 index 0000000000..778ae77ef2 --- /dev/null +++ b/priv/static/emoji/1f50e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f50f.svg b/priv/static/emoji/1f50f.svg new file mode 100644 index 0000000000..d2ae4863c4 --- /dev/null +++ b/priv/static/emoji/1f50f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f510.svg b/priv/static/emoji/1f510.svg new file mode 100644 index 0000000000..014079e8b1 --- /dev/null +++ b/priv/static/emoji/1f510.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f511.svg b/priv/static/emoji/1f511.svg new file mode 100644 index 0000000000..7b4dc2a73d --- /dev/null +++ b/priv/static/emoji/1f511.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f512.svg b/priv/static/emoji/1f512.svg new file mode 100644 index 0000000000..378fabf403 --- /dev/null +++ b/priv/static/emoji/1f512.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f513.svg b/priv/static/emoji/1f513.svg new file mode 100644 index 0000000000..cd82ec8e3f --- /dev/null +++ b/priv/static/emoji/1f513.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f514.svg b/priv/static/emoji/1f514.svg new file mode 100644 index 0000000000..9e89a7caad --- /dev/null +++ b/priv/static/emoji/1f514.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f515.svg b/priv/static/emoji/1f515.svg new file mode 100644 index 0000000000..921d352c3a --- /dev/null +++ b/priv/static/emoji/1f515.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f516.svg b/priv/static/emoji/1f516.svg new file mode 100644 index 0000000000..38dc790abd --- /dev/null +++ b/priv/static/emoji/1f516.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f517.svg b/priv/static/emoji/1f517.svg new file mode 100644 index 0000000000..22ddbe085e --- /dev/null +++ b/priv/static/emoji/1f517.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f518.svg b/priv/static/emoji/1f518.svg new file mode 100644 index 0000000000..e4d0348032 --- /dev/null +++ b/priv/static/emoji/1f518.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f519.svg b/priv/static/emoji/1f519.svg new file mode 100644 index 0000000000..ddf8fbd3ea --- /dev/null +++ b/priv/static/emoji/1f519.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f51a.svg b/priv/static/emoji/1f51a.svg new file mode 100644 index 0000000000..d964c524e1 --- /dev/null +++ b/priv/static/emoji/1f51a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f51b.svg b/priv/static/emoji/1f51b.svg new file mode 100644 index 0000000000..a885bab4f3 --- /dev/null +++ b/priv/static/emoji/1f51b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f51c.svg b/priv/static/emoji/1f51c.svg new file mode 100644 index 0000000000..690428101a --- /dev/null +++ b/priv/static/emoji/1f51c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f51d.svg b/priv/static/emoji/1f51d.svg new file mode 100644 index 0000000000..54ab898eb1 --- /dev/null +++ b/priv/static/emoji/1f51d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f51e.svg b/priv/static/emoji/1f51e.svg new file mode 100644 index 0000000000..8f877f8bbf --- /dev/null +++ b/priv/static/emoji/1f51e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f51f.svg b/priv/static/emoji/1f51f.svg new file mode 100644 index 0000000000..05dc8b91ac --- /dev/null +++ b/priv/static/emoji/1f51f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f520.svg b/priv/static/emoji/1f520.svg new file mode 100644 index 0000000000..429f113648 --- /dev/null +++ b/priv/static/emoji/1f520.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f521.svg b/priv/static/emoji/1f521.svg new file mode 100644 index 0000000000..3c2076eab6 --- /dev/null +++ b/priv/static/emoji/1f521.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f522.svg b/priv/static/emoji/1f522.svg new file mode 100644 index 0000000000..316f8ee831 --- /dev/null +++ b/priv/static/emoji/1f522.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f523.svg b/priv/static/emoji/1f523.svg new file mode 100644 index 0000000000..71ac157849 --- /dev/null +++ b/priv/static/emoji/1f523.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f524.svg b/priv/static/emoji/1f524.svg new file mode 100644 index 0000000000..e3e9464c62 --- /dev/null +++ b/priv/static/emoji/1f524.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f525.svg b/priv/static/emoji/1f525.svg new file mode 100644 index 0000000000..e7dee6dd27 --- /dev/null +++ b/priv/static/emoji/1f525.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f526.svg b/priv/static/emoji/1f526.svg new file mode 100644 index 0000000000..1aff8ae2c0 --- /dev/null +++ b/priv/static/emoji/1f526.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f527.svg b/priv/static/emoji/1f527.svg new file mode 100644 index 0000000000..73a06d0da9 --- /dev/null +++ b/priv/static/emoji/1f527.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f528.svg b/priv/static/emoji/1f528.svg new file mode 100644 index 0000000000..1a0485e53c --- /dev/null +++ b/priv/static/emoji/1f528.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f529.svg b/priv/static/emoji/1f529.svg new file mode 100644 index 0000000000..e02eaa6fd6 --- /dev/null +++ b/priv/static/emoji/1f529.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f52a.svg b/priv/static/emoji/1f52a.svg new file mode 100644 index 0000000000..d2ba9e7f09 --- /dev/null +++ b/priv/static/emoji/1f52a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f52b.svg b/priv/static/emoji/1f52b.svg new file mode 100644 index 0000000000..3c8b6e43ec --- /dev/null +++ b/priv/static/emoji/1f52b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f52c.svg b/priv/static/emoji/1f52c.svg new file mode 100644 index 0000000000..e910ee894e --- /dev/null +++ b/priv/static/emoji/1f52c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f52d.svg b/priv/static/emoji/1f52d.svg new file mode 100644 index 0000000000..113c0330a8 --- /dev/null +++ b/priv/static/emoji/1f52d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f52e.svg b/priv/static/emoji/1f52e.svg new file mode 100644 index 0000000000..d7e09232d7 --- /dev/null +++ b/priv/static/emoji/1f52e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f52f.svg b/priv/static/emoji/1f52f.svg new file mode 100644 index 0000000000..7efa37243b --- /dev/null +++ b/priv/static/emoji/1f52f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f530.svg b/priv/static/emoji/1f530.svg new file mode 100644 index 0000000000..a6b9fbe1f2 --- /dev/null +++ b/priv/static/emoji/1f530.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f531.svg b/priv/static/emoji/1f531.svg new file mode 100644 index 0000000000..20cc78d8ea --- /dev/null +++ b/priv/static/emoji/1f531.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f532.svg b/priv/static/emoji/1f532.svg new file mode 100644 index 0000000000..a2e37de7f4 --- /dev/null +++ b/priv/static/emoji/1f532.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f533.svg b/priv/static/emoji/1f533.svg new file mode 100644 index 0000000000..13f35b71a0 --- /dev/null +++ b/priv/static/emoji/1f533.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f534.svg b/priv/static/emoji/1f534.svg new file mode 100644 index 0000000000..d98cc6d64e --- /dev/null +++ b/priv/static/emoji/1f534.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f535.svg b/priv/static/emoji/1f535.svg new file mode 100644 index 0000000000..9d4ab8f505 --- /dev/null +++ b/priv/static/emoji/1f535.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f536.svg b/priv/static/emoji/1f536.svg new file mode 100644 index 0000000000..116e72265c --- /dev/null +++ b/priv/static/emoji/1f536.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f537.svg b/priv/static/emoji/1f537.svg new file mode 100644 index 0000000000..44acab23d5 --- /dev/null +++ b/priv/static/emoji/1f537.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f538.svg b/priv/static/emoji/1f538.svg new file mode 100644 index 0000000000..435ad6a5d0 --- /dev/null +++ b/priv/static/emoji/1f538.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f539.svg b/priv/static/emoji/1f539.svg new file mode 100644 index 0000000000..bb4865d146 --- /dev/null +++ b/priv/static/emoji/1f539.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f53a.svg b/priv/static/emoji/1f53a.svg new file mode 100644 index 0000000000..96d0ebb200 --- /dev/null +++ b/priv/static/emoji/1f53a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f53b.svg b/priv/static/emoji/1f53b.svg new file mode 100644 index 0000000000..f846cbfb5c --- /dev/null +++ b/priv/static/emoji/1f53b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f53c.svg b/priv/static/emoji/1f53c.svg new file mode 100644 index 0000000000..b057a592df --- /dev/null +++ b/priv/static/emoji/1f53c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f53d.svg b/priv/static/emoji/1f53d.svg new file mode 100644 index 0000000000..09ec8746dc --- /dev/null +++ b/priv/static/emoji/1f53d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f549.svg b/priv/static/emoji/1f549.svg new file mode 100644 index 0000000000..9e6a1efb22 --- /dev/null +++ b/priv/static/emoji/1f549.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f54a.svg b/priv/static/emoji/1f54a.svg new file mode 100644 index 0000000000..613e4956d7 --- /dev/null +++ b/priv/static/emoji/1f54a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f54b.svg b/priv/static/emoji/1f54b.svg new file mode 100644 index 0000000000..3cd63ee3d9 --- /dev/null +++ b/priv/static/emoji/1f54b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f54c.svg b/priv/static/emoji/1f54c.svg new file mode 100644 index 0000000000..6ef5516534 --- /dev/null +++ b/priv/static/emoji/1f54c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f54d.svg b/priv/static/emoji/1f54d.svg new file mode 100644 index 0000000000..c82ae007cb --- /dev/null +++ b/priv/static/emoji/1f54d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f54e.svg b/priv/static/emoji/1f54e.svg new file mode 100644 index 0000000000..1ebcec52f1 --- /dev/null +++ b/priv/static/emoji/1f54e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f550.svg b/priv/static/emoji/1f550.svg new file mode 100644 index 0000000000..da82d9765a --- /dev/null +++ b/priv/static/emoji/1f550.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f551.svg b/priv/static/emoji/1f551.svg new file mode 100644 index 0000000000..96ab682ea5 --- /dev/null +++ b/priv/static/emoji/1f551.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f552.svg b/priv/static/emoji/1f552.svg new file mode 100644 index 0000000000..ce4c487a01 --- /dev/null +++ b/priv/static/emoji/1f552.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f553.svg b/priv/static/emoji/1f553.svg new file mode 100644 index 0000000000..2ac4eade32 --- /dev/null +++ b/priv/static/emoji/1f553.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f554.svg b/priv/static/emoji/1f554.svg new file mode 100644 index 0000000000..1a2ef1c31e --- /dev/null +++ b/priv/static/emoji/1f554.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f555.svg b/priv/static/emoji/1f555.svg new file mode 100644 index 0000000000..5021b165ec --- /dev/null +++ b/priv/static/emoji/1f555.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f556.svg b/priv/static/emoji/1f556.svg new file mode 100644 index 0000000000..a2eb7ef2ae --- /dev/null +++ b/priv/static/emoji/1f556.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f557.svg b/priv/static/emoji/1f557.svg new file mode 100644 index 0000000000..3a7ff9b04e --- /dev/null +++ b/priv/static/emoji/1f557.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f558.svg b/priv/static/emoji/1f558.svg new file mode 100644 index 0000000000..e9d3cb58cf --- /dev/null +++ b/priv/static/emoji/1f558.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f559.svg b/priv/static/emoji/1f559.svg new file mode 100644 index 0000000000..331f702d45 --- /dev/null +++ b/priv/static/emoji/1f559.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f55a.svg b/priv/static/emoji/1f55a.svg new file mode 100644 index 0000000000..58834498df --- /dev/null +++ b/priv/static/emoji/1f55a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f55b.svg b/priv/static/emoji/1f55b.svg new file mode 100644 index 0000000000..85010aeee1 --- /dev/null +++ b/priv/static/emoji/1f55b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f55c.svg b/priv/static/emoji/1f55c.svg new file mode 100644 index 0000000000..f471871f4f --- /dev/null +++ b/priv/static/emoji/1f55c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f55d.svg b/priv/static/emoji/1f55d.svg new file mode 100644 index 0000000000..feb77f815e --- /dev/null +++ b/priv/static/emoji/1f55d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f55e.svg b/priv/static/emoji/1f55e.svg new file mode 100644 index 0000000000..8ab841facb --- /dev/null +++ b/priv/static/emoji/1f55e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f55f.svg b/priv/static/emoji/1f55f.svg new file mode 100644 index 0000000000..81ccc7ed76 --- /dev/null +++ b/priv/static/emoji/1f55f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f560.svg b/priv/static/emoji/1f560.svg new file mode 100644 index 0000000000..098c47f3e0 --- /dev/null +++ b/priv/static/emoji/1f560.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f561.svg b/priv/static/emoji/1f561.svg new file mode 100644 index 0000000000..3a50a9ae81 --- /dev/null +++ b/priv/static/emoji/1f561.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f562.svg b/priv/static/emoji/1f562.svg new file mode 100644 index 0000000000..f2c6ace678 --- /dev/null +++ b/priv/static/emoji/1f562.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f563.svg b/priv/static/emoji/1f563.svg new file mode 100644 index 0000000000..a14e0dc6d9 --- /dev/null +++ b/priv/static/emoji/1f563.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f564.svg b/priv/static/emoji/1f564.svg new file mode 100644 index 0000000000..4d6f8735cb --- /dev/null +++ b/priv/static/emoji/1f564.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f565.svg b/priv/static/emoji/1f565.svg new file mode 100644 index 0000000000..f658fa323c --- /dev/null +++ b/priv/static/emoji/1f565.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f566.svg b/priv/static/emoji/1f566.svg new file mode 100644 index 0000000000..41e105ff13 --- /dev/null +++ b/priv/static/emoji/1f566.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f567.svg b/priv/static/emoji/1f567.svg new file mode 100644 index 0000000000..7178a8815c --- /dev/null +++ b/priv/static/emoji/1f567.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f56f.svg b/priv/static/emoji/1f56f.svg new file mode 100644 index 0000000000..c0e45ac5cb --- /dev/null +++ b/priv/static/emoji/1f56f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f570.svg b/priv/static/emoji/1f570.svg new file mode 100644 index 0000000000..da6fd26822 --- /dev/null +++ b/priv/static/emoji/1f570.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f573.svg b/priv/static/emoji/1f573.svg new file mode 100644 index 0000000000..213a6ab694 --- /dev/null +++ b/priv/static/emoji/1f573.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f574-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..19175729e8 --- /dev/null +++ b/priv/static/emoji/1f574-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f574-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..97bc7b5a5b --- /dev/null +++ b/priv/static/emoji/1f574-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fb.svg b/priv/static/emoji/1f574-1f3fb.svg new file mode 100644 index 0000000000..97bc7b5a5b --- /dev/null +++ b/priv/static/emoji/1f574-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f574-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..3de7ee30e7 --- /dev/null +++ b/priv/static/emoji/1f574-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f574-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..27c10f151d --- /dev/null +++ b/priv/static/emoji/1f574-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fc.svg b/priv/static/emoji/1f574-1f3fc.svg new file mode 100644 index 0000000000..27c10f151d --- /dev/null +++ b/priv/static/emoji/1f574-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f574-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..076acec6ba --- /dev/null +++ b/priv/static/emoji/1f574-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f574-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..4e980b002c --- /dev/null +++ b/priv/static/emoji/1f574-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fd.svg b/priv/static/emoji/1f574-1f3fd.svg new file mode 100644 index 0000000000..4e980b002c --- /dev/null +++ b/priv/static/emoji/1f574-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f574-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..f98eb12618 --- /dev/null +++ b/priv/static/emoji/1f574-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f574-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..88a3061648 --- /dev/null +++ b/priv/static/emoji/1f574-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3fe.svg b/priv/static/emoji/1f574-1f3fe.svg new file mode 100644 index 0000000000..88a3061648 --- /dev/null +++ b/priv/static/emoji/1f574-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f574-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e8033f53ea --- /dev/null +++ b/priv/static/emoji/1f574-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f574-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..57aec606d3 --- /dev/null +++ b/priv/static/emoji/1f574-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-1f3ff.svg b/priv/static/emoji/1f574-1f3ff.svg new file mode 100644 index 0000000000..57aec606d3 --- /dev/null +++ b/priv/static/emoji/1f574-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-fe0f-200d-2640-fe0f.svg b/priv/static/emoji/1f574-fe0f-200d-2640-fe0f.svg new file mode 100644 index 0000000000..4f80c791f0 --- /dev/null +++ b/priv/static/emoji/1f574-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574-fe0f-200d-2642-fe0f.svg b/priv/static/emoji/1f574-fe0f-200d-2642-fe0f.svg new file mode 100644 index 0000000000..a834fd4b99 --- /dev/null +++ b/priv/static/emoji/1f574-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f574.svg b/priv/static/emoji/1f574.svg new file mode 100644 index 0000000000..a834fd4b99 --- /dev/null +++ b/priv/static/emoji/1f574.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f575-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..b85b5dba86 --- /dev/null +++ b/priv/static/emoji/1f575-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f575-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..fd521e254d --- /dev/null +++ b/priv/static/emoji/1f575-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fb.svg b/priv/static/emoji/1f575-1f3fb.svg new file mode 100644 index 0000000000..fd521e254d --- /dev/null +++ b/priv/static/emoji/1f575-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f575-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..dfc8aabce9 --- /dev/null +++ b/priv/static/emoji/1f575-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f575-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..fdb8cd5bf7 --- /dev/null +++ b/priv/static/emoji/1f575-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fc.svg b/priv/static/emoji/1f575-1f3fc.svg new file mode 100644 index 0000000000..fdb8cd5bf7 --- /dev/null +++ b/priv/static/emoji/1f575-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f575-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..b6d0b87b67 --- /dev/null +++ b/priv/static/emoji/1f575-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f575-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..474f2535aa --- /dev/null +++ b/priv/static/emoji/1f575-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fd.svg b/priv/static/emoji/1f575-1f3fd.svg new file mode 100644 index 0000000000..474f2535aa --- /dev/null +++ b/priv/static/emoji/1f575-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f575-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..67b6d0b94f --- /dev/null +++ b/priv/static/emoji/1f575-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f575-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..3367897acd --- /dev/null +++ b/priv/static/emoji/1f575-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3fe.svg b/priv/static/emoji/1f575-1f3fe.svg new file mode 100644 index 0000000000..3367897acd --- /dev/null +++ b/priv/static/emoji/1f575-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f575-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..fcea54da77 --- /dev/null +++ b/priv/static/emoji/1f575-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f575-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..eb25e64489 --- /dev/null +++ b/priv/static/emoji/1f575-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-1f3ff.svg b/priv/static/emoji/1f575-1f3ff.svg new file mode 100644 index 0000000000..eb25e64489 --- /dev/null +++ b/priv/static/emoji/1f575-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-fe0f-200d-2640-fe0f.svg b/priv/static/emoji/1f575-fe0f-200d-2640-fe0f.svg new file mode 100644 index 0000000000..1f92d39d60 --- /dev/null +++ b/priv/static/emoji/1f575-fe0f-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575-fe0f-200d-2642-fe0f.svg b/priv/static/emoji/1f575-fe0f-200d-2642-fe0f.svg new file mode 100644 index 0000000000..bba4b9437b --- /dev/null +++ b/priv/static/emoji/1f575-fe0f-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f575.svg b/priv/static/emoji/1f575.svg new file mode 100644 index 0000000000..bba4b9437b --- /dev/null +++ b/priv/static/emoji/1f575.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f576.svg b/priv/static/emoji/1f576.svg new file mode 100644 index 0000000000..5d5c04fb8b --- /dev/null +++ b/priv/static/emoji/1f576.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f577.svg b/priv/static/emoji/1f577.svg new file mode 100644 index 0000000000..a156865108 --- /dev/null +++ b/priv/static/emoji/1f577.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f578.svg b/priv/static/emoji/1f578.svg new file mode 100644 index 0000000000..92142fd305 --- /dev/null +++ b/priv/static/emoji/1f578.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f579.svg b/priv/static/emoji/1f579.svg new file mode 100644 index 0000000000..33479b5048 --- /dev/null +++ b/priv/static/emoji/1f579.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f57a-1f3fb.svg b/priv/static/emoji/1f57a-1f3fb.svg new file mode 100644 index 0000000000..1eb5928c8d --- /dev/null +++ b/priv/static/emoji/1f57a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f57a-1f3fc.svg b/priv/static/emoji/1f57a-1f3fc.svg new file mode 100644 index 0000000000..37bfbee9c3 --- /dev/null +++ b/priv/static/emoji/1f57a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f57a-1f3fd.svg b/priv/static/emoji/1f57a-1f3fd.svg new file mode 100644 index 0000000000..586b6c5e9e --- /dev/null +++ b/priv/static/emoji/1f57a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f57a-1f3fe.svg b/priv/static/emoji/1f57a-1f3fe.svg new file mode 100644 index 0000000000..02824e9cbf --- /dev/null +++ b/priv/static/emoji/1f57a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f57a-1f3ff.svg b/priv/static/emoji/1f57a-1f3ff.svg new file mode 100644 index 0000000000..f43787a0f2 --- /dev/null +++ b/priv/static/emoji/1f57a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f57a.svg b/priv/static/emoji/1f57a.svg new file mode 100644 index 0000000000..e63c1ec846 --- /dev/null +++ b/priv/static/emoji/1f57a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f587.svg b/priv/static/emoji/1f587.svg new file mode 100644 index 0000000000..a6ef181561 --- /dev/null +++ b/priv/static/emoji/1f587.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f58a.svg b/priv/static/emoji/1f58a.svg new file mode 100644 index 0000000000..4e791e6ac2 --- /dev/null +++ b/priv/static/emoji/1f58a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f58b.svg b/priv/static/emoji/1f58b.svg new file mode 100644 index 0000000000..8a7f773592 --- /dev/null +++ b/priv/static/emoji/1f58b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f58c.svg b/priv/static/emoji/1f58c.svg new file mode 100644 index 0000000000..b39bcbc9dd --- /dev/null +++ b/priv/static/emoji/1f58c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f58d.svg b/priv/static/emoji/1f58d.svg new file mode 100644 index 0000000000..5a4cbe8e1a --- /dev/null +++ b/priv/static/emoji/1f58d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f590-1f3fb.svg b/priv/static/emoji/1f590-1f3fb.svg new file mode 100644 index 0000000000..f106ae7dd9 --- /dev/null +++ b/priv/static/emoji/1f590-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f590-1f3fc.svg b/priv/static/emoji/1f590-1f3fc.svg new file mode 100644 index 0000000000..9944090ec7 --- /dev/null +++ b/priv/static/emoji/1f590-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f590-1f3fd.svg b/priv/static/emoji/1f590-1f3fd.svg new file mode 100644 index 0000000000..296a8f7952 --- /dev/null +++ b/priv/static/emoji/1f590-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f590-1f3fe.svg b/priv/static/emoji/1f590-1f3fe.svg new file mode 100644 index 0000000000..9ec61de595 --- /dev/null +++ b/priv/static/emoji/1f590-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f590-1f3ff.svg b/priv/static/emoji/1f590-1f3ff.svg new file mode 100644 index 0000000000..0a4d174bec --- /dev/null +++ b/priv/static/emoji/1f590-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f590.svg b/priv/static/emoji/1f590.svg new file mode 100644 index 0000000000..1c8dd6849a --- /dev/null +++ b/priv/static/emoji/1f590.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f595-1f3fb.svg b/priv/static/emoji/1f595-1f3fb.svg new file mode 100644 index 0000000000..3865d6627b --- /dev/null +++ b/priv/static/emoji/1f595-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f595-1f3fc.svg b/priv/static/emoji/1f595-1f3fc.svg new file mode 100644 index 0000000000..b52ea58d4a --- /dev/null +++ b/priv/static/emoji/1f595-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f595-1f3fd.svg b/priv/static/emoji/1f595-1f3fd.svg new file mode 100644 index 0000000000..7224b2124d --- /dev/null +++ b/priv/static/emoji/1f595-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f595-1f3fe.svg b/priv/static/emoji/1f595-1f3fe.svg new file mode 100644 index 0000000000..571c54c3b3 --- /dev/null +++ b/priv/static/emoji/1f595-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f595-1f3ff.svg b/priv/static/emoji/1f595-1f3ff.svg new file mode 100644 index 0000000000..0fdb0ea6ea --- /dev/null +++ b/priv/static/emoji/1f595-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f595.svg b/priv/static/emoji/1f595.svg new file mode 100644 index 0000000000..e644c37632 --- /dev/null +++ b/priv/static/emoji/1f595.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f596-1f3fb.svg b/priv/static/emoji/1f596-1f3fb.svg new file mode 100644 index 0000000000..0676c0fcef --- /dev/null +++ b/priv/static/emoji/1f596-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f596-1f3fc.svg b/priv/static/emoji/1f596-1f3fc.svg new file mode 100644 index 0000000000..9f1d4f1072 --- /dev/null +++ b/priv/static/emoji/1f596-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f596-1f3fd.svg b/priv/static/emoji/1f596-1f3fd.svg new file mode 100644 index 0000000000..b2c324d511 --- /dev/null +++ b/priv/static/emoji/1f596-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f596-1f3fe.svg b/priv/static/emoji/1f596-1f3fe.svg new file mode 100644 index 0000000000..eb3586eebb --- /dev/null +++ b/priv/static/emoji/1f596-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f596-1f3ff.svg b/priv/static/emoji/1f596-1f3ff.svg new file mode 100644 index 0000000000..c8f2b5b005 --- /dev/null +++ b/priv/static/emoji/1f596-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f596.svg b/priv/static/emoji/1f596.svg new file mode 100644 index 0000000000..4b834f87a4 --- /dev/null +++ b/priv/static/emoji/1f596.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5a4.svg b/priv/static/emoji/1f5a4.svg new file mode 100644 index 0000000000..51ec883f87 --- /dev/null +++ b/priv/static/emoji/1f5a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5a5.svg b/priv/static/emoji/1f5a5.svg new file mode 100644 index 0000000000..e1a06333e8 --- /dev/null +++ b/priv/static/emoji/1f5a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5a8.svg b/priv/static/emoji/1f5a8.svg new file mode 100644 index 0000000000..fae59fef53 --- /dev/null +++ b/priv/static/emoji/1f5a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5b1.svg b/priv/static/emoji/1f5b1.svg new file mode 100644 index 0000000000..961f67ee8e --- /dev/null +++ b/priv/static/emoji/1f5b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5b2.svg b/priv/static/emoji/1f5b2.svg new file mode 100644 index 0000000000..caea2fdc61 --- /dev/null +++ b/priv/static/emoji/1f5b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5bc.svg b/priv/static/emoji/1f5bc.svg new file mode 100644 index 0000000000..1a2ad7273e --- /dev/null +++ b/priv/static/emoji/1f5bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5c2.svg b/priv/static/emoji/1f5c2.svg new file mode 100644 index 0000000000..822a9276ea --- /dev/null +++ b/priv/static/emoji/1f5c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5c3.svg b/priv/static/emoji/1f5c3.svg new file mode 100644 index 0000000000..48dd45b807 --- /dev/null +++ b/priv/static/emoji/1f5c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5c4.svg b/priv/static/emoji/1f5c4.svg new file mode 100644 index 0000000000..4c065fb4ba --- /dev/null +++ b/priv/static/emoji/1f5c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5d1.svg b/priv/static/emoji/1f5d1.svg new file mode 100644 index 0000000000..266950747b --- /dev/null +++ b/priv/static/emoji/1f5d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5d2.svg b/priv/static/emoji/1f5d2.svg new file mode 100644 index 0000000000..cbb6965bc0 --- /dev/null +++ b/priv/static/emoji/1f5d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5d3.svg b/priv/static/emoji/1f5d3.svg new file mode 100644 index 0000000000..526191c03d --- /dev/null +++ b/priv/static/emoji/1f5d3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5dc.svg b/priv/static/emoji/1f5dc.svg new file mode 100644 index 0000000000..6f35d170d9 --- /dev/null +++ b/priv/static/emoji/1f5dc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5dd.svg b/priv/static/emoji/1f5dd.svg new file mode 100644 index 0000000000..9e97cea6e0 --- /dev/null +++ b/priv/static/emoji/1f5dd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5de.svg b/priv/static/emoji/1f5de.svg new file mode 100644 index 0000000000..9567817605 --- /dev/null +++ b/priv/static/emoji/1f5de.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5e1.svg b/priv/static/emoji/1f5e1.svg new file mode 100644 index 0000000000..2741fb89d4 --- /dev/null +++ b/priv/static/emoji/1f5e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5e3.svg b/priv/static/emoji/1f5e3.svg new file mode 100644 index 0000000000..4e613c0465 --- /dev/null +++ b/priv/static/emoji/1f5e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5e8.svg b/priv/static/emoji/1f5e8.svg new file mode 100644 index 0000000000..d091897198 --- /dev/null +++ b/priv/static/emoji/1f5e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5ef.svg b/priv/static/emoji/1f5ef.svg new file mode 100644 index 0000000000..3aba53cc6a --- /dev/null +++ b/priv/static/emoji/1f5ef.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5f3.svg b/priv/static/emoji/1f5f3.svg new file mode 100644 index 0000000000..9c643d363e --- /dev/null +++ b/priv/static/emoji/1f5f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5fa.svg b/priv/static/emoji/1f5fa.svg new file mode 100644 index 0000000000..337b3dc9ec --- /dev/null +++ b/priv/static/emoji/1f5fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5fb.svg b/priv/static/emoji/1f5fb.svg new file mode 100644 index 0000000000..a8ad074c42 --- /dev/null +++ b/priv/static/emoji/1f5fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5fc.svg b/priv/static/emoji/1f5fc.svg new file mode 100644 index 0000000000..92fd6ae014 --- /dev/null +++ b/priv/static/emoji/1f5fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5fd.svg b/priv/static/emoji/1f5fd.svg new file mode 100644 index 0000000000..3191523a32 --- /dev/null +++ b/priv/static/emoji/1f5fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5fe.svg b/priv/static/emoji/1f5fe.svg new file mode 100644 index 0000000000..a67c561e24 --- /dev/null +++ b/priv/static/emoji/1f5fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f5ff.svg b/priv/static/emoji/1f5ff.svg new file mode 100644 index 0000000000..5ba18be1f9 --- /dev/null +++ b/priv/static/emoji/1f5ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f600.svg b/priv/static/emoji/1f600.svg new file mode 100644 index 0000000000..21afce43d7 --- /dev/null +++ b/priv/static/emoji/1f600.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f601.svg b/priv/static/emoji/1f601.svg new file mode 100644 index 0000000000..9b792cbe02 --- /dev/null +++ b/priv/static/emoji/1f601.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f602.svg b/priv/static/emoji/1f602.svg new file mode 100644 index 0000000000..1ec793774e --- /dev/null +++ b/priv/static/emoji/1f602.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f603.svg b/priv/static/emoji/1f603.svg new file mode 100644 index 0000000000..25d4b9628d --- /dev/null +++ b/priv/static/emoji/1f603.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f604.svg b/priv/static/emoji/1f604.svg new file mode 100644 index 0000000000..99ac39c7e9 --- /dev/null +++ b/priv/static/emoji/1f604.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f605.svg b/priv/static/emoji/1f605.svg new file mode 100644 index 0000000000..de6eb5de61 --- /dev/null +++ b/priv/static/emoji/1f605.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f606.svg b/priv/static/emoji/1f606.svg new file mode 100644 index 0000000000..e82c405ae2 --- /dev/null +++ b/priv/static/emoji/1f606.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f607.svg b/priv/static/emoji/1f607.svg new file mode 100644 index 0000000000..f6260fdb10 --- /dev/null +++ b/priv/static/emoji/1f607.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f608.svg b/priv/static/emoji/1f608.svg new file mode 100644 index 0000000000..79c24804c7 --- /dev/null +++ b/priv/static/emoji/1f608.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f609.svg b/priv/static/emoji/1f609.svg new file mode 100644 index 0000000000..1b7bba0a0d --- /dev/null +++ b/priv/static/emoji/1f609.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f60a.svg b/priv/static/emoji/1f60a.svg new file mode 100644 index 0000000000..a6d9c1b5b2 --- /dev/null +++ b/priv/static/emoji/1f60a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f60b.svg b/priv/static/emoji/1f60b.svg new file mode 100644 index 0000000000..2c962bb64f --- /dev/null +++ b/priv/static/emoji/1f60b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f60c.svg b/priv/static/emoji/1f60c.svg new file mode 100644 index 0000000000..f8d56233c1 --- /dev/null +++ b/priv/static/emoji/1f60c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f60d.svg b/priv/static/emoji/1f60d.svg new file mode 100644 index 0000000000..18b1867c18 --- /dev/null +++ b/priv/static/emoji/1f60d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f60e.svg b/priv/static/emoji/1f60e.svg new file mode 100644 index 0000000000..fff644a866 --- /dev/null +++ b/priv/static/emoji/1f60e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f60f.svg b/priv/static/emoji/1f60f.svg new file mode 100644 index 0000000000..ef4f386e0b --- /dev/null +++ b/priv/static/emoji/1f60f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f610.svg b/priv/static/emoji/1f610.svg new file mode 100644 index 0000000000..953f921753 --- /dev/null +++ b/priv/static/emoji/1f610.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f611.svg b/priv/static/emoji/1f611.svg new file mode 100644 index 0000000000..55be4fd378 --- /dev/null +++ b/priv/static/emoji/1f611.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f612.svg b/priv/static/emoji/1f612.svg new file mode 100644 index 0000000000..197089f57f --- /dev/null +++ b/priv/static/emoji/1f612.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f613.svg b/priv/static/emoji/1f613.svg new file mode 100644 index 0000000000..83c6580362 --- /dev/null +++ b/priv/static/emoji/1f613.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f614.svg b/priv/static/emoji/1f614.svg new file mode 100644 index 0000000000..be03530015 --- /dev/null +++ b/priv/static/emoji/1f614.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f615.svg b/priv/static/emoji/1f615.svg new file mode 100644 index 0000000000..339a6a27ec --- /dev/null +++ b/priv/static/emoji/1f615.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f616.svg b/priv/static/emoji/1f616.svg new file mode 100644 index 0000000000..2b8871cee9 --- /dev/null +++ b/priv/static/emoji/1f616.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f617.svg b/priv/static/emoji/1f617.svg new file mode 100644 index 0000000000..6b817eec76 --- /dev/null +++ b/priv/static/emoji/1f617.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f618.svg b/priv/static/emoji/1f618.svg new file mode 100644 index 0000000000..5e00b8e4d6 --- /dev/null +++ b/priv/static/emoji/1f618.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f619.svg b/priv/static/emoji/1f619.svg new file mode 100644 index 0000000000..d9dfaa9d24 --- /dev/null +++ b/priv/static/emoji/1f619.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f61a.svg b/priv/static/emoji/1f61a.svg new file mode 100644 index 0000000000..cefa35162e --- /dev/null +++ b/priv/static/emoji/1f61a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f61b.svg b/priv/static/emoji/1f61b.svg new file mode 100644 index 0000000000..903422aeff --- /dev/null +++ b/priv/static/emoji/1f61b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f61c.svg b/priv/static/emoji/1f61c.svg new file mode 100644 index 0000000000..6f78739042 --- /dev/null +++ b/priv/static/emoji/1f61c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f61d.svg b/priv/static/emoji/1f61d.svg new file mode 100644 index 0000000000..09dead62ab --- /dev/null +++ b/priv/static/emoji/1f61d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f61e.svg b/priv/static/emoji/1f61e.svg new file mode 100644 index 0000000000..7ae60a58d4 --- /dev/null +++ b/priv/static/emoji/1f61e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f61f.svg b/priv/static/emoji/1f61f.svg new file mode 100644 index 0000000000..c5cec95d53 --- /dev/null +++ b/priv/static/emoji/1f61f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f620.svg b/priv/static/emoji/1f620.svg new file mode 100644 index 0000000000..97e829a9a4 --- /dev/null +++ b/priv/static/emoji/1f620.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f621.svg b/priv/static/emoji/1f621.svg new file mode 100644 index 0000000000..f370594b9b --- /dev/null +++ b/priv/static/emoji/1f621.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f622.svg b/priv/static/emoji/1f622.svg new file mode 100644 index 0000000000..1122bf5f7f --- /dev/null +++ b/priv/static/emoji/1f622.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f623.svg b/priv/static/emoji/1f623.svg new file mode 100644 index 0000000000..e548a2efed --- /dev/null +++ b/priv/static/emoji/1f623.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f624.svg b/priv/static/emoji/1f624.svg new file mode 100644 index 0000000000..c211eec53b --- /dev/null +++ b/priv/static/emoji/1f624.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f625.svg b/priv/static/emoji/1f625.svg new file mode 100644 index 0000000000..0b4293f9e8 --- /dev/null +++ b/priv/static/emoji/1f625.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f626.svg b/priv/static/emoji/1f626.svg new file mode 100644 index 0000000000..683c0d3496 --- /dev/null +++ b/priv/static/emoji/1f626.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f627.svg b/priv/static/emoji/1f627.svg new file mode 100644 index 0000000000..5c33852972 --- /dev/null +++ b/priv/static/emoji/1f627.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f628.svg b/priv/static/emoji/1f628.svg new file mode 100644 index 0000000000..716302e2d7 --- /dev/null +++ b/priv/static/emoji/1f628.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f629.svg b/priv/static/emoji/1f629.svg new file mode 100644 index 0000000000..d367d48478 --- /dev/null +++ b/priv/static/emoji/1f629.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f62a.svg b/priv/static/emoji/1f62a.svg new file mode 100644 index 0000000000..ede0d7a249 --- /dev/null +++ b/priv/static/emoji/1f62a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f62b.svg b/priv/static/emoji/1f62b.svg new file mode 100644 index 0000000000..4253adad06 --- /dev/null +++ b/priv/static/emoji/1f62b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f62c.svg b/priv/static/emoji/1f62c.svg new file mode 100644 index 0000000000..3fdb9bf2b4 --- /dev/null +++ b/priv/static/emoji/1f62c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f62d.svg b/priv/static/emoji/1f62d.svg new file mode 100644 index 0000000000..11d1159e87 --- /dev/null +++ b/priv/static/emoji/1f62d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f62e.svg b/priv/static/emoji/1f62e.svg new file mode 100644 index 0000000000..21fde1f0c6 --- /dev/null +++ b/priv/static/emoji/1f62e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f62f.svg b/priv/static/emoji/1f62f.svg new file mode 100644 index 0000000000..579bf4800b --- /dev/null +++ b/priv/static/emoji/1f62f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f630.svg b/priv/static/emoji/1f630.svg new file mode 100644 index 0000000000..de3d95cdcc --- /dev/null +++ b/priv/static/emoji/1f630.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f631.svg b/priv/static/emoji/1f631.svg new file mode 100644 index 0000000000..c70a81a7ed --- /dev/null +++ b/priv/static/emoji/1f631.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f632.svg b/priv/static/emoji/1f632.svg new file mode 100644 index 0000000000..e279321728 --- /dev/null +++ b/priv/static/emoji/1f632.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f633.svg b/priv/static/emoji/1f633.svg new file mode 100644 index 0000000000..2663c8cee7 --- /dev/null +++ b/priv/static/emoji/1f633.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f634.svg b/priv/static/emoji/1f634.svg new file mode 100644 index 0000000000..643ae221ae --- /dev/null +++ b/priv/static/emoji/1f634.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f635.svg b/priv/static/emoji/1f635.svg new file mode 100644 index 0000000000..7a45cf570a --- /dev/null +++ b/priv/static/emoji/1f635.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f636.svg b/priv/static/emoji/1f636.svg new file mode 100644 index 0000000000..c208383ca0 --- /dev/null +++ b/priv/static/emoji/1f636.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f637.svg b/priv/static/emoji/1f637.svg new file mode 100644 index 0000000000..098e6b0b70 --- /dev/null +++ b/priv/static/emoji/1f637.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f638.svg b/priv/static/emoji/1f638.svg new file mode 100644 index 0000000000..4e125ab970 --- /dev/null +++ b/priv/static/emoji/1f638.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f639.svg b/priv/static/emoji/1f639.svg new file mode 100644 index 0000000000..92f9022d9b --- /dev/null +++ b/priv/static/emoji/1f639.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f63a.svg b/priv/static/emoji/1f63a.svg new file mode 100644 index 0000000000..88057ceb0d --- /dev/null +++ b/priv/static/emoji/1f63a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f63b.svg b/priv/static/emoji/1f63b.svg new file mode 100644 index 0000000000..a4dd7e46b8 --- /dev/null +++ b/priv/static/emoji/1f63b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f63c.svg b/priv/static/emoji/1f63c.svg new file mode 100644 index 0000000000..198ad47a5a --- /dev/null +++ b/priv/static/emoji/1f63c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f63d.svg b/priv/static/emoji/1f63d.svg new file mode 100644 index 0000000000..e982de7a3f --- /dev/null +++ b/priv/static/emoji/1f63d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f63e.svg b/priv/static/emoji/1f63e.svg new file mode 100644 index 0000000000..19a41d75b8 --- /dev/null +++ b/priv/static/emoji/1f63e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f63f.svg b/priv/static/emoji/1f63f.svg new file mode 100644 index 0000000000..cdd84393f1 --- /dev/null +++ b/priv/static/emoji/1f63f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f640.svg b/priv/static/emoji/1f640.svg new file mode 100644 index 0000000000..65ea8a5a26 --- /dev/null +++ b/priv/static/emoji/1f640.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f641.svg b/priv/static/emoji/1f641.svg new file mode 100644 index 0000000000..cf3557b1d1 --- /dev/null +++ b/priv/static/emoji/1f641.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f642.svg b/priv/static/emoji/1f642.svg new file mode 100644 index 0000000000..ff9f989a88 --- /dev/null +++ b/priv/static/emoji/1f642.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f643.svg b/priv/static/emoji/1f643.svg new file mode 100644 index 0000000000..ce062371e8 --- /dev/null +++ b/priv/static/emoji/1f643.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f644.svg b/priv/static/emoji/1f644.svg new file mode 100644 index 0000000000..91c0b62fe1 --- /dev/null +++ b/priv/static/emoji/1f644.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f645-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..d3d6161f27 --- /dev/null +++ b/priv/static/emoji/1f645-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f645-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..47b17497d6 --- /dev/null +++ b/priv/static/emoji/1f645-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fb.svg b/priv/static/emoji/1f645-1f3fb.svg new file mode 100644 index 0000000000..d3d6161f27 --- /dev/null +++ b/priv/static/emoji/1f645-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f645-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..061e83da3f --- /dev/null +++ b/priv/static/emoji/1f645-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f645-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..47109a9c2b --- /dev/null +++ b/priv/static/emoji/1f645-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fc.svg b/priv/static/emoji/1f645-1f3fc.svg new file mode 100644 index 0000000000..061e83da3f --- /dev/null +++ b/priv/static/emoji/1f645-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f645-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..3ba6194b50 --- /dev/null +++ b/priv/static/emoji/1f645-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f645-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..5e7487e794 --- /dev/null +++ b/priv/static/emoji/1f645-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fd.svg b/priv/static/emoji/1f645-1f3fd.svg new file mode 100644 index 0000000000..3ba6194b50 --- /dev/null +++ b/priv/static/emoji/1f645-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f645-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..5eacdc63db --- /dev/null +++ b/priv/static/emoji/1f645-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f645-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..da7e789351 --- /dev/null +++ b/priv/static/emoji/1f645-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3fe.svg b/priv/static/emoji/1f645-1f3fe.svg new file mode 100644 index 0000000000..5eacdc63db --- /dev/null +++ b/priv/static/emoji/1f645-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f645-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e38dfd1cd1 --- /dev/null +++ b/priv/static/emoji/1f645-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f645-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1fb2443b64 --- /dev/null +++ b/priv/static/emoji/1f645-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-1f3ff.svg b/priv/static/emoji/1f645-1f3ff.svg new file mode 100644 index 0000000000..e38dfd1cd1 --- /dev/null +++ b/priv/static/emoji/1f645-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-200d-2640-fe0f.svg b/priv/static/emoji/1f645-200d-2640-fe0f.svg new file mode 100644 index 0000000000..2e47b6710f --- /dev/null +++ b/priv/static/emoji/1f645-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645-200d-2642-fe0f.svg b/priv/static/emoji/1f645-200d-2642-fe0f.svg new file mode 100644 index 0000000000..ba0fc8e836 --- /dev/null +++ b/priv/static/emoji/1f645-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f645.svg b/priv/static/emoji/1f645.svg new file mode 100644 index 0000000000..2e47b6710f --- /dev/null +++ b/priv/static/emoji/1f645.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f646-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..1c051497c4 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f646-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..b8e5f15677 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fb.svg b/priv/static/emoji/1f646-1f3fb.svg new file mode 100644 index 0000000000..6e78c309cf --- /dev/null +++ b/priv/static/emoji/1f646-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f646-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..439f4d81f2 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f646-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..564a775e0a --- /dev/null +++ b/priv/static/emoji/1f646-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fc.svg b/priv/static/emoji/1f646-1f3fc.svg new file mode 100644 index 0000000000..439f4d81f2 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f646-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e5b1aea514 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f646-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..b5103e3f34 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fd.svg b/priv/static/emoji/1f646-1f3fd.svg new file mode 100644 index 0000000000..e5b1aea514 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f646-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..b041dc167c --- /dev/null +++ b/priv/static/emoji/1f646-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f646-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..4b2b3b4919 --- /dev/null +++ b/priv/static/emoji/1f646-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3fe.svg b/priv/static/emoji/1f646-1f3fe.svg new file mode 100644 index 0000000000..b041dc167c --- /dev/null +++ b/priv/static/emoji/1f646-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f646-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..66d5bd09fe --- /dev/null +++ b/priv/static/emoji/1f646-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f646-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..0411b8d408 --- /dev/null +++ b/priv/static/emoji/1f646-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-1f3ff.svg b/priv/static/emoji/1f646-1f3ff.svg new file mode 100644 index 0000000000..66d5bd09fe --- /dev/null +++ b/priv/static/emoji/1f646-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-200d-2640-fe0f.svg b/priv/static/emoji/1f646-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ccdb92a451 --- /dev/null +++ b/priv/static/emoji/1f646-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646-200d-2642-fe0f.svg b/priv/static/emoji/1f646-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1c4205d51a --- /dev/null +++ b/priv/static/emoji/1f646-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f646.svg b/priv/static/emoji/1f646.svg new file mode 100644 index 0000000000..ccdb92a451 --- /dev/null +++ b/priv/static/emoji/1f646.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f647-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..139284fef1 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f647-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..339010951f --- /dev/null +++ b/priv/static/emoji/1f647-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fb.svg b/priv/static/emoji/1f647-1f3fb.svg new file mode 100644 index 0000000000..339010951f --- /dev/null +++ b/priv/static/emoji/1f647-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f647-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ba6b6eb35d --- /dev/null +++ b/priv/static/emoji/1f647-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f647-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..93d418cd23 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fc.svg b/priv/static/emoji/1f647-1f3fc.svg new file mode 100644 index 0000000000..93d418cd23 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f647-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e9056586e3 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f647-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..abd06691a4 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fd.svg b/priv/static/emoji/1f647-1f3fd.svg new file mode 100644 index 0000000000..abd06691a4 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f647-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8511aadea4 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f647-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..3f55ae8201 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3fe.svg b/priv/static/emoji/1f647-1f3fe.svg new file mode 100644 index 0000000000..3f55ae8201 --- /dev/null +++ b/priv/static/emoji/1f647-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f647-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..00ab5588a9 --- /dev/null +++ b/priv/static/emoji/1f647-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f647-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..1ea343bb1a --- /dev/null +++ b/priv/static/emoji/1f647-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-1f3ff.svg b/priv/static/emoji/1f647-1f3ff.svg new file mode 100644 index 0000000000..1ea343bb1a --- /dev/null +++ b/priv/static/emoji/1f647-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-200d-2640-fe0f.svg b/priv/static/emoji/1f647-200d-2640-fe0f.svg new file mode 100644 index 0000000000..0545aa2e13 --- /dev/null +++ b/priv/static/emoji/1f647-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647-200d-2642-fe0f.svg b/priv/static/emoji/1f647-200d-2642-fe0f.svg new file mode 100644 index 0000000000..7462b006b4 --- /dev/null +++ b/priv/static/emoji/1f647-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f647.svg b/priv/static/emoji/1f647.svg new file mode 100644 index 0000000000..7462b006b4 --- /dev/null +++ b/priv/static/emoji/1f647.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f648.svg b/priv/static/emoji/1f648.svg new file mode 100644 index 0000000000..31e38a33f8 --- /dev/null +++ b/priv/static/emoji/1f648.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f649.svg b/priv/static/emoji/1f649.svg new file mode 100644 index 0000000000..377e0e6df5 --- /dev/null +++ b/priv/static/emoji/1f649.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64a.svg b/priv/static/emoji/1f64a.svg new file mode 100644 index 0000000000..1e4e313ef7 --- /dev/null +++ b/priv/static/emoji/1f64a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f64b-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..f10a7ef714 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f64b-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..46819a3cb2 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fb.svg b/priv/static/emoji/1f64b-1f3fb.svg new file mode 100644 index 0000000000..f10a7ef714 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f64b-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..34b2d325ba --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f64b-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..177f70a685 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fc.svg b/priv/static/emoji/1f64b-1f3fc.svg new file mode 100644 index 0000000000..34b2d325ba --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f64b-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..62156c3862 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f64b-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..b449f1c68e --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fd.svg b/priv/static/emoji/1f64b-1f3fd.svg new file mode 100644 index 0000000000..62156c3862 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f64b-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..4dcde3700d --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f64b-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e1053e7813 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3fe.svg b/priv/static/emoji/1f64b-1f3fe.svg new file mode 100644 index 0000000000..4dcde3700d --- /dev/null +++ b/priv/static/emoji/1f64b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f64b-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..f939a8364e --- /dev/null +++ b/priv/static/emoji/1f64b-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f64b-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..34c358fb63 --- /dev/null +++ b/priv/static/emoji/1f64b-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-1f3ff.svg b/priv/static/emoji/1f64b-1f3ff.svg new file mode 100644 index 0000000000..f939a8364e --- /dev/null +++ b/priv/static/emoji/1f64b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-200d-2640-fe0f.svg b/priv/static/emoji/1f64b-200d-2640-fe0f.svg new file mode 100644 index 0000000000..a5ccaa1add --- /dev/null +++ b/priv/static/emoji/1f64b-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b-200d-2642-fe0f.svg b/priv/static/emoji/1f64b-200d-2642-fe0f.svg new file mode 100644 index 0000000000..faf2f760ab --- /dev/null +++ b/priv/static/emoji/1f64b-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64b.svg b/priv/static/emoji/1f64b.svg new file mode 100644 index 0000000000..a5ccaa1add --- /dev/null +++ b/priv/static/emoji/1f64b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64c-1f3fb.svg b/priv/static/emoji/1f64c-1f3fb.svg new file mode 100644 index 0000000000..b51e08e4af --- /dev/null +++ b/priv/static/emoji/1f64c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64c-1f3fc.svg b/priv/static/emoji/1f64c-1f3fc.svg new file mode 100644 index 0000000000..6c4f43eaee --- /dev/null +++ b/priv/static/emoji/1f64c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64c-1f3fd.svg b/priv/static/emoji/1f64c-1f3fd.svg new file mode 100644 index 0000000000..5624f60753 --- /dev/null +++ b/priv/static/emoji/1f64c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64c-1f3fe.svg b/priv/static/emoji/1f64c-1f3fe.svg new file mode 100644 index 0000000000..527cc23e31 --- /dev/null +++ b/priv/static/emoji/1f64c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64c-1f3ff.svg b/priv/static/emoji/1f64c-1f3ff.svg new file mode 100644 index 0000000000..fc0a3332f6 --- /dev/null +++ b/priv/static/emoji/1f64c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64c.svg b/priv/static/emoji/1f64c.svg new file mode 100644 index 0000000000..be95511f96 --- /dev/null +++ b/priv/static/emoji/1f64c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f64d-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..3aaba5033b --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f64d-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..2481803731 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fb.svg b/priv/static/emoji/1f64d-1f3fb.svg new file mode 100644 index 0000000000..3aaba5033b --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f64d-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..7198a13c06 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f64d-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..8054534386 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fc.svg b/priv/static/emoji/1f64d-1f3fc.svg new file mode 100644 index 0000000000..7198a13c06 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f64d-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ed14e028f4 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f64d-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..17dee5c228 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fd.svg b/priv/static/emoji/1f64d-1f3fd.svg new file mode 100644 index 0000000000..ed14e028f4 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f64d-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..47e3da25c1 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f64d-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..a8146a4c9a --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3fe.svg b/priv/static/emoji/1f64d-1f3fe.svg new file mode 100644 index 0000000000..47e3da25c1 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f64d-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..7e24114478 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f64d-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..a5f81fe071 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-1f3ff.svg b/priv/static/emoji/1f64d-1f3ff.svg new file mode 100644 index 0000000000..7e24114478 --- /dev/null +++ b/priv/static/emoji/1f64d-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-200d-2640-fe0f.svg b/priv/static/emoji/1f64d-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e14fb5706c --- /dev/null +++ b/priv/static/emoji/1f64d-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d-200d-2642-fe0f.svg b/priv/static/emoji/1f64d-200d-2642-fe0f.svg new file mode 100644 index 0000000000..6a5ce08612 --- /dev/null +++ b/priv/static/emoji/1f64d-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64d.svg b/priv/static/emoji/1f64d.svg new file mode 100644 index 0000000000..e14fb5706c --- /dev/null +++ b/priv/static/emoji/1f64d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f64e-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e283e46e56 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f64e-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..8afcbb5476 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fb.svg b/priv/static/emoji/1f64e-1f3fb.svg new file mode 100644 index 0000000000..e283e46e56 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f64e-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..6f7d0fe07b --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f64e-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..6c70ec3c9e --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fc.svg b/priv/static/emoji/1f64e-1f3fc.svg new file mode 100644 index 0000000000..6f7d0fe07b --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f64e-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..96584b4a66 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f64e-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..4854c11028 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fd.svg b/priv/static/emoji/1f64e-1f3fd.svg new file mode 100644 index 0000000000..96584b4a66 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f64e-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ab993b0707 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f64e-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..f1cea099d7 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3fe.svg b/priv/static/emoji/1f64e-1f3fe.svg new file mode 100644 index 0000000000..ab993b0707 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f64e-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..5bdbed2889 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f64e-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..c15298ee6c --- /dev/null +++ b/priv/static/emoji/1f64e-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-1f3ff.svg b/priv/static/emoji/1f64e-1f3ff.svg new file mode 100644 index 0000000000..5bdbed2889 --- /dev/null +++ b/priv/static/emoji/1f64e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-200d-2640-fe0f.svg b/priv/static/emoji/1f64e-200d-2640-fe0f.svg new file mode 100644 index 0000000000..0bd74db6b0 --- /dev/null +++ b/priv/static/emoji/1f64e-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e-200d-2642-fe0f.svg b/priv/static/emoji/1f64e-200d-2642-fe0f.svg new file mode 100644 index 0000000000..97bec5bc59 --- /dev/null +++ b/priv/static/emoji/1f64e-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64e.svg b/priv/static/emoji/1f64e.svg new file mode 100644 index 0000000000..0bd74db6b0 --- /dev/null +++ b/priv/static/emoji/1f64e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64f-1f3fb.svg b/priv/static/emoji/1f64f-1f3fb.svg new file mode 100644 index 0000000000..c7b09690ee --- /dev/null +++ b/priv/static/emoji/1f64f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64f-1f3fc.svg b/priv/static/emoji/1f64f-1f3fc.svg new file mode 100644 index 0000000000..6dcbad553a --- /dev/null +++ b/priv/static/emoji/1f64f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64f-1f3fd.svg b/priv/static/emoji/1f64f-1f3fd.svg new file mode 100644 index 0000000000..5d11d088c0 --- /dev/null +++ b/priv/static/emoji/1f64f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64f-1f3fe.svg b/priv/static/emoji/1f64f-1f3fe.svg new file mode 100644 index 0000000000..7026174b49 --- /dev/null +++ b/priv/static/emoji/1f64f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64f-1f3ff.svg b/priv/static/emoji/1f64f-1f3ff.svg new file mode 100644 index 0000000000..09831e0d71 --- /dev/null +++ b/priv/static/emoji/1f64f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f64f.svg b/priv/static/emoji/1f64f.svg new file mode 100644 index 0000000000..8b33d80c92 --- /dev/null +++ b/priv/static/emoji/1f64f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f680.svg b/priv/static/emoji/1f680.svg new file mode 100644 index 0000000000..8658d4397b --- /dev/null +++ b/priv/static/emoji/1f680.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f681.svg b/priv/static/emoji/1f681.svg new file mode 100644 index 0000000000..8b7a40320c --- /dev/null +++ b/priv/static/emoji/1f681.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f682.svg b/priv/static/emoji/1f682.svg new file mode 100644 index 0000000000..c93874db2f --- /dev/null +++ b/priv/static/emoji/1f682.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f683.svg b/priv/static/emoji/1f683.svg new file mode 100644 index 0000000000..775ae86f8e --- /dev/null +++ b/priv/static/emoji/1f683.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f684.svg b/priv/static/emoji/1f684.svg new file mode 100644 index 0000000000..31e4d69fd5 --- /dev/null +++ b/priv/static/emoji/1f684.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f685.svg b/priv/static/emoji/1f685.svg new file mode 100644 index 0000000000..2b24d9ab3a --- /dev/null +++ b/priv/static/emoji/1f685.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f686.svg b/priv/static/emoji/1f686.svg new file mode 100644 index 0000000000..3f5f5b8561 --- /dev/null +++ b/priv/static/emoji/1f686.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f687.svg b/priv/static/emoji/1f687.svg new file mode 100644 index 0000000000..acd11bd4ee --- /dev/null +++ b/priv/static/emoji/1f687.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f688.svg b/priv/static/emoji/1f688.svg new file mode 100644 index 0000000000..160cc71dfa --- /dev/null +++ b/priv/static/emoji/1f688.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f689.svg b/priv/static/emoji/1f689.svg new file mode 100644 index 0000000000..cebf01dd77 --- /dev/null +++ b/priv/static/emoji/1f689.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f68a.svg b/priv/static/emoji/1f68a.svg new file mode 100644 index 0000000000..b93eab0a1e --- /dev/null +++ b/priv/static/emoji/1f68a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f68b.svg b/priv/static/emoji/1f68b.svg new file mode 100644 index 0000000000..da204b81a3 --- /dev/null +++ b/priv/static/emoji/1f68b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f68c.svg b/priv/static/emoji/1f68c.svg new file mode 100644 index 0000000000..4575169024 --- /dev/null +++ b/priv/static/emoji/1f68c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f68d.svg b/priv/static/emoji/1f68d.svg new file mode 100644 index 0000000000..68ca65faa0 --- /dev/null +++ b/priv/static/emoji/1f68d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f68e.svg b/priv/static/emoji/1f68e.svg new file mode 100644 index 0000000000..e3dc44dc75 --- /dev/null +++ b/priv/static/emoji/1f68e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f68f.svg b/priv/static/emoji/1f68f.svg new file mode 100644 index 0000000000..f833b4aab7 --- /dev/null +++ b/priv/static/emoji/1f68f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f690.svg b/priv/static/emoji/1f690.svg new file mode 100644 index 0000000000..d3f105730a --- /dev/null +++ b/priv/static/emoji/1f690.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f691.svg b/priv/static/emoji/1f691.svg new file mode 100644 index 0000000000..844dd40f0b --- /dev/null +++ b/priv/static/emoji/1f691.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f692.svg b/priv/static/emoji/1f692.svg new file mode 100644 index 0000000000..711c9960be --- /dev/null +++ b/priv/static/emoji/1f692.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f693.svg b/priv/static/emoji/1f693.svg new file mode 100644 index 0000000000..cbf344d7c7 --- /dev/null +++ b/priv/static/emoji/1f693.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f694.svg b/priv/static/emoji/1f694.svg new file mode 100644 index 0000000000..ef1662d91f --- /dev/null +++ b/priv/static/emoji/1f694.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f695.svg b/priv/static/emoji/1f695.svg new file mode 100644 index 0000000000..5446414a25 --- /dev/null +++ b/priv/static/emoji/1f695.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f696.svg b/priv/static/emoji/1f696.svg new file mode 100644 index 0000000000..e066a1246b --- /dev/null +++ b/priv/static/emoji/1f696.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f697.svg b/priv/static/emoji/1f697.svg new file mode 100644 index 0000000000..97b5f10d4c --- /dev/null +++ b/priv/static/emoji/1f697.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f698.svg b/priv/static/emoji/1f698.svg new file mode 100644 index 0000000000..25d8df01d7 --- /dev/null +++ b/priv/static/emoji/1f698.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f699.svg b/priv/static/emoji/1f699.svg new file mode 100644 index 0000000000..28e277197f --- /dev/null +++ b/priv/static/emoji/1f699.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f69a.svg b/priv/static/emoji/1f69a.svg new file mode 100644 index 0000000000..7441d1bba8 --- /dev/null +++ b/priv/static/emoji/1f69a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f69b.svg b/priv/static/emoji/1f69b.svg new file mode 100644 index 0000000000..271fec11d7 --- /dev/null +++ b/priv/static/emoji/1f69b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f69c.svg b/priv/static/emoji/1f69c.svg new file mode 100644 index 0000000000..014ca11d34 --- /dev/null +++ b/priv/static/emoji/1f69c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f69d.svg b/priv/static/emoji/1f69d.svg new file mode 100644 index 0000000000..64ab140c53 --- /dev/null +++ b/priv/static/emoji/1f69d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f69e.svg b/priv/static/emoji/1f69e.svg new file mode 100644 index 0000000000..79a9320c46 --- /dev/null +++ b/priv/static/emoji/1f69e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f69f.svg b/priv/static/emoji/1f69f.svg new file mode 100644 index 0000000000..72eac03f27 --- /dev/null +++ b/priv/static/emoji/1f69f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a0.svg b/priv/static/emoji/1f6a0.svg new file mode 100644 index 0000000000..8510956dc2 --- /dev/null +++ b/priv/static/emoji/1f6a0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a1.svg b/priv/static/emoji/1f6a1.svg new file mode 100644 index 0000000000..855c5664a5 --- /dev/null +++ b/priv/static/emoji/1f6a1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a2.svg b/priv/static/emoji/1f6a2.svg new file mode 100644 index 0000000000..79077f00a4 --- /dev/null +++ b/priv/static/emoji/1f6a2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e5c19c9463 --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..a9651dca4b --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fb.svg b/priv/static/emoji/1f6a3-1f3fb.svg new file mode 100644 index 0000000000..a9651dca4b --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..a0c9e1cef0 --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..d5d8a1b1ae --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fc.svg b/priv/static/emoji/1f6a3-1f3fc.svg new file mode 100644 index 0000000000..d5d8a1b1ae --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..16b7ac0bbb --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..350a363a0d --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fd.svg b/priv/static/emoji/1f6a3-1f3fd.svg new file mode 100644 index 0000000000..350a363a0d --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..08ab1cce51 --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..58d8d4e8ab --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3fe.svg b/priv/static/emoji/1f6a3-1f3fe.svg new file mode 100644 index 0000000000..58d8d4e8ab --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..05a2304c96 --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..d461a41035 --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-1f3ff.svg b/priv/static/emoji/1f6a3-1f3ff.svg new file mode 100644 index 0000000000..d461a41035 --- /dev/null +++ b/priv/static/emoji/1f6a3-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-200d-2640-fe0f.svg b/priv/static/emoji/1f6a3-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8e0c5adc3c --- /dev/null +++ b/priv/static/emoji/1f6a3-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3-200d-2642-fe0f.svg b/priv/static/emoji/1f6a3-200d-2642-fe0f.svg new file mode 100644 index 0000000000..d628229368 --- /dev/null +++ b/priv/static/emoji/1f6a3-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a3.svg b/priv/static/emoji/1f6a3.svg new file mode 100644 index 0000000000..d628229368 --- /dev/null +++ b/priv/static/emoji/1f6a3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a4.svg b/priv/static/emoji/1f6a4.svg new file mode 100644 index 0000000000..7dfe5a6b81 --- /dev/null +++ b/priv/static/emoji/1f6a4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a5.svg b/priv/static/emoji/1f6a5.svg new file mode 100644 index 0000000000..6cb382717f --- /dev/null +++ b/priv/static/emoji/1f6a5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a6.svg b/priv/static/emoji/1f6a6.svg new file mode 100644 index 0000000000..252e85cc5c --- /dev/null +++ b/priv/static/emoji/1f6a6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a7.svg b/priv/static/emoji/1f6a7.svg new file mode 100644 index 0000000000..a5d135cbab --- /dev/null +++ b/priv/static/emoji/1f6a7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a8.svg b/priv/static/emoji/1f6a8.svg new file mode 100644 index 0000000000..5ed7ec85ba --- /dev/null +++ b/priv/static/emoji/1f6a8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6a9.svg b/priv/static/emoji/1f6a9.svg new file mode 100644 index 0000000000..a9338f1901 --- /dev/null +++ b/priv/static/emoji/1f6a9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6aa.svg b/priv/static/emoji/1f6aa.svg new file mode 100644 index 0000000000..1542aba5fd --- /dev/null +++ b/priv/static/emoji/1f6aa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6ab.svg b/priv/static/emoji/1f6ab.svg new file mode 100644 index 0000000000..4b913ae581 --- /dev/null +++ b/priv/static/emoji/1f6ab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6ac.svg b/priv/static/emoji/1f6ac.svg new file mode 100644 index 0000000000..1c0dff27ac --- /dev/null +++ b/priv/static/emoji/1f6ac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6ad.svg b/priv/static/emoji/1f6ad.svg new file mode 100644 index 0000000000..bda285a590 --- /dev/null +++ b/priv/static/emoji/1f6ad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6ae.svg b/priv/static/emoji/1f6ae.svg new file mode 100644 index 0000000000..dadbe6efab --- /dev/null +++ b/priv/static/emoji/1f6ae.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6af.svg b/priv/static/emoji/1f6af.svg new file mode 100644 index 0000000000..74fad2124d --- /dev/null +++ b/priv/static/emoji/1f6af.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b0.svg b/priv/static/emoji/1f6b0.svg new file mode 100644 index 0000000000..40f5774632 --- /dev/null +++ b/priv/static/emoji/1f6b0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b1.svg b/priv/static/emoji/1f6b1.svg new file mode 100644 index 0000000000..5d2b5a0110 --- /dev/null +++ b/priv/static/emoji/1f6b1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b2.svg b/priv/static/emoji/1f6b2.svg new file mode 100644 index 0000000000..b3626aeeca --- /dev/null +++ b/priv/static/emoji/1f6b2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b3.svg b/priv/static/emoji/1f6b3.svg new file mode 100644 index 0000000000..ab08b6bb2c --- /dev/null +++ b/priv/static/emoji/1f6b3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f6b4-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..947042da81 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f6b4-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..def3807bcc --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fb.svg b/priv/static/emoji/1f6b4-1f3fb.svg new file mode 100644 index 0000000000..def3807bcc --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f6b4-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..bdabdf85ad --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f6b4-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..d163a47c0f --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fc.svg b/priv/static/emoji/1f6b4-1f3fc.svg new file mode 100644 index 0000000000..d163a47c0f --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f6b4-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..c30571436e --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f6b4-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..afc749ad38 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fd.svg b/priv/static/emoji/1f6b4-1f3fd.svg new file mode 100644 index 0000000000..afc749ad38 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f6b4-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..fa310bfb81 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f6b4-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..5517895117 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3fe.svg b/priv/static/emoji/1f6b4-1f3fe.svg new file mode 100644 index 0000000000..5517895117 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f6b4-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..25c02de21e --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f6b4-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..c06f359307 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-1f3ff.svg b/priv/static/emoji/1f6b4-1f3ff.svg new file mode 100644 index 0000000000..c06f359307 --- /dev/null +++ b/priv/static/emoji/1f6b4-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-200d-2640-fe0f.svg b/priv/static/emoji/1f6b4-200d-2640-fe0f.svg new file mode 100644 index 0000000000..4ecaf72424 --- /dev/null +++ b/priv/static/emoji/1f6b4-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4-200d-2642-fe0f.svg b/priv/static/emoji/1f6b4-200d-2642-fe0f.svg new file mode 100644 index 0000000000..ae3112edc6 --- /dev/null +++ b/priv/static/emoji/1f6b4-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b4.svg b/priv/static/emoji/1f6b4.svg new file mode 100644 index 0000000000..ae3112edc6 --- /dev/null +++ b/priv/static/emoji/1f6b4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f6b5-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..b203db44ed --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f6b5-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..63627abc79 --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fb.svg b/priv/static/emoji/1f6b5-1f3fb.svg new file mode 100644 index 0000000000..63627abc79 --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f6b5-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e94e02ef31 --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f6b5-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..e629c6cf37 --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fc.svg b/priv/static/emoji/1f6b5-1f3fc.svg new file mode 100644 index 0000000000..e629c6cf37 --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f6b5-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..79bf20417d --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f6b5-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..c1e95693cc --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fd.svg b/priv/static/emoji/1f6b5-1f3fd.svg new file mode 100644 index 0000000000..c1e95693cc --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f6b5-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..e0b6d224be --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f6b5-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..55a8b20bbd --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3fe.svg b/priv/static/emoji/1f6b5-1f3fe.svg new file mode 100644 index 0000000000..55a8b20bbd --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f6b5-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..17a3931090 --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f6b5-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..c856c95baa --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-1f3ff.svg b/priv/static/emoji/1f6b5-1f3ff.svg new file mode 100644 index 0000000000..c856c95baa --- /dev/null +++ b/priv/static/emoji/1f6b5-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-200d-2640-fe0f.svg b/priv/static/emoji/1f6b5-200d-2640-fe0f.svg new file mode 100644 index 0000000000..aaf71dcaa6 --- /dev/null +++ b/priv/static/emoji/1f6b5-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5-200d-2642-fe0f.svg b/priv/static/emoji/1f6b5-200d-2642-fe0f.svg new file mode 100644 index 0000000000..9914308305 --- /dev/null +++ b/priv/static/emoji/1f6b5-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b5.svg b/priv/static/emoji/1f6b5.svg new file mode 100644 index 0000000000..9914308305 --- /dev/null +++ b/priv/static/emoji/1f6b5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg b/priv/static/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg new file mode 100644 index 0000000000..396c56b4e1 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fb-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg b/priv/static/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg new file mode 100644 index 0000000000..8f5f4ce234 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fb-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fb.svg b/priv/static/emoji/1f6b6-1f3fb.svg new file mode 100644 index 0000000000..8f5f4ce234 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg b/priv/static/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg new file mode 100644 index 0000000000..571d8f0f4b --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fc-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg b/priv/static/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg new file mode 100644 index 0000000000..cba51a41c4 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fc-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fc.svg b/priv/static/emoji/1f6b6-1f3fc.svg new file mode 100644 index 0000000000..cba51a41c4 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg b/priv/static/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg new file mode 100644 index 0000000000..65a6df4d72 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fd-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg b/priv/static/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg new file mode 100644 index 0000000000..84169ed7a2 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fd-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fd.svg b/priv/static/emoji/1f6b6-1f3fd.svg new file mode 100644 index 0000000000..84169ed7a2 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg b/priv/static/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg new file mode 100644 index 0000000000..352e7af5d3 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fe-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg b/priv/static/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg new file mode 100644 index 0000000000..591c562236 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fe-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3fe.svg b/priv/static/emoji/1f6b6-1f3fe.svg new file mode 100644 index 0000000000..591c562236 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg b/priv/static/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg new file mode 100644 index 0000000000..ae7e414305 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3ff-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg b/priv/static/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg new file mode 100644 index 0000000000..198a8377e2 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3ff-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-1f3ff.svg b/priv/static/emoji/1f6b6-1f3ff.svg new file mode 100644 index 0000000000..198a8377e2 --- /dev/null +++ b/priv/static/emoji/1f6b6-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-200d-2640-fe0f.svg b/priv/static/emoji/1f6b6-200d-2640-fe0f.svg new file mode 100644 index 0000000000..8e187bfaba --- /dev/null +++ b/priv/static/emoji/1f6b6-200d-2640-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6-200d-2642-fe0f.svg b/priv/static/emoji/1f6b6-200d-2642-fe0f.svg new file mode 100644 index 0000000000..9217939d29 --- /dev/null +++ b/priv/static/emoji/1f6b6-200d-2642-fe0f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b6.svg b/priv/static/emoji/1f6b6.svg new file mode 100644 index 0000000000..9217939d29 --- /dev/null +++ b/priv/static/emoji/1f6b6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b7.svg b/priv/static/emoji/1f6b7.svg new file mode 100644 index 0000000000..ebe039fa7b --- /dev/null +++ b/priv/static/emoji/1f6b7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b8.svg b/priv/static/emoji/1f6b8.svg new file mode 100644 index 0000000000..a9dca0f910 --- /dev/null +++ b/priv/static/emoji/1f6b8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6b9.svg b/priv/static/emoji/1f6b9.svg new file mode 100644 index 0000000000..2f7a492d88 --- /dev/null +++ b/priv/static/emoji/1f6b9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6ba.svg b/priv/static/emoji/1f6ba.svg new file mode 100644 index 0000000000..d73ed94bb4 --- /dev/null +++ b/priv/static/emoji/1f6ba.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6bb.svg b/priv/static/emoji/1f6bb.svg new file mode 100644 index 0000000000..0ecbb5355e --- /dev/null +++ b/priv/static/emoji/1f6bb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6bc.svg b/priv/static/emoji/1f6bc.svg new file mode 100644 index 0000000000..300b10e45d --- /dev/null +++ b/priv/static/emoji/1f6bc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6bd.svg b/priv/static/emoji/1f6bd.svg new file mode 100644 index 0000000000..2463448477 --- /dev/null +++ b/priv/static/emoji/1f6bd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6be.svg b/priv/static/emoji/1f6be.svg new file mode 100644 index 0000000000..aad724c30a --- /dev/null +++ b/priv/static/emoji/1f6be.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6bf.svg b/priv/static/emoji/1f6bf.svg new file mode 100644 index 0000000000..004dadf7d0 --- /dev/null +++ b/priv/static/emoji/1f6bf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c0-1f3fb.svg b/priv/static/emoji/1f6c0-1f3fb.svg new file mode 100644 index 0000000000..ad93c8c616 --- /dev/null +++ b/priv/static/emoji/1f6c0-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c0-1f3fc.svg b/priv/static/emoji/1f6c0-1f3fc.svg new file mode 100644 index 0000000000..4f1e2fa1eb --- /dev/null +++ b/priv/static/emoji/1f6c0-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c0-1f3fd.svg b/priv/static/emoji/1f6c0-1f3fd.svg new file mode 100644 index 0000000000..55b04599d1 --- /dev/null +++ b/priv/static/emoji/1f6c0-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c0-1f3fe.svg b/priv/static/emoji/1f6c0-1f3fe.svg new file mode 100644 index 0000000000..d7e88365e4 --- /dev/null +++ b/priv/static/emoji/1f6c0-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c0-1f3ff.svg b/priv/static/emoji/1f6c0-1f3ff.svg new file mode 100644 index 0000000000..b667e46006 --- /dev/null +++ b/priv/static/emoji/1f6c0-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c0.svg b/priv/static/emoji/1f6c0.svg new file mode 100644 index 0000000000..1ccfa2088e --- /dev/null +++ b/priv/static/emoji/1f6c0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c1.svg b/priv/static/emoji/1f6c1.svg new file mode 100644 index 0000000000..399bd44b06 --- /dev/null +++ b/priv/static/emoji/1f6c1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c2.svg b/priv/static/emoji/1f6c2.svg new file mode 100644 index 0000000000..2e9dfdf762 --- /dev/null +++ b/priv/static/emoji/1f6c2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c3.svg b/priv/static/emoji/1f6c3.svg new file mode 100644 index 0000000000..9e58a3bec0 --- /dev/null +++ b/priv/static/emoji/1f6c3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c4.svg b/priv/static/emoji/1f6c4.svg new file mode 100644 index 0000000000..63edd5a1ed --- /dev/null +++ b/priv/static/emoji/1f6c4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6c5.svg b/priv/static/emoji/1f6c5.svg new file mode 100644 index 0000000000..f67135d518 --- /dev/null +++ b/priv/static/emoji/1f6c5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cb.svg b/priv/static/emoji/1f6cb.svg new file mode 100644 index 0000000000..c80d190df4 --- /dev/null +++ b/priv/static/emoji/1f6cb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cc-1f3fb.svg b/priv/static/emoji/1f6cc-1f3fb.svg new file mode 100644 index 0000000000..6a96af598f --- /dev/null +++ b/priv/static/emoji/1f6cc-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cc-1f3fc.svg b/priv/static/emoji/1f6cc-1f3fc.svg new file mode 100644 index 0000000000..3578121b1e --- /dev/null +++ b/priv/static/emoji/1f6cc-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cc-1f3fd.svg b/priv/static/emoji/1f6cc-1f3fd.svg new file mode 100644 index 0000000000..e16d51cb1a --- /dev/null +++ b/priv/static/emoji/1f6cc-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cc-1f3fe.svg b/priv/static/emoji/1f6cc-1f3fe.svg new file mode 100644 index 0000000000..ea3403bd6e --- /dev/null +++ b/priv/static/emoji/1f6cc-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cc-1f3ff.svg b/priv/static/emoji/1f6cc-1f3ff.svg new file mode 100644 index 0000000000..82d7255899 --- /dev/null +++ b/priv/static/emoji/1f6cc-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cc.svg b/priv/static/emoji/1f6cc.svg new file mode 100644 index 0000000000..183ccf0ef2 --- /dev/null +++ b/priv/static/emoji/1f6cc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cd.svg b/priv/static/emoji/1f6cd.svg new file mode 100644 index 0000000000..e2ae916785 --- /dev/null +++ b/priv/static/emoji/1f6cd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6ce.svg b/priv/static/emoji/1f6ce.svg new file mode 100644 index 0000000000..80343b6307 --- /dev/null +++ b/priv/static/emoji/1f6ce.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6cf.svg b/priv/static/emoji/1f6cf.svg new file mode 100644 index 0000000000..9c34ec0e65 --- /dev/null +++ b/priv/static/emoji/1f6cf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6d0.svg b/priv/static/emoji/1f6d0.svg new file mode 100644 index 0000000000..086e273c93 --- /dev/null +++ b/priv/static/emoji/1f6d0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6d1.svg b/priv/static/emoji/1f6d1.svg new file mode 100644 index 0000000000..c8eb021b75 --- /dev/null +++ b/priv/static/emoji/1f6d1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6d2.svg b/priv/static/emoji/1f6d2.svg new file mode 100644 index 0000000000..03608d5f5b --- /dev/null +++ b/priv/static/emoji/1f6d2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6d5.svg b/priv/static/emoji/1f6d5.svg new file mode 100644 index 0000000000..4a2e9be2dc --- /dev/null +++ b/priv/static/emoji/1f6d5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6e0.svg b/priv/static/emoji/1f6e0.svg new file mode 100644 index 0000000000..085f9025e8 --- /dev/null +++ b/priv/static/emoji/1f6e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6e1.svg b/priv/static/emoji/1f6e1.svg new file mode 100644 index 0000000000..97f68942e3 --- /dev/null +++ b/priv/static/emoji/1f6e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6e2.svg b/priv/static/emoji/1f6e2.svg new file mode 100644 index 0000000000..b7f9cc61bf --- /dev/null +++ b/priv/static/emoji/1f6e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6e3.svg b/priv/static/emoji/1f6e3.svg new file mode 100644 index 0000000000..35e82158dd --- /dev/null +++ b/priv/static/emoji/1f6e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6e4.svg b/priv/static/emoji/1f6e4.svg new file mode 100644 index 0000000000..f11069e891 --- /dev/null +++ b/priv/static/emoji/1f6e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6e5.svg b/priv/static/emoji/1f6e5.svg new file mode 100644 index 0000000000..b9badb2e30 --- /dev/null +++ b/priv/static/emoji/1f6e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6e9.svg b/priv/static/emoji/1f6e9.svg new file mode 100644 index 0000000000..fce6b511d9 --- /dev/null +++ b/priv/static/emoji/1f6e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6eb.svg b/priv/static/emoji/1f6eb.svg new file mode 100644 index 0000000000..7bcbb8c96c --- /dev/null +++ b/priv/static/emoji/1f6eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6ec.svg b/priv/static/emoji/1f6ec.svg new file mode 100644 index 0000000000..ee10becd33 --- /dev/null +++ b/priv/static/emoji/1f6ec.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f0.svg b/priv/static/emoji/1f6f0.svg new file mode 100644 index 0000000000..6d9bb3d2ea --- /dev/null +++ b/priv/static/emoji/1f6f0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f3.svg b/priv/static/emoji/1f6f3.svg new file mode 100644 index 0000000000..44862135ba --- /dev/null +++ b/priv/static/emoji/1f6f3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f4.svg b/priv/static/emoji/1f6f4.svg new file mode 100644 index 0000000000..e217dc4364 --- /dev/null +++ b/priv/static/emoji/1f6f4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f5.svg b/priv/static/emoji/1f6f5.svg new file mode 100644 index 0000000000..a1e0f4b99e --- /dev/null +++ b/priv/static/emoji/1f6f5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f6.svg b/priv/static/emoji/1f6f6.svg new file mode 100644 index 0000000000..b6a2165254 --- /dev/null +++ b/priv/static/emoji/1f6f6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f7.svg b/priv/static/emoji/1f6f7.svg new file mode 100644 index 0000000000..12d776dba5 --- /dev/null +++ b/priv/static/emoji/1f6f7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f8.svg b/priv/static/emoji/1f6f8.svg new file mode 100644 index 0000000000..5f015fe792 --- /dev/null +++ b/priv/static/emoji/1f6f8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6f9.svg b/priv/static/emoji/1f6f9.svg new file mode 100644 index 0000000000..1ee4bfec4a --- /dev/null +++ b/priv/static/emoji/1f6f9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f6fa.svg b/priv/static/emoji/1f6fa.svg new file mode 100644 index 0000000000..aae4e94ac5 --- /dev/null +++ b/priv/static/emoji/1f6fa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e0.svg b/priv/static/emoji/1f7e0.svg new file mode 100644 index 0000000000..2db43d5b24 --- /dev/null +++ b/priv/static/emoji/1f7e0.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e1.svg b/priv/static/emoji/1f7e1.svg new file mode 100644 index 0000000000..5c05d4385d --- /dev/null +++ b/priv/static/emoji/1f7e1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e2.svg b/priv/static/emoji/1f7e2.svg new file mode 100644 index 0000000000..3e68a3fb18 --- /dev/null +++ b/priv/static/emoji/1f7e2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e3.svg b/priv/static/emoji/1f7e3.svg new file mode 100644 index 0000000000..8a034cab46 --- /dev/null +++ b/priv/static/emoji/1f7e3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e4.svg b/priv/static/emoji/1f7e4.svg new file mode 100644 index 0000000000..ebbc3a730b --- /dev/null +++ b/priv/static/emoji/1f7e4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e5.svg b/priv/static/emoji/1f7e5.svg new file mode 100644 index 0000000000..5326d657d0 --- /dev/null +++ b/priv/static/emoji/1f7e5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e6.svg b/priv/static/emoji/1f7e6.svg new file mode 100644 index 0000000000..082422601e --- /dev/null +++ b/priv/static/emoji/1f7e6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e7.svg b/priv/static/emoji/1f7e7.svg new file mode 100644 index 0000000000..3cbdde4d92 --- /dev/null +++ b/priv/static/emoji/1f7e7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e8.svg b/priv/static/emoji/1f7e8.svg new file mode 100644 index 0000000000..64795b1f28 --- /dev/null +++ b/priv/static/emoji/1f7e8.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7e9.svg b/priv/static/emoji/1f7e9.svg new file mode 100644 index 0000000000..73ed4fa49a --- /dev/null +++ b/priv/static/emoji/1f7e9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7ea.svg b/priv/static/emoji/1f7ea.svg new file mode 100644 index 0000000000..c331b1f715 --- /dev/null +++ b/priv/static/emoji/1f7ea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f7eb.svg b/priv/static/emoji/1f7eb.svg new file mode 100644 index 0000000000..24ee98278c --- /dev/null +++ b/priv/static/emoji/1f7eb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90d.svg b/priv/static/emoji/1f90d.svg new file mode 100644 index 0000000000..7deb0cd701 --- /dev/null +++ b/priv/static/emoji/1f90d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90e.svg b/priv/static/emoji/1f90e.svg new file mode 100644 index 0000000000..275f3c98fa --- /dev/null +++ b/priv/static/emoji/1f90e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90f-1f3fb.svg b/priv/static/emoji/1f90f-1f3fb.svg new file mode 100644 index 0000000000..a14c907453 --- /dev/null +++ b/priv/static/emoji/1f90f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90f-1f3fc.svg b/priv/static/emoji/1f90f-1f3fc.svg new file mode 100644 index 0000000000..8f109cde22 --- /dev/null +++ b/priv/static/emoji/1f90f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90f-1f3fd.svg b/priv/static/emoji/1f90f-1f3fd.svg new file mode 100644 index 0000000000..0e9b3e6203 --- /dev/null +++ b/priv/static/emoji/1f90f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90f-1f3fe.svg b/priv/static/emoji/1f90f-1f3fe.svg new file mode 100644 index 0000000000..07ccb2b694 --- /dev/null +++ b/priv/static/emoji/1f90f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90f-1f3ff.svg b/priv/static/emoji/1f90f-1f3ff.svg new file mode 100644 index 0000000000..78893d0e97 --- /dev/null +++ b/priv/static/emoji/1f90f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f90f.svg b/priv/static/emoji/1f90f.svg new file mode 100644 index 0000000000..626e3b5f05 --- /dev/null +++ b/priv/static/emoji/1f90f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f910.svg b/priv/static/emoji/1f910.svg new file mode 100644 index 0000000000..873621f35a --- /dev/null +++ b/priv/static/emoji/1f910.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f911.svg b/priv/static/emoji/1f911.svg new file mode 100644 index 0000000000..5616de71c9 --- /dev/null +++ b/priv/static/emoji/1f911.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f912.svg b/priv/static/emoji/1f912.svg new file mode 100644 index 0000000000..b6ac0a986a --- /dev/null +++ b/priv/static/emoji/1f912.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f913.svg b/priv/static/emoji/1f913.svg new file mode 100644 index 0000000000..d430a68457 --- /dev/null +++ b/priv/static/emoji/1f913.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f914.svg b/priv/static/emoji/1f914.svg new file mode 100644 index 0000000000..4e8c4cc296 --- /dev/null +++ b/priv/static/emoji/1f914.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f915.svg b/priv/static/emoji/1f915.svg new file mode 100644 index 0000000000..fce67fc54a --- /dev/null +++ b/priv/static/emoji/1f915.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f916.svg b/priv/static/emoji/1f916.svg new file mode 100644 index 0000000000..1dbe6d68de --- /dev/null +++ b/priv/static/emoji/1f916.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f917.svg b/priv/static/emoji/1f917.svg new file mode 100644 index 0000000000..1341675419 --- /dev/null +++ b/priv/static/emoji/1f917.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f918-1f3fb.svg b/priv/static/emoji/1f918-1f3fb.svg new file mode 100644 index 0000000000..56fa28a567 --- /dev/null +++ b/priv/static/emoji/1f918-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f918-1f3fc.svg b/priv/static/emoji/1f918-1f3fc.svg new file mode 100644 index 0000000000..bae1401c4a --- /dev/null +++ b/priv/static/emoji/1f918-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f918-1f3fd.svg b/priv/static/emoji/1f918-1f3fd.svg new file mode 100644 index 0000000000..98ebab0888 --- /dev/null +++ b/priv/static/emoji/1f918-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f918-1f3fe.svg b/priv/static/emoji/1f918-1f3fe.svg new file mode 100644 index 0000000000..873cef08ca --- /dev/null +++ b/priv/static/emoji/1f918-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f918-1f3ff.svg b/priv/static/emoji/1f918-1f3ff.svg new file mode 100644 index 0000000000..052adbb63f --- /dev/null +++ b/priv/static/emoji/1f918-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f918.svg b/priv/static/emoji/1f918.svg new file mode 100644 index 0000000000..c3a10630e8 --- /dev/null +++ b/priv/static/emoji/1f918.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f919-1f3fb.svg b/priv/static/emoji/1f919-1f3fb.svg new file mode 100644 index 0000000000..1a9691f906 --- /dev/null +++ b/priv/static/emoji/1f919-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f919-1f3fc.svg b/priv/static/emoji/1f919-1f3fc.svg new file mode 100644 index 0000000000..add5b47b08 --- /dev/null +++ b/priv/static/emoji/1f919-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f919-1f3fd.svg b/priv/static/emoji/1f919-1f3fd.svg new file mode 100644 index 0000000000..993c6f77f7 --- /dev/null +++ b/priv/static/emoji/1f919-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f919-1f3fe.svg b/priv/static/emoji/1f919-1f3fe.svg new file mode 100644 index 0000000000..a433b38b08 --- /dev/null +++ b/priv/static/emoji/1f919-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f919-1f3ff.svg b/priv/static/emoji/1f919-1f3ff.svg new file mode 100644 index 0000000000..226cd45d9a --- /dev/null +++ b/priv/static/emoji/1f919-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f919.svg b/priv/static/emoji/1f919.svg new file mode 100644 index 0000000000..4ab0454110 --- /dev/null +++ b/priv/static/emoji/1f919.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91a-1f3fb.svg b/priv/static/emoji/1f91a-1f3fb.svg new file mode 100644 index 0000000000..646618e6e2 --- /dev/null +++ b/priv/static/emoji/1f91a-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91a-1f3fc.svg b/priv/static/emoji/1f91a-1f3fc.svg new file mode 100644 index 0000000000..4b5f983923 --- /dev/null +++ b/priv/static/emoji/1f91a-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91a-1f3fd.svg b/priv/static/emoji/1f91a-1f3fd.svg new file mode 100644 index 0000000000..6d85626e08 --- /dev/null +++ b/priv/static/emoji/1f91a-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91a-1f3fe.svg b/priv/static/emoji/1f91a-1f3fe.svg new file mode 100644 index 0000000000..cc36a24870 --- /dev/null +++ b/priv/static/emoji/1f91a-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91a-1f3ff.svg b/priv/static/emoji/1f91a-1f3ff.svg new file mode 100644 index 0000000000..1345e9719a --- /dev/null +++ b/priv/static/emoji/1f91a-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91a.svg b/priv/static/emoji/1f91a.svg new file mode 100644 index 0000000000..a3d2b1c9d1 --- /dev/null +++ b/priv/static/emoji/1f91a.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91b-1f3fb.svg b/priv/static/emoji/1f91b-1f3fb.svg new file mode 100644 index 0000000000..1deb10c5ca --- /dev/null +++ b/priv/static/emoji/1f91b-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91b-1f3fc.svg b/priv/static/emoji/1f91b-1f3fc.svg new file mode 100644 index 0000000000..7edf532b7f --- /dev/null +++ b/priv/static/emoji/1f91b-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91b-1f3fd.svg b/priv/static/emoji/1f91b-1f3fd.svg new file mode 100644 index 0000000000..d98a536cf9 --- /dev/null +++ b/priv/static/emoji/1f91b-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91b-1f3fe.svg b/priv/static/emoji/1f91b-1f3fe.svg new file mode 100644 index 0000000000..e48b751a41 --- /dev/null +++ b/priv/static/emoji/1f91b-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91b-1f3ff.svg b/priv/static/emoji/1f91b-1f3ff.svg new file mode 100644 index 0000000000..3998353b48 --- /dev/null +++ b/priv/static/emoji/1f91b-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91b.svg b/priv/static/emoji/1f91b.svg new file mode 100644 index 0000000000..a5a142b5ca --- /dev/null +++ b/priv/static/emoji/1f91b.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91c-1f3fb.svg b/priv/static/emoji/1f91c-1f3fb.svg new file mode 100644 index 0000000000..ff817fd7b0 --- /dev/null +++ b/priv/static/emoji/1f91c-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91c-1f3fc.svg b/priv/static/emoji/1f91c-1f3fc.svg new file mode 100644 index 0000000000..732af9c04f --- /dev/null +++ b/priv/static/emoji/1f91c-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91c-1f3fd.svg b/priv/static/emoji/1f91c-1f3fd.svg new file mode 100644 index 0000000000..79ed35f082 --- /dev/null +++ b/priv/static/emoji/1f91c-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91c-1f3fe.svg b/priv/static/emoji/1f91c-1f3fe.svg new file mode 100644 index 0000000000..948472fc6c --- /dev/null +++ b/priv/static/emoji/1f91c-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91c-1f3ff.svg b/priv/static/emoji/1f91c-1f3ff.svg new file mode 100644 index 0000000000..eb89c3a84c --- /dev/null +++ b/priv/static/emoji/1f91c-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91c.svg b/priv/static/emoji/1f91c.svg new file mode 100644 index 0000000000..afaa803b51 --- /dev/null +++ b/priv/static/emoji/1f91c.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91d.svg b/priv/static/emoji/1f91d.svg new file mode 100644 index 0000000000..3d797a0894 --- /dev/null +++ b/priv/static/emoji/1f91d.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91e-1f3fb.svg b/priv/static/emoji/1f91e-1f3fb.svg new file mode 100644 index 0000000000..30a387d369 --- /dev/null +++ b/priv/static/emoji/1f91e-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91e-1f3fc.svg b/priv/static/emoji/1f91e-1f3fc.svg new file mode 100644 index 0000000000..ec2fa50866 --- /dev/null +++ b/priv/static/emoji/1f91e-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91e-1f3fd.svg b/priv/static/emoji/1f91e-1f3fd.svg new file mode 100644 index 0000000000..b17f2690b8 --- /dev/null +++ b/priv/static/emoji/1f91e-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91e-1f3fe.svg b/priv/static/emoji/1f91e-1f3fe.svg new file mode 100644 index 0000000000..28cbb78855 --- /dev/null +++ b/priv/static/emoji/1f91e-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91e-1f3ff.svg b/priv/static/emoji/1f91e-1f3ff.svg new file mode 100644 index 0000000000..86e91b2a94 --- /dev/null +++ b/priv/static/emoji/1f91e-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91e.svg b/priv/static/emoji/1f91e.svg new file mode 100644 index 0000000000..f85ba65255 --- /dev/null +++ b/priv/static/emoji/1f91e.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91f-1f3fb.svg b/priv/static/emoji/1f91f-1f3fb.svg new file mode 100644 index 0000000000..aa26231952 --- /dev/null +++ b/priv/static/emoji/1f91f-1f3fb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91f-1f3fc.svg b/priv/static/emoji/1f91f-1f3fc.svg new file mode 100644 index 0000000000..13e4bac5cb --- /dev/null +++ b/priv/static/emoji/1f91f-1f3fc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91f-1f3fd.svg b/priv/static/emoji/1f91f-1f3fd.svg new file mode 100644 index 0000000000..274170b9f0 --- /dev/null +++ b/priv/static/emoji/1f91f-1f3fd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91f-1f3fe.svg b/priv/static/emoji/1f91f-1f3fe.svg new file mode 100644 index 0000000000..f4f18d8dca --- /dev/null +++ b/priv/static/emoji/1f91f-1f3fe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91f-1f3ff.svg b/priv/static/emoji/1f91f-1f3ff.svg new file mode 100644 index 0000000000..d2f5581fc4 --- /dev/null +++ b/priv/static/emoji/1f91f-1f3ff.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f91f.svg b/priv/static/emoji/1f91f.svg new file mode 100644 index 0000000000..4f3d74f00b --- /dev/null +++ b/priv/static/emoji/1f91f.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f920.svg b/priv/static/emoji/1f920.svg new file mode 100644 index 0000000000..da7cfa26ae --- /dev/null +++ b/priv/static/emoji/1f920.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f921.svg b/priv/static/emoji/1f921.svg new file mode 100644 index 0000000000..6d16a66246 --- /dev/null +++ b/priv/static/emoji/1f921.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f922.svg b/priv/static/emoji/1f922.svg new file mode 100644 index 0000000000..ed7c86c0d4 --- /dev/null +++ b/priv/static/emoji/1f922.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/priv/static/emoji/1f923.svg b/priv/static/emoji/1f923.svg new file mode 100644 index 0000000000..7ddfcae30a --- /dev/null +++ b/priv/static/emoji/1f923.svg @@ -0,0 +1 @@ +